generated from BattlesnakeOfficial/starter-snake-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.json
63 lines (63 loc) · 1.24 KB
/
state.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
{
"height": 11,
"width": 11,
"food": [
{ "x": 5, "y": 5 },
{ "x": 9, "y": 0 },
{ "x": 2, "y": 6 }
],
"ourSnakes": [
{
"id": "snake-508e96ac-94ad-11ea-bb37",
"name": "VilmerJ",
"health": 54,
"body": [
{ "x": 0, "y": 0 },
{ "x": 1, "y": 0 },
{ "x": 2, "y": 0 }
],
"head": { "x": 0, "y": 0 },
"length": 3
},
{
"id": "snake-b67f4906-94ae-11ea-bb37",
"name": "VilmerJ",
"health": 16,
"body": [
{ "x": 5, "y": 4 },
{ "x": 5, "y": 3 },
{ "x": 6, "y": 3 },
{ "x": 6, "y": 2 }
],
"head": { "x": 5, "y": 4 },
"length": 4
}
],
"enemySnakes": [
{
"id": "snake-558e96ac-94ad-11ea-bb37",
"name": "Greg",
"health": 54,
"body": [
{ "x": 0, "y": 0 },
{ "x": 1, "y": 0 },
{ "x": 2, "y": 0 }
],
"head": { "x": 0, "y": 0 },
"length": 3
},
{
"id": "snake-b57f4906-94ae-11ea-bb37",
"name": "Greg",
"health": 16,
"body": [
{ "x": 5, "y": 4 },
{ "x": 5, "y": 3 },
{ "x": 6, "y": 3 },
{ "x": 6, "y": 2 }
],
"head": { "x": 5, "y": 4 },
"length": 4
}
]
}