This commit is contained in:
lubiana 2025-07-12 15:58:21 +02:00
parent 1bef97490d
commit a4626ada30
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
2 changed files with 14 additions and 15 deletions

View file

@ -13,21 +13,20 @@ export type Tier = {
const TIERS: Tier[] = [
{ name: 'Start', unlockPrice: 0, buyPrice: 1, gubblePointChance: 0.0 },
{ name: 'Bronze', unlockPrice: 2, buyPrice: 3, gubblePointChance: 0.0 },
{ name: 'Silver', unlockPrice: 5, buyPrice: 7, gubblePointChance: 0.0 },
{ name: 'Gold', unlockPrice: 10, buyPrice: 15, gubblePointChance: 0.1 },
{ name: 'Platinum', unlockPrice: 20, buyPrice: 30, gubblePointChance: 0.1 },
{ name: 'Diamond', unlockPrice: 50, buyPrice: 75, gubblePointChance: 0.2 },
{ name: 'Master', unlockPrice: 100, buyPrice: 150, gubblePointChance: 0.2 },
{ name: 'Legend', unlockPrice: 200, buyPrice: 300, gubblePointChance: 0.3 },
{ name: 'Ultimate', unlockPrice: 500, buyPrice: 750, gubblePointChance: 0.3 },
{ name: 'Champion', unlockPrice: 1000, buyPrice: 1500, gubblePointChance: 0.4 },
{ name: 'Supreme', unlockPrice: 2000, buyPrice: 3000, gubblePointChance: 0.4 },
{ name: 'Bronze', unlockPrice: 3, buyPrice: 2, gubblePointChance: 0.0 },
{ name: 'Silver', unlockPrice: 7, buyPrice: 5, gubblePointChance: 0.0 },
{ name: 'Gold', unlockPrice: 15, buyPrice: 10, gubblePointChance: 0.1 },
{ name: 'Platinum', unlockPrice: 30, buyPrice: 20, gubblePointChance: 0.1 },
{ name: 'Diamond', unlockPrice: 75, buyPrice: 50, gubblePointChance: 0.2 },
{ name: 'Master', unlockPrice: 750, buyPrice: 500, gubblePointChance: 0.2 },
{ name: 'Legend', unlockPrice: 3000, buyPrice: 2000, gubblePointChance: 0.3 },
{ name: 'Ultimate', unlockPrice: 7500, buyPrice: 5000, gubblePointChance: 0.3 },
{ name: 'Champion', unlockPrice: 15000, buyPrice: 10000, gubblePointChance: 0.4 },
];
function App() {
// --- Game State ---
const [money, setMoney] = useState(20); // User starts with $20
const [money, setMoney] = useState(5); // User starts with $20
const [unlockedTiers, setUnlockedTiers] = useState<string[]>([]); // Unlocked tier names
const [gubblePoints, setGubblePoints] = useState(0);
const [card, setCard] = useState<{

View file

@ -34,7 +34,7 @@ const Card: React.FC<CardProps> = ({ card, setCard, setMoney, setGubblePoints })
className={`w-16 h-16 flex items-center justify-center rounded-lg border-2 text-2xl font-bold transition
${field.scratched ? (field.won ? 'bg-green-200 border-green-500 text-green-700' : 'bg-gray-200 border-gray-400 text-gray-500') : 'bg-yellow-100 border-yellow-400 text-yellow-700 hover:bg-yellow-200'}`}
disabled={field.scratched}
onClick={() => {
onMouseMove={() => {
if (field.scratched) return;
if (Math.random() < (card.tier?.gubblePointChance ?? 0)) {
setGubblePoints((g) => g + 1);
@ -43,9 +43,9 @@ const Card: React.FC<CardProps> = ({ card, setCard, setMoney, setGubblePoints })
// Determine win amount
let won = null;
if (card.winningNumbers.includes(field.value)) {
if (idx < 2) won = Math.floor((card.tier?.buyPrice ?? 0) * 0.5);
else if (idx < 4) won = Math.floor((card.tier?.buyPrice ?? 0) * 0.8);
else won = Math.floor((card.tier?.buyPrice ?? 0) * 1.2);
if (idx < 2) won = Math.ceil((card.tier?.buyPrice ?? 0) * 0.5);
else if (idx < 4) won = Math.ceil((card.tier?.buyPrice ?? 0) * 0.8);
else won = Math.ceil((card.tier?.buyPrice ?? 0) * 1.2);
}
setCard((prev) => {
if (!prev) return prev;