Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed src/assets/audio/SFX/base.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/bottling-overbrewed.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/bottling.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/crushing.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/cutting.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/fire.mp3
Binary file not shown.
Binary file removed src/assets/audio/SFX/glass.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/ingredient.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/new-order.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/place.wav
Binary file not shown.
Binary file removed src/assets/audio/SFX/trash.wav
Binary file not shown.
Binary file removed src/assets/audio/extra/bottling overbrewed.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/brewing no loop.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/cutting 1.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/cutting 2.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/cutting 3.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/cutting 4.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/glass break.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/glass clink 2.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/glass clink.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/grinding slow.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/new potion bell 2.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/putting trash 1.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/putting trash angry.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/something.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/taking base.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/taking glass.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/taking ing 2.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/walking 1.mp3
Binary file not shown.
Binary file removed src/assets/audio/extra/walking 2.mp3
Binary file not shown.
Binary file removed src/assets/audio/soundtrack/1_gameplay.mp3
Binary file not shown.
Binary file removed src/assets/audio/soundtrack/1_main menu.mp3
Binary file not shown.
Binary file removed src/assets/audio/soundtrack/2_gameplay.mp3
Binary file not shown.
Binary file removed src/assets/audio/soundtrack/2_main menu.mp3
Binary file not shown.
Binary file removed src/assets/audio/soundtrack/3_gameplay.mp3
Binary file not shown.
Binary file modified src/assets/audio/soundtrack/high-heat.mp3
Binary file not shown.
Binary file modified src/assets/audio/soundtrack/low-heat.mp3
Binary file not shown.
14 changes: 7 additions & 7 deletions src/audio/sound.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import baseFx from "../assets/audio/SFX/base.wav";
import bottlingFx from "../assets/audio/SFX/bottling.wav";
import overbrewedFx from "../assets/audio/SFX/bottling-overbrewed.wav";
import crushingFx from "../assets/audio/SFX/crushing.wav";
import baseFx from "../assets/audio/SFX/base.mp3";
import bottlingFx from "../assets/audio/SFX/bottling.mp3";
import overbrewedFx from "../assets/audio/SFX/bottling-overbrewed.mp3";
import crushingFx from "../assets/audio/SFX/crushing.mp3";
import cuttingFx from "../assets/audio/SFX/cutting.mp3";
import glassFx from "../assets/audio/SFX/glass.wav";
import glassFx from "../assets/audio/SFX/glass.mp3";
import ingredientFx from "../assets/audio/SFX/ingredient.mp3";
import newOrderFx from "../assets/audio/SFX/new-order.wav";
import newOrderFx from "../assets/audio/SFX/new-order.mp3";
import placeFx from "../assets/audio/SFX/put-down.mp3";
import trashFx from "../assets/audio/SFX/trash.wav";
import trashFx from "../assets/audio/SFX/trash.mp3";
import fireStart from "../assets/audio/SFX/fire-start.mp3";
import fireOut from "../assets/audio/SFX/fire-out.mp3";
import bellFx from "../assets/audio/SFX/bell.mp3";
Expand Down