reduce crash spawn rate in BlockFighter by 50%

Change CRASH_RATE from 0.28 to 0.14, decreasing the frequency of
crash gems spawned in BlockFighter gameplay.
This commit is contained in:
Brian Fertig 2026-06-12 16:39:42 -06:00
parent 4ab5ea108f
commit 27a137b822
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export const NUM_COLORS = 4; // 0=red 1=green 2=blue 3=yell
export const SPAWN_COL = 3;
export const KIND = { GEM: 'gem', CRASH: 'crash', COUNTER: 'counter', DIAMOND: 'diamond' };
export const CRASH_RATE = 0.28;
export const CRASH_RATE = 0.14;
export const DIAMOND_EVERY = 25;
export const COUNTER_START = 5;
export const MAX_GARBAGE_PER_DROP = 24;