-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.json
116 lines (116 loc) · 2.07 KB
/
table.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"meta": {
"title": {
"EN": "Maze",
"IT": "Labirinto"
},
"license": {
"EN": "Public domain",
"IT": "Pubblico dominio"
},
"description": {
"EN": "The classic maze game. Cross it by drawing a line and find the exit.",
"IT": "Il classico gioco del labirinto. Attraversalo tracciando una riga e trova l'uscita."
},
"players": {
"EN": "1"
},
"url": {
"EN": {
"isResource": true,
"type": "url",
"url": "https://en.wikipedia.org/wiki/Maze"
},
"IT": {
"isResource": true,
"type": "url",
"url": "https://it.wikipedia.org/wiki/Labirinto"
}
},
"categories": [
"racing",
"procgen"
],
"subtemplates": [
{
"id": "easy",
"isDefault": true,
"meta": {
"title": {
"EN": "Easy difficulty",
"IT": "Difficoltà facile"
},
"description": {
"EN": "The exit is around the corner...",
"IT": "L'uscita è dietro l'angolo..."
}
}
},
{
"id": "normal",
"meta": {
"title": {
"EN": "Medium difficulty",
"IT": "Difficoltà media"
},
"description": {
"EN": "Do not get lost!",
"IT": "Non perderti!"
}
}
},
{
"id": "hard",
"meta": {
"title": {
"EN": "Hard difficulty",
"IT": "Difficoltà difficile"
},
"description": {
"EN": "Finding the exit will be tough!",
"IT": "Trovare l'uscita sarà dura!"
}
}
}
]
},
"generator": "generator.js",
"subtemplates": [
{
"id": "easy",
"settings": {
"mazeWidth": 17,
"mazeHeight": 11,
"renderX": 36,
"renderY": 21,
"renderCellSize": 20,
"timerX": 31,
"timerY": -12
}
},
{
"id": "normal",
"settings": {
"mazeWidth": 25,
"mazeHeight": 16,
"renderX": 30,
"renderY": 23,
"renderCellSize": 14,
"timerX": 22,
"timerY": -12
}
},
{
"id": "hard",
"settings": {
"mazeWidth": 34,
"mazeHeight": 22,
"renderX": 22,
"renderY": 21,
"renderCellSize": 11,
"timerX": 12.4,
"timerY": -12
}
}
]
}