98 lines
2.4 KiB
JavaScript
98 lines
2.4 KiB
JavaScript
/** Data copied directly from the game */
|
|
|
|
/** Array of the names of all fortune cookies obtainable from the ticker */
|
|
export const Fortunes = [
|
|
'Fortune #001',
|
|
'Fortune #002',
|
|
'Fortune #003',
|
|
'Fortune #004',
|
|
'Fortune #005',
|
|
'Fortune #006',
|
|
'Fortune #007',
|
|
'Fortune #008',
|
|
'Fortune #009',
|
|
'Fortune #010',
|
|
'Fortune #011',
|
|
'Fortune #012',
|
|
'Fortune #013',
|
|
'Fortune #014',
|
|
'Fortune #015',
|
|
'Fortune #016',
|
|
'Fortune #017',
|
|
'Fortune #018',
|
|
'Fortune #100',
|
|
'Fortune #101',
|
|
'Fortune #102',
|
|
'Fortune #103',
|
|
'Fortune #104',
|
|
];
|
|
|
|
/** Array of the names of all Halloween cookies */
|
|
export const HalloCookies = [
|
|
'Skull cookies',
|
|
'Ghost cookies',
|
|
'Bat cookies',
|
|
'Slime cookies',
|
|
'Pumpkin cookies',
|
|
'Eyeball cookies',
|
|
'Spider cookies',
|
|
];
|
|
|
|
/** Array of the names of all Christmas cookies */
|
|
export const ChristCookies = [
|
|
'Christmas tree biscuits',
|
|
'Snowflake biscuits',
|
|
'Snowman biscuits',
|
|
'Holly biscuits',
|
|
'Candy cane biscuits',
|
|
'Bell biscuits',
|
|
'Present biscuits',
|
|
];
|
|
|
|
/** Array of the names of all Valentine cookies */
|
|
export const ValCookies = [
|
|
'Pure heart biscuits',
|
|
'Ardent heart biscuits',
|
|
'Sour heart biscuits',
|
|
'Weeping heart biscuits',
|
|
'Golden heart biscuits',
|
|
'Eternal heart biscuits',
|
|
'Prism heart biscuits',
|
|
];
|
|
|
|
/** Array of the names of all plant drops */
|
|
export const PlantDrops = [
|
|
'Elderwort biscuits',
|
|
'Bakeberry cookies',
|
|
'Duketater cookies',
|
|
'Green yeast digestives',
|
|
'Wheat slims',
|
|
'Fern tea',
|
|
'Ichor syrup',
|
|
];
|
|
|
|
/** All possible effects plants and other items can have with a display-title */
|
|
export const Effects = {
|
|
buildingCost: 'Building prices',
|
|
click: 'Cookies per click',
|
|
cps: 'Total CPS',
|
|
cursorCps: 'Cursor CPS',
|
|
goldenCookieDur: 'Golden cookie duration',
|
|
goldenCookieEffDur: 'Golden cookie effect duration',
|
|
goldenCookieFreq: 'Golden cookie frequency',
|
|
goldenCookieGain: 'Golden cookie gains',
|
|
grandmaCps: 'Grandma CPS',
|
|
itemDrops: 'Random item drop chance',
|
|
milk: 'Effect from milk',
|
|
reindeerDur: 'Reindeer duration',
|
|
reindeerFreq: 'Reindeer frequency',
|
|
reindeerGain: 'Reindeer gains',
|
|
upgradeCost: 'Upgrade prices',
|
|
wrathCookieDur: 'Wrath cookie duration',
|
|
wrathCookieEffDur: 'Wrath cookie effect duration',
|
|
wrathCookieFreq: 'Wrath cookie frequency',
|
|
wrathCookieGain: 'Wrath cookie gains',
|
|
wrinklerEat: 'Wrinkler ',
|
|
wrinklerSpawn: 'Wrinkler spawn frequency',
|
|
};
|