all repos — clicker-ts @ a5aa159cf9bf808c5aab354e5760dd1f821f8a01

Unnamed repository; edit this file 'description' to name the repository.

src/data/gameData.ts (view raw)

  1import { Upgrade, PrestigeUpgrade } from '../types';
  2
  3export const initialUpgrades: Upgrade[] = [
  4  {
  5    id: 'click_upgrade_1',
  6    name: 'Better Clicking',
  7    description: 'Increases the value of each click',
  8    type: 'clickValue',
  9    level: 0,
 10    value: 1,
 11    baseValue: 1,
 12    cost: 10,
 13    baseCost: 10,
 14    costMultiplier: 1.5,
 15    icon: '👆'
 16  },
 17  {
 18    id: 'click_upgrade_2',
 19    name: 'Super Clicking',
 20    description: 'Significantly increases the value of each click',
 21    type: 'clickValue',
 22    level: 0,
 23    value: 5,
 24    baseValue: 5,
 25    cost: 100,
 26    baseCost: 100,
 27    costMultiplier: 1.6,
 28    icon: '💪'
 29  },
 30  {
 31    id: 'click_upgrade_3',
 32    name: 'Ultra Clicking',
 33    description: 'Massively increases the value of each click',
 34    type: 'clickValue',
 35    level: 0,
 36    value: 25,
 37    baseValue: 25,
 38    cost: 1000,
 39    baseCost: 1000,
 40    costMultiplier: 1.7,
 41    icon: '⚡'
 42  },
 43  {
 44    id: 'passive_upgrade_1',
 45    name: 'Basic Income',
 46    description: 'Generates currency automatically over time',
 47    type: 'passive',
 48    level: 0,
 49    value: 1,
 50    baseValue: 1,
 51    cost: 50,
 52    baseCost: 50,
 53    costMultiplier: 1.4,
 54    icon: '💰'
 55  },
 56  {
 57    id: 'passive_upgrade_2',
 58    name: 'Advanced Income',
 59    description: 'Generates more currency automatically over time',
 60    type: 'passive',
 61    level: 0,
 62    value: 5,
 63    baseValue: 5,
 64    cost: 500,
 65    baseCost: 500,
 66    costMultiplier: 1.5,
 67    icon: '💎'
 68  },
 69  {
 70    id: 'passive_upgrade_3',
 71    name: 'Premium Income',
 72    description: 'Generates lots of currency automatically over time',
 73    type: 'passive',
 74    level: 0,
 75    value: 25,
 76    baseValue: 25,
 77    cost: 5000,
 78    baseCost: 5000,
 79    costMultiplier: 1.6,
 80    icon: '👑'
 81  },
 82  {
 83    id: 'auto_click_1',
 84    name: 'Auto Clicker',
 85    description: 'Automatically clicks for you',
 86    type: 'autoClick',
 87    level: 0,
 88    value: 1,
 89    baseValue: 1,
 90    cost: 150,
 91    baseCost: 150,
 92    costMultiplier: 1.5,
 93    icon: '🤖'
 94  },
 95  {
 96    id: 'auto_click_2',
 97    name: 'Fast Auto Clicker',
 98    description: 'Clicks faster automatically',
 99    type: 'autoClick',
100    level: 0,
101    value: 3,
102    baseValue: 3,
103    cost: 1500,
104    baseCost: 1500,
105    costMultiplier: 1.6,
106    icon: '⚙️'
107  },
108  {
109    id: 'auto_click_3',
110    name: 'Turbo Auto Clicker',
111    description: 'Clicks very rapidly automatically',
112    type: 'autoClick',
113    level: 0,
114    value: 10,
115    baseValue: 10,
116    cost: 15000,
117    baseCost: 15000,
118    costMultiplier: 1.7,
119    icon: '🚀'
120  }
121];
122
123export const initialPrestigeUpgrades: PrestigeUpgrade[] = [
124  {
125    id: 'prestige_mult_1',
126    name: 'Basic Multiplier',
127    description: 'Increases all production by 0.5x',
128    cost: 1,
129    multiplierBonus: 0.5,
130    purchased: false,
131    icon: '✨'
132  },
133  {
134    id: 'prestige_mult_2',
135    name: 'Advanced Multiplier',
136    description: 'Increases all production by 1x',
137    cost: 3,
138    multiplierBonus: 1,
139    purchased: false,
140    icon: '🌟'
141  },
142  {
143    id: 'prestige_mult_3',
144    name: 'Premium Multiplier',
145    description: 'Increases all production by 2x',
146    cost: 10,
147    multiplierBonus: 2,
148    purchased: false,
149    icon: '💫'
150  },
151  {
152    id: 'prestige_mult_4',
153    name: 'Ultimate Multiplier',
154    description: 'Increases all production by 5x',
155    cost: 25,
156    multiplierBonus: 5,
157    purchased: false,
158    icon: '🔆'
159  },
160  {
161    id: 'prestige_mult_5',
162    name: 'Legendary Multiplier',
163    description: 'Increases all production by 10x',
164    cost: 100,
165    multiplierBonus: 10,
166    purchased: false,
167    icon: '🌈'
168  }
169];