-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
90 lines (90 loc) · 1.35 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
window.data = {
coffee: 0,
totalCPS: 0,
producers: [
{
id: 'chemex',
price: 10,
unlocked: false,
cps: 1,
qty: 0
},
{
id: 'french_press',
price: 50,
unlocked: false,
cps: 2,
qty: 0
},
{
id: 'mr._coffee',
price: 100,
unlocked: false,
cps: 5,
qty: 0
},
{
id: 'ten_cup_urn',
price: 500,
unlocked: false,
cps: 10,
qty: 0
},
{
id: 'espresso_machine',
price: 1000,
unlocked: false,
cps: 20,
qty: 0
},
{
id: 'ten_gallon_urn',
price: 5000,
unlocked: false,
cps: 50,
qty: 0
},
{
id: 'coffeeshop',
price: 10000,
unlocked: false,
cps: 75,
qty: 0
},
{
id: 'coffee_factory',
price: 50000,
unlocked: false,
cps: 100,
qty: 0
},
{
id: 'coffee_fountain',
price: 100000,
unlocked: false,
cps: 200,
qty: 0
},
{
id: 'coffee_river',
price: 500000,
unlocked: false,
cps: 500,
qty: 0
},
{
id: 'coffee_ocean',
price: 1000000,
unlocked: false,
cps: 1000,
qty: 0
},
{
id: 'coffee_planet',
price: 5000000,
unlocked: false,
cps: 2000,
qty: 0
}
]
};