-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.json
More file actions
57 lines (57 loc) · 1.95 KB
/
users.json
File metadata and controls
57 lines (57 loc) · 1.95 KB
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
{
"users": [
{
"username": "shortland",
"password": "short98",
"hash": "abcdefgh",
"email": "ilankleiman@gmail.com",
"verified": true,
"device-identifier": "abcd-1234-efgh-5678-ijkl",
"tower": {
"level": 18,
"exp": 14064,
"cash": 14000,
"gold": 640,
"tower-name": "Ilan's Tower",
"floors": [
{
"name": "Starbucks",
"industry-type": "Food",
"level": 3,
"current-workers": 3,
"max-workers": 3,
"monthly-rent": 2400,
"under-construction": false
},
{
"name": "Dunkin Donuts",
"industry-type": "Food",
"level": 2,
"current-workers": 1,
"max-workers": 2,
"monthly-rent": 2200,
"under-construction": false
},
{
"name": "Papa John's Pizza",
"industry-type": "Food",
"level": 4,
"current-workers": 3,
"max-workers": 4,
"monthly-rent": 2600,
"under-construction": true
},
{
"name": "Clinic",
"industry-type": "Public Service",
"level": 0,
"current-workers": 0,
"max-workers": 0,
"monthly-rent": 2000,
"under-construction": true
}
]
}
}
]
}