-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
level6.js
29 lines (29 loc) · 1.99 KB
/
level6.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
svgtiler = {"0":{"parent":null,"board":[["?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?"],["?","1","1","1","1","1","1","1","1","1","1","1","1","1","1","1","?","?","?"],["?","1","?","?","?","?","?","?","?","?","?","?","?","?","?","1","?","?","?"],["?","1","?","1","1","1","1","1","1","1","1","?","?","?","?","1","?","?","?"],["?","1","?","1","?","?","?","?","?","?","?","?","?","?","?","1","?","?","?"],["?","1","?","1","?","1","1","1","1","1","1","1","1","1","1","1","?","?","?"],["?","1","?","1","?","1","?","?","?","?","?","?","?","?","?","1","?","?","?"],["?","1","?","1","?","1","?","1","1","1","1","?","?","?","?","1","?","1","?"],["?","1","?","1","?","1","?","1","?","1","1","?","?","?","?","1","?","1","?"],["?","1","?","1","?","1","?","?","?","1","?","?","?","?","?","1","?","1","?"],["?","1","?","1","?","1","1","1","1","1","1","1","1","1","?","1","?","1","?"],["?","1","?","1","?","?","?","?","?","1","?","?","?","1","?","1","?","1","?"],["?","1","?","1","?","?","?","?","1","1","?","1","?","1","?","1","?","1","?"],["?","1","?","1","?","?","?","?","1","1","1","1","?","1","?","1","?","1","?"],["?","?","?","1","?","?","?","?","?","?","?","?","?","1","?","1","?","1","?"],["?","?","?","1","1","1","1","1","1","1","1","1","1","1","?","1","?","1","?"],["?","?","?","1","?","?","?","?","?","?","?","?","?","?","?","1","?","1","?"],["?","?","?","1","?","?","?","?","1","1","1","1","1","1","1","1","?","1","?"],["?","?","?","1","?","?","?","?","?","?","?","?","?","?","?","?","?","1","?"],["?","?","?","1","1","1","1","1","1","1","1","1","1","1","1","1","1","1","?"],["?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?","?"]],"x":4,"y":0}}
board = svgtiler[0].board
ballStart = [7,9]
magnetStart = [4,9]
colorBalls = [
[
[8,7],
[7,7],
[7,8],
[7,9],
[7,10]
],
[
[8,10]
],
[
[12,11],
[13,11],
[13,10],
[13,9],
[13,8]
],
[
[12,8]
]
]
if(typeof module !== "undefined") {
module.exports = {board, ballStart, magnetStart}
}