-
Notifications
You must be signed in to change notification settings - Fork 1
/
things.json
116 lines (109 loc) · 3.57 KB
/
things.json
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"buildings": [
{
"id": 0,
"name": "Old GPU",
"description": "Better for a museum than mining, but jokes on the GPU, you don't pay electricity, so it's basically free money! Yay!",
"image": "./images/1.png",
"addCPS": 1,
"price": 30
},
{
"id": 1,
"name": "Low-end GPU",
"description": "Probably leftovers from a kid's old gaming rig, with this you can at least launch Minecraft without it crashing.",
"image": "./images/2.png",
"addCPS": 5,
"price": 300
},
{
"id": 2,
"name": "GPU",
"description": "Finally some POWAH! This is considered the norm for gaming, that's plenty for mining!",
"image": "./images/3.jpg",
"addCPS": 20,
"price": 2000
},
{
"id": 3,
"name": "High-end GPU",
"description": "The new-ish Džífors Tajtn card, shame that they released the 3000 series which is way faster.",
"image": "./images/4.png",
"addCPS": 50,
"price": 8000
},
{
"id": 4,
"name": "Top-end GPU",
"description": "Now we're talking! This is the highest offering from Džífors.",
"image": "./images/5.png",
"addCPS": 200,
"price": 50000
},
{
"id": 5,
"name": "NASA GPU",
"description": "This is used to power the robots and rocketships that go on different planets. I wonder how the store got this...",
"image": "./images/6.png",
"addCPS": 500,
"price": 150000
},
{
"id": 6,
"name": "Prototype GPU",
"description": "Is the store a pawn shop now? I bet it was stole off of Shintel.",
"image": "./images/7.png",
"addCPS": 1250,
"price": 500000
},
{
"id": 7,
"name": "Alien Relic",
"description": "Is.. is it green? It has a PCIE port, along with some ports you have never seen.",
"image": "./images/8.png",
"addCPS": 3000,
"price": 1500000
}
],
"upgrades":[
{
"id": 0,
"name": "Cursor",
"description": "This upgrade adds +1 to your clicking power.",
"image": "./images/cursorWood.png",
"addCPC": 1,
"price": 50
},
{
"id": 1,
"name": "Cursor 2",
"description": "This upgrade adds +1 to your clicking power, again.",
"image": "./images/cursorBasic.png",
"addCPC": 1,
"price": 500
},
{
"id": 2,
"name": "Cursor 3: The Trilogy",
"description": "This upgrade adds +2 to your clicking power.",
"image": "./images/cursorGold.png",
"addCPC": 2,
"price": 2000
},
{
"id": 3,
"name": "Graphical Cursor",
"description": "This upgrade adds 5% of your CPS to your clicking power.",
"image": "./images/cursorEpic.png",
"addCPCplusCPS": 0.05,
"price": 25000
},
{
"id": 7,
"name": "Ascension",
"description": "Lose all your progress, but everything has twice the CPS.",
"image": "./images/ascend.png",
"price": 8000000
}
]
}