forked from AndrewCramp/QHacks2019---Productify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
117 lines (114 loc) · 2.35 KB
/
constants.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
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
117
//this file will hold all the achievement data
var productivity = {
"snail" : {
"picUrl" : "images/snail.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "1"
},
"turtle" : {
"picUrl" : "images/turtle.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "2"
},
"bike" : {
"picUrl" : "images/bike.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "16"
},
"car" : {
"picUrl" : "images/car.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "256"
},
"train" : {
"picUrl" : "images/train.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "65536"
},
"airplane" : {
"picUrl" : "images/airplane.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "4000000"
}
}
var reading = {
"thumbtack" : {
"picUrl" : "images/thumbtack.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "1"
},
"pencil" : {
"picUrl" : "images/pencil.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "2"
},
"book" : {
"picUrl" : "images/book.png",
"achieved" : "no",
"time" : "16"
},
"bookstack" : {
"picUrl" : "images/bookstack.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "256"
},
"bar" : {
"picUrl" : "images/bargraph.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "65536"
},
"world" : {
"picUrl" : "images/world.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "4000000"
}
}
var social = {
"shock" : {
"picUrl" : "images/shock.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "1"
},
"gritted" : {
"picUrl" : "images/gritted.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "2"
},
"guilt" : {
"picUrl" : "images/guilt.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "16"
},
"sobbing" : {
"picUrl" : "images/sobbing.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "256"
},
"supershock" : {
"picUrl" : "images/supershock.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "65536"
},
"poo" : {
"picUrl" : "images/poo.png",
"achieved" : "no",
"inprogress" : "no",
"time" : "400000"
}
}