-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
91 lines (91 loc) · 1.76 KB
/
config.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"screenX": 20,
"screenY": 20,
"tileSize": 32,
"tiles": [
{
"id": "grass",
"filename": "imgs/grass.png",
"type": "texture",
"priority": 4,
"mapCharacter": "G"
},
{
"id": "brickred",
"filename": "imgs/brickred.png",
"type": "texture",
"priority": 1,
"mapCharacter": "R"
},
{
"id": "brickgrey",
"filename": "imgs/brickgrey.png",
"type": "texture",
"priority": 1,
"mapCharacter": "B"
},
{
"id": "uparrow",
"filename": "imgs/up.png",
"type": "texture",
"priority": 2,
"mapCharacter": "u"
},
{
"id": "downarrow",
"filename": "imgs/down.png",
"type": "texture",
"priority": 2,
"mapCharacter": "d"
},
{
"id": "leftarrow",
"filename": "imgs/left.png",
"type": "texture",
"priority": 2,
"mapCharacter": "l"
},
{
"id": "rightarrow",
"filename": "imgs/right.png",
"type": "texture",
"priority": 2,
"mapCharacter": "r"
},
{
"id": "squirrel",
"filename": "imgs/squirrelright.png",
"type": "texture",
"priority": 2,
"mapCharacter": "S"
}
],
"levels": [
{
"id": "level1",
"file": "maps/level3.map",
"width": 20,
"height": 20,
"startX": 18,
"startY": 18,
"endX": 5,
"endY": 5,
"initialfuel": 20,
"type": "",
"characters":
[ {"type": "squareferret",
"startX": 12,
"startY": 12
},
{"type": "healthpack",
"startX": 19,
"startY": 19
},
{"type": "squareferret",
"startX": 6,
"startY": 6
}
]
}
]
}