Sheep and camel footsteps #712

This commit is contained in:
Cong
2024-09-27 21:25:15 +10:00
parent b3b98ef6a9
commit 43115ab345
22 changed files with 27 additions and 5 deletions

View File

@@ -27,8 +27,13 @@
}, },
"Body": "sheep", "Body": "sheep",
"Sounds": "sheep", "Sounds": "sheep",
"Footsteps": "sheep",
"Corpse": "sheep_sleep", "Corpse": "sheep_sleep",
"BloodColor": "00000000" "BloodColor": "00000000",
"HasHair": false,
"HasFacehair": false,
"HasHat": false,
"HasGlasses": false
}, },
{ {
"Name": "Goat", "Name": "Goat",
@@ -38,9 +43,13 @@
}, },
"Body": "sheep", "Body": "sheep",
"Sounds": "sheep", "Sounds": "sheep",
"Footsteps": "dog", "Footsteps": "sheep",
"Corpse": "goat_sleep", "Corpse": "goat_sleep",
"BloodColor": "00000000" "BloodColor": "00000000",
"HasHair": false,
"HasFacehair": false,
"HasHat": false,
"HasGlasses": false
}, },
{ {
"Name": "SS", "Name": "SS",
@@ -77,7 +86,12 @@
"Sprites": "chars/heads/sheep" "Sprites": "chars/heads/sheep"
}, },
"Body": "camel", "Body": "camel",
"Sounds": "camel" "Sounds": "camel",
"Footsteps": "camel",
"HasHair": false,
"HasFacehair": false,
"HasHat": false,
"HasGlasses": false
}, },
{ {
"Name": "Dr Schabbs", "Name": "Dr Schabbs",

View File

@@ -0,0 +1,4 @@
Derived from SFX - Horse - Trot.wav
by MrFizzywig
https://freesound.org/people/MrFizzywig/sounds/581834/
http://creativecommons.org/publicdomain/zero/1.0/

View File

@@ -0,0 +1,4 @@
Derived from cartoon horse gallop.wav
by martian
https://freesound.org/people/martian/sounds/393857/
http://creativecommons.org/publicdomain/zero/1.0/

View File

@@ -4,7 +4,7 @@
# Sounds vary between +/- 2 tones # Sounds vary between +/- 2 tones
# Usage: ./make_pitch_variations.sh <sound_file> <num_variations/2> # Usage: ./make_pitch_variations.sh <sound_file> <num_variations/2>
# Sound file should be named with a zero, e.g. foo0.ogg, so that the variations # Sound file should be named with a zero, e.g. foo0.ogg, so that the variations
# can be called foo1.ogg, foo2.ogg and so on # can be called foo1.ogg, foo2.ogg and so on (foo/0.ogg becomes foo/1.ogg etc.)
if [ "$#" -lt 2 ]; then if [ "$#" -lt 2 ]; then
echo "Usage: ./make_pitch_variations.sh <sound_file> <num_variations/2>" echo "Usage: ./make_pitch_variations.sh <sound_file> <num_variations/2>"
exit 1 exit 1