Add parrot sounds (CC BY 3.0) by Mings...

https://freesound.org/s/160381/
This commit is contained in:
Jordan Irwin 2021-08-11 02:25:21 -07:00
parent e728d734c6
commit af90ef1a52
14 changed files with 37 additions and 3 deletions

View File

@ -54,6 +54,7 @@ A [Minetest][] mod that provides a set of free sounds & methods. It is intended
| [lion_bellow][] | felix.blume | CC0 | |
| [mouse][] | AntumDeluge | CC0 | |
| [owl_hoot][] | Anthousai | CC0 | |
| [parrot*][] | Mings | CC BY 3.0 | |
| [peacock][] | dobroide | CC BY 3.0 | |
| [pencil_erase][] | damsur | CC0 | |
| [pencil_write][] | NachtmahrTV | CC0 | |
@ -280,6 +281,7 @@ end
[lion_bellow]: https://freesound.org/s/405211/
[mouse]: https://opengameart.org/node/16331
[owl_hoot]: https://freesound.org/s/398734/
[parrot]: https://freesound.org/s/160381/
[peacock]: https://freesound.org/s/59186/
[pencil_erase]: https://freesound.org/s/443241/
[pencil_write]: https://freesound.org/s/571800/

View File

@ -18,7 +18,6 @@ TODO:
- bear
- leopard
- lamb
- parrot
- squirrel
- toucan
- airplane

View File

@ -2,6 +2,9 @@
next
----
- added sounds:
- parrot
- parrot_chirp
- parrot_whistle
- penguin
- pig_snort
- pig_squeal

View File

@ -315,6 +315,35 @@ sounds.owl = SoundGroup({
"owl_hoot",
})
--- @sndgroup sounds.parrot_chirp
-- @snd parrot_chirp
sounds.parrot_chirp = SoundGroup({
"parrot_chirp",
})
--- @sndgroup sounds.parrot_whistle
-- @snd parrot_whistle
sounds.parrot_whistle = SoundGroup({
"parrot_whistle",
})
--- <br>
--
-- Includes:
--
-- - `sounds.parrot_chirp`
-- - `sounds.parrot_whistle`
--
-- @sndgroup sounds.parrot
-- @snd parrot_01
-- @snd parrot_02
-- @snd parrot_03
sounds.parrot = SoundGroup({
"parrot_01",
"parrot_02",
"parrot_03",
}) + sounds.parrot_chirp + sounds.parrot_whistle
--- @sndgroup sounds.peacock
-- @snd peacock
sounds.peacock = SoundGroup({
@ -362,6 +391,7 @@ sounds.vulture = SoundGroup({
-- - `sounds.crow_caw`
-- - `sounds.duck_quack`
-- - `sounds.owl`
-- - `sounds.parrot`
-- - `sounds.peacock`
-- - `sounds.penguin`
-- - `sounds.pigeon`
@ -371,8 +401,8 @@ sounds.vulture = SoundGroup({
--
-- @sndgroup sounds.fowl
sounds.fowl = sounds.bird + sounds.chicken + sounds.crow_caw + sounds.duck_quack
+ sounds.owl + sounds.peacock + sounds.penguin + sounds.pigeon + sounds.quail
+ sounds.rooster + sounds.vulture
+ sounds.owl + sounds.parrot + sounds.peacock + sounds.penguin + sounds.pigeon
+ sounds.quail + sounds.rooster + sounds.vulture

BIN
sounds/sounds_parrot_01.ogg Normal file

Binary file not shown.

BIN
sounds/sounds_parrot_02.ogg Normal file

Binary file not shown.

BIN
sounds/sounds_parrot_03.ogg Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.