Start repository
This commit is contained in:
58
src/config/milestones.ts
Normal file
58
src/config/milestones.ts
Normal file
@@ -0,0 +1,58 @@
|
||||
import { Milestone } from '../types';
|
||||
|
||||
export const MILESTONES: Milestone[] = [
|
||||
{
|
||||
threshold: 100,
|
||||
id: 'first-hundred',
|
||||
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: 500,
|
||||
id: 'five-hundred',
|
||||
name: 'Getting Warmed Up',
|
||||
description: 'The rat spins faster...',
|
||||
background: 'matrix',
|
||||
image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif',
|
||||
reward: '💊 Matrix Mode Activated!'
|
||||
},
|
||||
{
|
||||
threshold: 1000,
|
||||
id: 'one-thousand',
|
||||
name: 'Cyber Rat',
|
||||
description: 'Welcome to the future',
|
||||
background: 'cyberpunk',
|
||||
image: 'https://media1.tenor.com/m/YsWlbVbRWFQAAAAd/rat-spinning.gif',
|
||||
reward: '🦾 Cyberpunk Aesthetic Engaged!'
|
||||
},
|
||||
{
|
||||
threshold: 2500,
|
||||
id: 'epic-milestone',
|
||||
name: 'Space Cadet',
|
||||
description: 'To infinity and beyond!',
|
||||
background: 'space',
|
||||
image: 'https://media1.tenor.com/m/x8v1oNUOmg4AAAAd/spinning-rat-rat.gif',
|
||||
reward: '🚀 Space Background Unlocked!'
|
||||
},
|
||||
{
|
||||
threshold: 5000,
|
||||
id: 'legendary',
|
||||
name: 'Glitch in the Matrix',
|
||||
description: 'Reality is breaking down',
|
||||
background: 'glitch',
|
||||
image: 'https://media1.tenor.com/m/pV74fmh_NLgAAAAd/louie-rat-spinning-rat.gif',
|
||||
reward: '⚡ Glitch Effect Activated!'
|
||||
},
|
||||
{
|
||||
threshold: 10000,
|
||||
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!'
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user