mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-26 15:06:16 -04:00
Balancing
- New perk : addiction, reward faster gameplay - Balancing : hot start effect doubled - Balancing : you earn an extra perk when playing well, and a reroll when playing perfectly - Balancing : telekinesis limited to level 1
This commit is contained in:
parent
27a2cd686e
commit
7e316391d8
22 changed files with 799 additions and 897 deletions
|
@ -49,16 +49,16 @@ export const sounds = {
|
|||
if (!isOptionOn("sound")) return;
|
||||
createSingleBounceSound(1200, pan, volume, 0.1, "triangle");
|
||||
},
|
||||
void: (volume: number, pan: number) => {
|
||||
if (!isOptionOn("sound")) return;
|
||||
createSingleBounceSound(1200, pan, volume, 0.5, "sawtooth");
|
||||
createSingleBounceSound(600, pan, volume, 0.3, "sawtooth");
|
||||
},
|
||||
freeze: (volume: number, pan: number) => {
|
||||
if (!isOptionOn("sound")) return;
|
||||
createSingleBounceSound(220, pan, volume, 0.5, "square");
|
||||
createSingleBounceSound(440, pan, volume, 0.5, "square");
|
||||
},
|
||||
// void: (volume: number, pan: number) => {
|
||||
// if (!isOptionOn("sound")) return;
|
||||
// createSingleBounceSound(1200, pan, volume, 0.5, "sawtooth");
|
||||
// createSingleBounceSound(600, pan, volume, 0.3, "sawtooth");
|
||||
// },
|
||||
// freeze: (volume: number, pan: number) => {
|
||||
// if (!isOptionOn("sound")) return;
|
||||
// createSingleBounceSound(220, pan, volume, 0.5, "square");
|
||||
// createSingleBounceSound(440, pan, volume, 0.5, "square");
|
||||
// },
|
||||
explode: (volume: number, pan: number, combo: number) => {
|
||||
if (!isOptionOn("sound")) return;
|
||||
createExplosionSound(pan);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue