From d87e5c534fb91f0deffe8b6f89528547d5c90bc9 Mon Sep 17 00:00:00 2001 From: karl Date: Sun, 21 Nov 2021 15:10:17 +0100 Subject: [PATCH] Improve scores --- GameBoard.gd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GameBoard.gd b/GameBoard.gd index 4e56891..70f0687 100644 --- a/GameBoard.gd +++ b/GameBoard.gd @@ -28,10 +28,10 @@ const RIGHT = RASTER_SIZE * 5 const LINE_CLEAR_SCORES = [ 0, - 10, - 25, - 60, - 100 + 10, # 1 line -> basic 10 points + 30, # 2 lines -> 10 points bonus + 50, # 3 lines -> 20 points bonus + 90 # 4 lines -> 50 points bonus ]