-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.js
More file actions
45 lines (38 loc) · 855 Bytes
/
utils.js
File metadata and controls
45 lines (38 loc) · 855 Bytes
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
import PogObject from "../PogData";
export let data = new PogObject("scStats", {
"firstConnexion": true,
"nbrVial": [],
"nbrThunder": [],
"nbrJawbus": [],
"MFVial": [],
"timeVial": [],
"timeThunder": [],
"timeJawbus": [],
"STATS": {
"avgNbrThunder": 0,
"avgNbrJawbus": 0,
"avgNbrVial": 0,
"avgMFVial": 0
},
"GRAPH": {
"xThunder": 10,
"yThunder": 10,
"sThunder": 161.8,
"xJawbus": 10,
"yJawbus": 120,
"sJawbus": 161.8,
"xWorm": 10,
"yWorm": 10,
"xDeploy": 10,
"yDeploy": 10,
"xWormStats": 10,
"yWormStats": 10,
"xPersonalStats": 10,
"yPersonalStats": 10
},
"COUNTER": {
"thunder": 0,
"jawbus": 0,
"vial": 0
}
}, "data.json")