From 51909deb9fd198c2a2c8d0c37c91f4405da1e4b8 Mon Sep 17 00:00:00 2001 From: Guido Date: Wed, 5 Aug 2026 13:12:34 +0200 Subject: [PATCH] Balance: START_TIME 15, BONUS 1.2 Co-Authored-By: Claude Opus 4.8 --- public/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/app.js b/public/js/app.js index ca1a726..207d8ef 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -5,9 +5,9 @@ const $ = (id) => document.getElementById(id); // ---- Konstanten (leicht justierbar) ---- -const START_TIME = 12; // Sekunden zu Beginn +const START_TIME = 15; // Sekunden zu Beginn const MAX_TIME = 30; // Deckel (Timerleiste = timeLeft / MAX_TIME) -const BONUS = 1; // Zeit pro Treffer +const BONUS = 1.2; // Zeit pro Treffer const PENALTY = 2.0; // Zeitabzug pro Fehlklick const NAME_KEY = 'fuesse_name';