SnakeGame/levels/2.json

25 lines
462 B
JSON
Raw Normal View History

2020-03-23 13:09:28 +00:00
{
2020-03-23 17:04:59 +00:00
"minDelay": 100,
"acceleration": 1,
2020-03-23 16:36:26 +00:00
"dimensions": [40, 40],
2020-03-23 13:09:28 +00:00
"delay": 200,
"walls": [
2020-03-23 16:36:26 +00:00
[5,5], [5,6], [5,7], [5,8], [40, 35], [38, 35], [23, 35]
2020-03-23 13:09:28 +00:00
],
2020-03-23 16:50:42 +00:00
"randWallFreq": 5000,
2020-03-23 13:09:28 +00:00
"food": [
[10,10],
2020-03-23 16:36:26 +00:00
[11,10],
[12,10],
[20, 20],
[20, 22],
[20, 23],
[20, 21]
2020-03-23 13:09:28 +00:00
],
2020-03-23 16:50:42 +00:00
"randFoodFreq": 2000,
2020-03-23 13:09:28 +00:00
"snake": [
2020-03-23 16:36:26 +00:00
[4,2], [4,1], [3,1], [2,1]
2020-03-23 14:37:56 +00:00
],
"firstKey": "ArrowRight"
2020-03-23 16:36:26 +00:00
2020-03-23 13:09:28 +00:00
}