forked from mulhoon/score.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_defaults.js
59 lines (59 loc) · 1.07 KB
/
_defaults.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
Score.prototype._defaults = {
level:0,
score:0,
multiplier:1,
persistant: true,
levels:[
{
"checkmark": 0,
"status":"turtle",
"quote":"You're just a little newbie"
},
{
"checkmark": 50,
"status":"sheep",
"quote":"You're certainly not following the herd"
},
{
"checkmark": 150,
"status":"pig",
"quote":"Oh my god, smokey bacon!"
},
{
"checkmark": 300,
"status":"rabbit",
"quote":"Ok, I'll admit you're a speed deamon"
},
{
"checkmark": 600,
"status":"cat",
"quote":"Your powers are strong my friend"
},
{
"checkmark": 1200,
"status":"octopus",
"quote":"Your reach is far"
},
{
"checkmark": 2000,
"status":"bee",
"quote":"The busiest player i've ever seen"
},
{
"checkmark": 2500,
"status":"horse",
"quote":"Oh boy, you're a powerful stallion"
},
{
"checkmark": 3000,
"status":"gorilla",
"quote":"You're a true survivor, grrr!"
},
{
"checkmark": 4000,
"status":"dolphin",
"quote":"You've arrived! you will be known forever as a Legend"
}
],
callback:function(){}
};