SnakeGame/levels/2.json

50 lines
759 B
JSON
Raw Permalink Normal View History

2020-03-23 13:09:28 +00:00
{
2020-03-23 16:36:26 +00:00
"dimensions": [40, 40],
2020-04-01 11:11:32 +00:00
2020-03-23 13:09:28 +00:00
"delay": 200,
2020-04-01 11:11:32 +00:00
"acceleration": 1,
"minDelay": 100,
2020-03-23 13:09:28 +00:00
"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-04-01 11:11:32 +00:00
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-04-01 11:11:32 +00:00
"randFoodFreq": 2000,
2020-03-29 14:59:56 +00:00
"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]
],
2020-04-01 11:11:32 +00:00
"teleportation": [
[35, 5],
[5, 35]
],
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
}