add sound for drinking coffee/pizza

This commit is contained in:
yuni 2024-09-15 04:47:12 +02:00
parent fa9f1096cd
commit 533a3a5543
5 changed files with 6 additions and 0 deletions

View file

@ -45,6 +45,7 @@
- zoom.ogg: Recorded a screw thread scraping against a saxophone ligature - zoom.ogg: Recorded a screw thread scraping against a saxophone ligature
- Other sounds: - Other sounds:
- achieve.ogg: UI Completed Status Alert Notification SFX001.wav [by Headphaze, CC BY 4.0](https://freesound.org/s/277033/) - achieve.ogg: UI Completed Status Alert Notification SFX001.wav [by Headphaze, CC BY 4.0](https://freesound.org/s/277033/)
- drink.ogg: [Pouring Beer into Short Glass by megashroom, CC0](https://freesound.org/s/390336/)
- enter.ogg, exit.ogg: [Getting Out of Car.wav by kingsrow, CC0](https://freesound.org/s/181568/) - enter.ogg, exit.ogg: [Getting Out of Car.wav by kingsrow, CC0](https://freesound.org/s/181568/)
- Takeoff.ogg: [By Serat, CC BY 4.0](https://freemusicarchive.org/music/serat/route-remastered/takeoff-remastered/) - Takeoff.ogg: [By Serat, CC BY 4.0](https://freemusicarchive.org/music/serat/route-remastered/takeoff-remastered/)
- JupiterRecording.ogg: An [actual Jupiter recording by NASA](https://archive.org/download/voyager-1-and-2-1990-jupiter-nasa-voyager-space-sounds-electronic), public domain. - JupiterRecording.ogg: An [actual Jupiter recording by NASA](https://archive.org/download/voyager-1-and-2-1990-jupiter-nasa-voyager-space-sounds-electronic), public domain.

BIN
assets/sounds/drink.ogg Normal file

Binary file not shown.

View file

@ -70,6 +70,7 @@ const PATHS: &[(SfxType, Sfx, &str)] = &[
(SfxType::OneOff, Sfx::Click, "sounds/click.ogg"), (SfxType::OneOff, Sfx::Click, "sounds/click.ogg"),
(SfxType::OneOff, Sfx::Connect, "sounds/connect.ogg"), (SfxType::OneOff, Sfx::Connect, "sounds/connect.ogg"),
(SfxType::OneOff, Sfx::Crash, "sounds/crash.ogg"), (SfxType::OneOff, Sfx::Crash, "sounds/crash.ogg"),
(SfxType::OneOff, Sfx::Drink, "sounds/drink.ogg"),
(SfxType::OneOff, Sfx::EnterVehicle, "sounds/enter.ogg"), (SfxType::OneOff, Sfx::EnterVehicle, "sounds/enter.ogg"),
(SfxType::OneOff, Sfx::ExitVehicle, "sounds/exit.ogg"), (SfxType::OneOff, Sfx::ExitVehicle, "sounds/exit.ogg"),
(SfxType::OneOff, Sfx::Honk, "sounds/growl.ogg"), (SfxType::OneOff, Sfx::Honk, "sounds/growl.ogg"),
@ -94,6 +95,7 @@ pub enum Sfx {
Click, Click,
Connect, Connect,
Crash, Crash,
Drink,
ElectricMotor, ElectricMotor,
EnterVehicle, EnterVehicle,
ExitVehicle, ExitVehicle,
@ -119,6 +121,7 @@ pub fn str2sfx(sfx_label: &str) -> Sfx {
"exit" => Sfx::ExitVehicle, "exit" => Sfx::ExitVehicle,
"honk" => Sfx::Honk, "honk" => Sfx::Honk,
"click" => Sfx::Click, "click" => Sfx::Click,
"drink" => Sfx::Drink,
"woosh" => Sfx::Woosh, "woosh" => Sfx::Woosh,
"zoom" => Sfx::Zoom, "zoom" => Sfx::Zoom,
"chat" => Sfx::IncomingChatMessage, "chat" => Sfx::IncomingChatMessage,

View file

@ -947,6 +947,7 @@ pub fn handle_chat_scripts(
}); });
} }
"drinkpizza" => { "drinkpizza" => {
ew_sfx.send(audio::PlaySfxEvent(audio::Sfx::Drink));
ew_achievement.send(game::AchievementEvent::DrinkPizza); ew_achievement.send(game::AchievementEvent::DrinkPizza);
} }
_ => { _ => {

View file

@ -285,6 +285,7 @@
- label: getcoffee - label: getcoffee
- Coming right up your feeding tube! - Coming right up your feeding tube!
- system: Received Old Earth Soykaf - system: Received Old Earth Soykaf
sound: drink
- goto: served - goto: served
- Surprise me.: - Surprise me.:
- Hmm... - Hmm...