158 lines
5.3 KiB
TypeScript
158 lines
5.3 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: 8008008,
|
|
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!'
|
|
},
|
|
{
|
|
threshold: 100000000,
|
|
id: 'interdimensional-bozo',
|
|
name: 'Interdimensional Bozo',
|
|
description: 'You are breaking the barriers of reality!',
|
|
background: 'interdimensional',
|
|
image: 'https://media.discordapp.net/stickers/1397981135266648064.webp?size=160&quality=lossless',
|
|
reward: '🌀 Interdimensional Background Unlocked!'
|
|
},
|
|
{
|
|
threshold: 500000000,
|
|
id: 'multiversal-bozo',
|
|
name: 'Multiversal Bozo',
|
|
description: 'Your bozo energy resonates across multiverses!',
|
|
background: 'multiversal',
|
|
image: 'https://media.discordapp.net/stickers/1294812453112123453.webp?quality=lossless',
|
|
reward: '🌌 Multiversal Background Unlocked!'
|
|
},
|
|
{
|
|
threshold: 1000000000,
|
|
id: 'billionaire-bozo',
|
|
name: 'Billionaire Bozo',
|
|
description: 'You have achieved a billion clicks!',
|
|
background: 'billionaire',
|
|
image: 'https://media1.tenor.com/m/x8v1oNUOmg4AAAAd/spinning-rat-rat.gif',
|
|
reward: '💰 Billionaire Background Unlocked!'
|
|
},
|
|
{
|
|
threshold: 10000000000,
|
|
id: 'ten-billion-bozo',
|
|
name: 'Ten Billion Bozo',
|
|
description: 'The clicks are overflowing!',
|
|
background: 'ten-billion',
|
|
image: 'https://cdn.discordapp.com/emojis/1297946545626288312.webp',
|
|
reward: '📈 Ten Billion Background Unlocked!'
|
|
},
|
|
{
|
|
threshold: 100000000000,
|
|
id: 'hundred-billion-bozo',
|
|
name: 'Hundred Billion Bozo',
|
|
description: 'You are a legend in the world of bozos!',
|
|
background: 'hundred-billion',
|
|
image: 'https://media.discordapp.net/stickers/1377379131649429554.gif?size=160&quality=lossless',
|
|
reward: '🏆 Hundred Billion Background Unlocked!'
|
|
},
|
|
{
|
|
threshold: 500000000000,
|
|
id: 'half-trillion-bozo',
|
|
name: 'Half Trillion Bozo',
|
|
description: 'Almost there, you can taste the trillions!',
|
|
background: 'half-trillion',
|
|
image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif',
|
|
reward: '🚀 Half Trillion Background Unlocked!'
|
|
},
|
|
{
|
|
threshold: 1000000000000,
|
|
id: 'trillionaire-bozo',
|
|
name: 'Trillionaire Bozo',
|
|
description: 'You are the ultimate bozo, a true trillionaire!',
|
|
background: 'trillionaire',
|
|
image: 'https://media.discordapp.net/stickers/1397981135266648064.webp?size=160&quality=lossless',
|
|
reward: '👑 Trillionaire Background Unlocked!'
|
|
}
|
|
];
|