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:
parent
4ab5ea108f
commit
27a137b822
|
|
@ -15,7 +15,7 @@ export const NUM_COLORS = 4; // 0=red 1=green 2=blue 3=yell
|
||||||
export const SPAWN_COL = 3;
|
export const SPAWN_COL = 3;
|
||||||
export const KIND = { GEM: 'gem', CRASH: 'crash', COUNTER: 'counter', DIAMOND: 'diamond' };
|
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 DIAMOND_EVERY = 25;
|
||||||
export const COUNTER_START = 5;
|
export const COUNTER_START = 5;
|
||||||
export const MAX_GARBAGE_PER_DROP = 24;
|
export const MAX_GARBAGE_PER_DROP = 24;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue