This commit is contained in:
2026-01-27 02:17:57 +03:00
parent a4479916f9
commit 814abb60f3
5 changed files with 312 additions and 144 deletions

View File

@ -115,6 +115,15 @@
});
}
function forge() {
const c = init();
if (!c) return;
const notes = [392, 523, 659, 784];
notes.forEach((f, i) => {
setTimeout(() => beep(f, 0.2, 'sine', 0.12), i * 90);
});
}
global.Sounds = {
init,
playCard,
@ -126,5 +135,6 @@
hoverCard,
timerWarning,
timerEnd,
forge,
};
})(typeof window !== 'undefined' ? window : globalThis);