This commit is contained in:
lubiana 2025-07-13 11:32:51 +02:00
parent bf25f279c4
commit fe712f8861
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk

View file

@ -36,7 +36,7 @@ const TIERS: Tier[] = [
];
const START_MONEY = 6;
const START_UNLOCKED: string[] = [];
const START_UNLOCKED: string[] = ['Start'];
function App() {
// --- Game State ---
@ -56,7 +56,7 @@ function App() {
}[]>([]);
// --- Gubble Store State ---
const [isStoreOpen, setIsStoreOpen] = useState(false);
const [upgrades, setUpgrades] = useState<Upgrades>({ evenDouble: false, oddDouble: false, allTripple: false, gubbleDouble: false, addFourthNumber: false, autoscratcher: false });
const [upgrades, setUpgrades] = useState<Upgrades>({ evenDouble: false, oddDouble: false, allTripple: false, gubbleDouble: false, addFourthNumber: false, autoscratcher: false, swipeScratcher: false});
const [upgradeBought, setUpgradeBought] = useState(false);
// Ref for scroll container