Files
bozoclicker/src/config/milestones.ts
Arjun S a2db7cadce fix
2025-08-04 06:04:25 +00:00

95 lines
3.0 KiB
TypeScript

import { Milestone } from '../types';
export const MILESTONES: Milestone[] = [
{
threshold: 1000,
id: 'first-thousand',
name: 'First Steps',
description: 'Welcome to the madness!',
background: 'rainbow',
image: 'https://media1.tenor.com/m/x8v1oNUOmg4AAAAd/spinning-rat-rat.gif',
reward: '🌈 Rainbow Background Unlocked!'
},
{
threshold: 10000,
id: 'ten-thousand',
name: 'Cyber Rat',
description: 'Welcome to the future',
background: 'cyberpunk',
image: 'https://cdn.discordapp.com/emojis/1297946545626288312.webp',
reward: '🦾 Cyberpunk Aesthetic Engaged!'
},
{
threshold: 50000,
id: 'epic-milestone',
name: 'Space Cadet',
description: 'To infinity and beyond!',
background: 'space',
image: 'https://media.discordapp.net/stickers/1377379131649429554.gif?size=160&quality=lossless',
reward: '🚀 Space Background Unlocked!'
},
{
threshold: 100000,
id: 'legendary',
name: 'musume mode',
description: 'Reality is breaking down, the girls are turning into horses!',
background: 'musume',
image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif',
reward: '🐴 Musume Background Unlocked!'
},
{
threshold: 200000,
id: 'two-hundred-thousand',
name: 'Major Milestone',
description: 'You are progressing rapidly!',
background: 'glitch',
image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif',
reward: '✨ New Background Unlocked!'
},
{
threshold: 696969,
id: 'ultimate',
name: 'Ultimate Bozo',
description: 'You have achieved peak bozo status',
background: 'ultimate',
image: 'https://media.discordapp.net/stickers/1397981135266648064.webp?size=160&quality=lossless',
reward: '👑 Ultimate Power Unlocked!'
},
{
threshold: 1000000,
id: 'god-tier',
name: 'God Tier Bozo',
description: 'You are the ultimate bozo',
background: 'god-tier',
image: 'https://media.discordapp.net/stickers/1294812453112123453.webp?quality=lossless',
reward: '🌟 God Mode Activated!'
},
{
threshold: 5000000,
id: 'mega-bozo',
name: 'Mega Bozo',
description: 'You are a true clicking machine!',
background: 'mega-bozo',
image: 'https://media1.tenor.com/m/x8v1oNUOmg4AAAAd/spinning-rat-rat.gif',
reward: '💥 Mega Bozo Background Unlocked!'
},
{
threshold: 80088008,
id: 'galactic-bozo',
name: 'Galactic Bozo',
description: 'Your clicks echo across the galaxy!',
background: 'galactic-bozo',
image: 'https://cdn.discordapp.com/emojis/1297946545626288312.webp',
reward: '🌌 Galactic Background Unlocked!'
},
{
threshold: 10000000,
id: 'cosmic-bozo',
name: 'Cosmic Bozo',
description: 'You are one with the universe of bozos!',
background: 'cosmic-bozo',
image: 'https://media.discordapp.net/stickers/1377379131649429554.gif?size=160&quality=lossless',
reward: '🌠 Cosmic Background Unlocked!'
}
];