Add power ups, make the grid bigger.

This commit is contained in:
csd4ni3l
2025-07-02 20:52:55 +02:00
parent e877edcdf6
commit 6a8345bcd9
2 changed files with 125 additions and 14 deletions

View File

@@ -8,11 +8,18 @@ log_dir = 'logs'
discord_presence_id = 1360953272843632680
COMBO_MOVES = 3
CELL_SIZE = 80
ROWS = 8
COLS = 8
CELL_SIZE = 64
ROWS = 10
COLS = 10
OUTLINE_WIDTH = 2
POWER_UPS = {
"undo_move": 500,
"combo_booster": 1000,
"score_booster": 2500,
"clear_screen": 5000
}
SHAPES = {
"I": [(0, 0), (1, 0), (2, 0), (3, 0)],
"I_R1": [(0, 0), (0, 1), (0, 2), (0, 3)],