upgraded engine with input buffering and added arcade & survival

This commit is contained in:
Nathan DECHER 2020-03-25 19:29:55 +01:00
parent 03e0c97280
commit de390dff8a
5 changed files with 74 additions and 18 deletions

12
levels/arcade-arcade.json Normal file
View file

@ -0,0 +1,12 @@
{
"dimensions": [32, 32],
"delay": 200,
"food": [
[16, 16]
],
"snake": [
[16, 12],
[16, 11],
[16, 10]
]
}

View file

@ -0,0 +1,16 @@
{
"dimensions": [32, 32],
"delay": 200,
"food": [],
"snake": [
[16, 12],
[16, 11],
[16, 10]
],
"rules": {
"autoSpeedIncrease": true,
"autoSpeadIncreaseTicks": 10,
"autoSizeGrow": true,
"autoSizeGrowTicks": 100
}
}