New sound to play when ferry arrives at mainland & island

Author: Inchadney
License: CC BY 4.0
Source: https://freesound.org/s/157284/
This commit is contained in:
Jordan Irwin 2024-01-16 20:46:44 -08:00
parent 2ca973f8dd
commit 229595f57a
7 changed files with 12 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View file

@ -993,6 +993,7 @@ The following people released their work to the public with a suitable license f
* [Topschool](https://freesound.org/people/Topschool/)
* [Hawkeye_Sprout](https://freesound.org/people/Hawkeye_Sprout/)
* [YuriNikolai](https://opengameart.org/users/yurinikolai)
* [Inchadney](http://inchadney.com/sounds.html)
<!-- markdownlint-enable -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->

View file

@ -4747,6 +4747,11 @@
{
"name": "YuriNikolai",
"link": "https://opengameart.org/users/yurinikolai"
},
{
"name": "Inchadney",
"link": "http://inchadney.com/sounds.html",
"link_alt": "https://freesound.org/people/inchadney/"
}
]
}

View file

@ -197,6 +197,10 @@ wolf-howl-01.* y89312; CC BY 3.0; https://freesound.org/people/y89312
wolf-howl-02.* killyourpepe; CC0; https://freesound.org/people/killyourpepe/sounds/395192/
yawn-female-1.ogg LittleRainySeasons; CC BY 3.0; https://freesound.org/people/LittleRainySeasons/sounds/334053/
data/sounds/ferry/
arrive.* Inchadney; CC BY 4.0; https://freesound.org/s/157284/
data/sounds/npc/
goodbye_female-01.* shadoWisp; CC BY 3.0; https://freesound.org/people/shadoWisp/sounds/260931/

View file

@ -138,6 +138,7 @@ public class FerryConveyerNPC implements ZoneConfigurator {
ferrystate = status;
switch (status) {
case ANCHORED_AT_MAINLAND:
npc.addEvent(new SoundEvent("ferry/arrive", SoundLayer.AMBIENT_SOUND));
npc.say("Attention: The ferry has arrived at this coast! You can now #board the ship.");
break;
case DRIVING_TO_ISLAND:

View file

@ -138,6 +138,7 @@ public class FerryConveyerNPC implements ZoneConfigurator {
ferrystate = status;
switch (status) {
case ANCHORED_AT_ISLAND:
npc.addEvent(new SoundEvent("ferry/arrive", SoundLayer.AMBIENT_SOUND));
npc.say("Attention: The ferry has arrived at this coast! You can now #board the ship.");
break;
case DRIVING_TO_MAINLAND: