mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-21 16:13:56 +00:00
Updated sounds
This commit is contained in:
parent
b0be84c951
commit
e0865e870b
5 changed files with 9 additions and 2 deletions
Binary file not shown.
BIN
public/freeze.wav
Normal file
BIN
public/freeze.wav
Normal file
Binary file not shown.
BIN
public/level up coot v2.wav
Normal file
BIN
public/level up coot v2.wav
Normal file
Binary file not shown.
|
@ -94,6 +94,7 @@ const damage = new Audio("damage.wav");
|
|||
const droppingCoots = new Audio("dropping coots in field.wav");
|
||||
const lose = new Audio("lose.wav");
|
||||
const reroll = new Audio("reroll.wav");
|
||||
const freeze = new Audio("freeze.wav");
|
||||
|
||||
export const characters: Record<string, CharacterInfo> = {
|
||||
// Tier 1
|
||||
|
@ -1050,8 +1051,8 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
buttonClick.play();
|
||||
} else if (selectedShopItem.value != null) {
|
||||
emit("freeze", selectedShopItem.value!);
|
||||
buttonClick.currentTime = 0;
|
||||
buttonClick.play();
|
||||
freeze.currentTime = 0;
|
||||
freeze.play();
|
||||
} else if (selectedStreamType.value != null) {
|
||||
if (gold.value > 2) {
|
||||
emit("change stream type", selectedStreamType.value);
|
||||
|
|
|
@ -20,6 +20,8 @@ import healthParticles from "./health.json";
|
|||
import presenceParticles from "./presence.json";
|
||||
import { EmitterConfigV3 } from "@pixi/particle-emitter";
|
||||
|
||||
const levelUp = new Audio("level up coot v2.wav");
|
||||
|
||||
export const connected = ref<boolean>(false);
|
||||
export const nickname = ref<string>("");
|
||||
export const room = ref<string>("");
|
||||
|
@ -201,6 +203,8 @@ function setupSocket(socket: Socket<ServerToClientEvents, ClientToServerEvents>)
|
|||
if (characters[char.type].abilityType === "LevelUp") {
|
||||
setTimeout(() => characters[char.type].performAbility(char), 1250);
|
||||
}
|
||||
levelUp.currentTime = 0;
|
||||
levelUp.play();
|
||||
}
|
||||
});
|
||||
socket.on("move", (index, otherIndex) => {
|
||||
|
@ -222,6 +226,8 @@ function setupSocket(socket: Socket<ServerToClientEvents, ClientToServerEvents>)
|
|||
if (characters[char.type].abilityType === "LevelUp") {
|
||||
setTimeout(() => characters[char.type].performAbility(char), 1250);
|
||||
}
|
||||
levelUp.currentTime = 0;
|
||||
levelUp.play();
|
||||
}
|
||||
});
|
||||
socket.on("stream", (enemy, outcome) => {
|
||||
|
|
Loading…
Reference in a new issue