diff --git a/code/modules/mob/living/simple_animal/friendly/dog.dm b/code/modules/mob/living/simple_animal/friendly/dog.dm index 631ed2a5157..63d0090f1df 100644 --- a/code/modules/mob/living/simple_animal/friendly/dog.dm +++ b/code/modules/mob/living/simple_animal/friendly/dog.dm @@ -594,8 +594,8 @@ desc = "It's a borgi." icon_state = "borgi" icon_living = "borgi" - bark_sound = null //No robo-bjork... - yelp_sound = null //Or robo-Yelp. + bark_sound = list('sound/creatures/EN_bark1.ogg','sound/creatures/EN_bark2.ogg') //No robo-bjork... + yelp_sound = 'sound/creatures/EN_yelp.ogg' //Or robo-Yelp. var/emagged = FALSE atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) minbodytemp = 0 diff --git a/sound/Attributions.txt b/sound/Attributions.txt index 28b523418eb..89fbf457200 100644 --- a/sound/Attributions.txt +++ b/sound/Attributions.txt @@ -2,6 +2,8 @@ items/thermal_drill.ogg was sampled from Builders Drilling.wav under a Sampling creatures/dog_yelp.ogg is DogYelp.wav. It is under a CC-BY 3.0 license. It has been cropped, EQ'd, and compressed to .ogg. Source (https://freesound.org/people/TobiasKosmos/sounds/163280/) +creatures/EN_yelp.ogg is "EN_yelp" by martcraft, licensed under CC-BY 4.0. Derivative of "DogYelp.wav" by TobiasKosmos which is licensed under the CC-BY 4.0 license. (https://freesound.org/people/TobiasKosmos/sounds/163280/) + standard_stamp.ogg is adapted from tom_woysky's "Stamp.wav" https://freesound.org/people/tom_woysky/sounds/348316/ machines/triple_beep.ogg is taken from /tg/station. Source (https://github.com/tgstation/tgstation) diff --git a/sound/creatures/EN_bark1.ogg b/sound/creatures/EN_bark1.ogg new file mode 100644 index 00000000000..946905acfdc Binary files /dev/null and b/sound/creatures/EN_bark1.ogg differ diff --git a/sound/creatures/EN_bark2.ogg b/sound/creatures/EN_bark2.ogg new file mode 100644 index 00000000000..2d29ca1f3a6 Binary files /dev/null and b/sound/creatures/EN_bark2.ogg differ diff --git a/sound/creatures/EN_yelp.ogg b/sound/creatures/EN_yelp.ogg new file mode 100644 index 00000000000..43c4776fa6f Binary files /dev/null and b/sound/creatures/EN_yelp.ogg differ