49 lines
1014 B
TypeScript
49 lines
1014 B
TypeScript
import { Upgrade } from '../types';
|
|
|
|
export const UPGRADES: Upgrade[] = [
|
|
{
|
|
id: 'clickMultiplier',
|
|
name: '🖱️ Mega Click',
|
|
description: '+1 click power per purchase',
|
|
baseCost: 10,
|
|
multiplier: 1.5,
|
|
clickBonus: 1,
|
|
icon: '🖱️'
|
|
},
|
|
{
|
|
id: 'autoClicker',
|
|
name: '🤖 Auto Clicker',
|
|
description: '+1 click per second',
|
|
baseCost: 50,
|
|
multiplier: 2,
|
|
autoClickRate: 1,
|
|
icon: '🤖'
|
|
},
|
|
{
|
|
id: 'megaBonus',
|
|
name: '💎 Mega Bonus',
|
|
description: '+5 click power per purchase',
|
|
baseCost: 200,
|
|
multiplier: 2.5,
|
|
clickBonus: 5,
|
|
icon: '💎'
|
|
},
|
|
{
|
|
id: 'hyperClicker',
|
|
name: '⚡ Hyper Clicker',
|
|
description: '+10 auto clicks per second',
|
|
baseCost: 1000,
|
|
multiplier: 3,
|
|
autoClickRate: 10,
|
|
icon: '⚡'
|
|
},
|
|
{
|
|
id: 'quantumClicker',
|
|
name: '🌟 Quantum Clicker',
|
|
description: '+50 click power per purchase',
|
|
baseCost: 5000,
|
|
multiplier: 4,
|
|
clickBonus: 50,
|
|
icon: '🌟'
|
|
}
|
|
]; |