diff --git a/Resources/Audio/Voice/Talk/license.txt b/Resources/Audio/Voice/Talk/license.txt index a8343a0aa3..0914f3fb87 100644 --- a/Resources/Audio/Voice/Talk/license.txt +++ b/Resources/Audio/Voice/Talk/license.txt @@ -14,6 +14,12 @@ speak_3.ogg speak_4_ask.ogg speak_4_exclaim.ogg speak_4.ogg +lizard.ogg +lizard_ask.ogg +lizard_exclaim.ogg +buwoo.ogg (Rename to slime.ogg) +buwoo_ask.ogg (Renamed to slime_ask.ogg) +buwoo_exclaim (Renamed to slime_exclaim.ogg) all taken from https://github.com/goonstation/goonstation/tree/eb3e7df6292d23f6af2f18b4372d3a8ba4b0fda7/sound/misc/talk licensed under CC BY-NC-SA 3.0 diff --git a/Resources/Audio/Voice/Talk/lizard.ogg b/Resources/Audio/Voice/Talk/lizard.ogg new file mode 100644 index 0000000000..17dd7d8075 Binary files /dev/null and b/Resources/Audio/Voice/Talk/lizard.ogg differ diff --git a/Resources/Audio/Voice/Talk/lizard_ask.ogg b/Resources/Audio/Voice/Talk/lizard_ask.ogg new file mode 100644 index 0000000000..642e3bc2ea Binary files /dev/null and b/Resources/Audio/Voice/Talk/lizard_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/lizard_exclaim.ogg b/Resources/Audio/Voice/Talk/lizard_exclaim.ogg new file mode 100644 index 0000000000..8106937a6c Binary files /dev/null and b/Resources/Audio/Voice/Talk/lizard_exclaim.ogg differ diff --git a/Resources/Audio/Voice/Talk/slime.ogg b/Resources/Audio/Voice/Talk/slime.ogg new file mode 100644 index 0000000000..6a1d9a7a86 Binary files /dev/null and b/Resources/Audio/Voice/Talk/slime.ogg differ diff --git a/Resources/Audio/Voice/Talk/slime_ask.ogg b/Resources/Audio/Voice/Talk/slime_ask.ogg new file mode 100644 index 0000000000..e31c39784e Binary files /dev/null and b/Resources/Audio/Voice/Talk/slime_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/slime_exclaim.ogg b/Resources/Audio/Voice/Talk/slime_exclaim.ogg new file mode 100644 index 0000000000..306c2e80cb Binary files /dev/null and b/Resources/Audio/Voice/Talk/slime_exclaim.ogg differ diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 3db4ede72b..01e711b774 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -123,6 +123,8 @@ template: HumanoidTemplate preset: ReptilianPreset - type: LizardAccent + - type: Speech + speechSounds: Lizard - type: DiseaseCarrier diseaseResist: 0.1 - type: Damageable diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 2c464a9c67..6dc814b5d5 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -104,6 +104,8 @@ - type: HumanoidAppearance hairMatchesSkin: true hairAlpha: 0.5 + - type: Speech + speechSounds: Slime - type: Damageable damageContainer: Biological damageModifierSet: Slime diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index c72b088ec9..0428630328 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -69,3 +69,21 @@ path: /Audio/Animals/monkey_scream.ogg exclaimSound: path: /Audio/Animals/monkey_scream.ogg + +- type: speechSounds + id: Lizard + saySound: + path: /Audio/Voice/Talk/lizard.ogg + askSound: + path: /Audio/Voice/Talk/lizard_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/lizard_exclaim.ogg + +- type: speechSounds + id: Slime + saySound: + path: /Audio/Voice/Talk/slime.ogg + askSound: + path: /Audio/Voice/Talk/slime_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/slime_exclaim.ogg