SnakeGame/levels/2.json
2020-03-29 16:59:56 +02:00

41 lines
687 B
JSON

{
"minDelay": 100,
"acceleration": 1,
"dimensions": [40, 40],
"delay": 200,
"walls": [
[5,5], [5,6], [5,7], [5,8], [40, 35], [38, 35], [23, 35]
],
"randWallFreq": 5000,
"food": [
[10,10],
[11,10],
[12,10],
[20, 20],
[20, 22],
[20, 23],
[20, 21]
],
"ice": [
[15,15],
[15,16],
[15,17],
[15,18],
[16,15],
[16,16],
[16,17],
[16,18],
[17,15],
[17,16],
[17,17],
[17,18]
],
"randFoodFreq": 2000,
"snake": [
[4,2], [4,1], [3,1], [2,1]
],
"firstKey": "ArrowRight"
}