diff --git a/party/index.ts b/party/index.ts index 15ca7a0..47f2da4 100644 --- a/party/index.ts +++ b/party/index.ts @@ -201,7 +201,10 @@ const MILESTONES = [ { threshold: 100000, id: 'legendary', background: 'musume', image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif' }, { threshold: 200000, id: 'two-hundred-thousand', background: 'glitch', image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif' }, { threshold: 500000, id: 'ultimate', background: 'ultimate', image: 'https://media.discordapp.net/stickers/1397981135266648064.webp?size=160&quality=lossless' }, - { threshold: 1000000, id: 'god-tier', background: 'god-tier', image: 'https://media.discordapp.net/stickers/1294812453112123453.webp?quality=lossless' } + { threshold: 1000000, id: 'god-tier', background: 'god-tier', image: 'https://media.discordapp.net/stickers/1294812453112123453.webp?quality=lossless' }, + { threshold: 2000000, id: 'mega-bozo', background: 'mega-bozo', image: 'https://media1.tenor.com/m/x8v1oNUOmg4AAAAd/spinning-rat-rat.gif' }, + { threshold: 5000000, id: 'galactic-bozo', background: 'galactic-bozo', image: 'https://cdn.discordapp.com/emojis/1297946545626288312.webp' }, + { threshold: 10000000, id: 'cosmic-bozo', background: 'cosmic-bozo', image: 'https://media.discordapp.net/stickers/1377379131649429554.gif?size=160&quality=lossless' } ]; export default class GameServer implements Party.Server { diff --git a/src/config/milestones.ts b/src/config/milestones.ts index b4a4869..505c3c6 100644 --- a/src/config/milestones.ts +++ b/src/config/milestones.ts @@ -63,5 +63,32 @@ export const MILESTONES: Milestone[] = [ background: 'god-tier', image: 'https://media.discordapp.net/stickers/1294812453112123453.webp?quality=lossless', reward: '🌟 God Mode Activated!' + }, + { + threshold: 2000000, + 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: 5000000, + 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!' } ];