fixed bozos

This commit is contained in:
2025-08-04 00:49:44 +05:30
parent 59d11b1ede
commit de827c3748
4 changed files with 46 additions and 22 deletions

View File

@@ -2,8 +2,8 @@ import { Milestone } from '../types';
export const MILESTONES: Milestone[] = [
{
threshold: 100,
id: 'first-hundred',
threshold: 1000,
id: 'first-thousand',
name: 'First Steps',
description: 'Welcome to the madness!',
background: 'rainbow',
@@ -11,8 +11,8 @@ export const MILESTONES: Milestone[] = [
reward: '🌈 Rainbow Background Unlocked!'
},
{
threshold: 500,
id: 'five-hundred',
threshold: 5000,
id: 'five-thousand',
name: 'Getting Warmed Up',
description: 'The rat spins faster...',
background: 'matrix',
@@ -20,8 +20,8 @@ export const MILESTONES: Milestone[] = [
reward: '💊 Matrix Mode Activated!'
},
{
threshold: 1000,
id: 'one-thousand',
threshold: 10000,
id: 'ten-thousand',
name: 'Cyber Rat',
description: 'Welcome to the future',
background: 'cyberpunk',
@@ -29,7 +29,7 @@ export const MILESTONES: Milestone[] = [
reward: '🦾 Cyberpunk Aesthetic Engaged!'
},
{
threshold: 2500,
threshold: 50000,
id: 'epic-milestone',
name: 'Space Cadet',
description: 'To infinity and beyond!',
@@ -38,7 +38,7 @@ export const MILESTONES: Milestone[] = [
reward: '🚀 Space Background Unlocked!'
},
{
threshold: 5000,
threshold: 100000,
id: 'legendary',
name: 'Glitch in the Matrix',
description: 'Reality is breaking down',
@@ -47,12 +47,21 @@ export const MILESTONES: Milestone[] = [
reward: '⚡ Glitch Effect Activated!'
},
{
threshold: 10000,
threshold: 500000,
id: 'ultimate',
name: 'Ultimate Bozo',
description: 'You have achieved peak bozo status',
background: 'ultimate',
image: 'https://media1.tenor.com/m/YsWlbVbRWFQAAAAd/rat-spinning.gif',
reward: '👑 Ultimate Power Unlocked!'
},
{
threshold: 1000000,
id: 'god-tier',
name: 'God Tier Bozo',
description: 'You are the ultimate bozo',
background: 'god-tier',
image: 'https://media1.tenor.com/m/x8v1oNUOmg4AAAAd/spinning-rat-rat.gif',
reward: '🌟 God Mode Activated!'
}
];