From 44844b3be8e5626b7d05ae856a42264284449916 Mon Sep 17 00:00:00 2001 From: yukirij Date: Sat, 25 Jan 2025 23:50:12 -0800 Subject: [PATCH] Reduce opponent drops in trials. --- www/js/game_config_const.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/js/game_config_const.js b/www/js/game_config_const.js index c959097..631af2f 100644 --- a/www/js/game_config_const.js +++ b/www/js/game_config_const.js @@ -380,7 +380,7 @@ const GAME_CONFIGS = { Guide_Trial: [ new GameConfig() .set_pieces(CONFIG_PIECES_STANDARD) - .set_pool(new Uint8Array([1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1])) + .set_pool(new Uint8Array([1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0])) .set_layout( new GameConfig.Layout() .add_piece(7, 1, false, new MATH.Vec2(4, 8)) @@ -395,7 +395,7 @@ const GAME_CONFIGS = { new GameConfig() .set_pieces(CONFIG_PIECES_STANDARD) - .set_pool(new Uint8Array([1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1])) + .set_pool(new Uint8Array([1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0])) .set_layout( new GameConfig.Layout() .add_piece(7, 1, false, new MATH.Vec2(4, 8)) @@ -410,7 +410,7 @@ const GAME_CONFIGS = { new GameConfig() .set_pieces(CONFIG_PIECES_STANDARD) - .set_pool(new Uint8Array([4, 1, 0, 2, 0, 0, 1, 9, 1, 0, 0, 2, 0, 0])) + .set_pool(new Uint8Array([4, 1, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0])) .set_layout( new GameConfig.Layout() .add_piece(5, 0, false, new MATH.Vec2(4, 6)) @@ -438,7 +438,7 @@ const GAME_CONFIGS = { new GameConfig() .set_pieces(CONFIG_PIECES_STANDARD) - .set_pool(new Uint8Array([7, 2, 0, 1, 2, 1, 0, 1, 0, 1, 0, 0, 0, 0])) + .set_pool(new Uint8Array([7, 2, 1, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0])) .set_layout( new GameConfig.Layout() .add_piece(7, 1, false, new MATH.Vec2(1, 5))