added tutorial, added first 4 level names
This commit is contained in:
parent
002c4e6631
commit
c4d911c673
15 changed files with 4291 additions and 1136 deletions
|
@ -517,8 +517,7 @@ function editClose()
|
||||||
editor = "main"
|
editor = "main"
|
||||||
tileIndex = 0
|
tileIndex = 0
|
||||||
playdate.display.setInverted(false)
|
playdate.display.setInverted(false)
|
||||||
imgtiles = gfx.sprite.new(tilemapEditor)
|
gfx.sprite.removeAll()
|
||||||
imgtiles:remove()
|
|
||||||
if #playdate.getSystemMenu():getMenuItems() > 1 then
|
if #playdate.getSystemMenu():getMenuItems() > 1 then
|
||||||
playdate.getSystemMenu():removeMenuItem(playdate.getSystemMenu():getMenuItems()[3])
|
playdate.getSystemMenu():removeMenuItem(playdate.getSystemMenu():getMenuItems()[3])
|
||||||
playdate.getSystemMenu():removeMenuItem(playdate.getSystemMenu():getMenuItems()[2])
|
playdate.getSystemMenu():removeMenuItem(playdate.getSystemMenu():getMenuItems()[2])
|
||||||
|
|
|
@ -36,6 +36,7 @@ next = nil
|
||||||
local gfx <const> = playdate.graphics
|
local gfx <const> = playdate.graphics
|
||||||
local disp <const> = playdate.display
|
local disp <const> = playdate.display
|
||||||
local font <const> = gfx.font.new("gfx/big")
|
local font <const> = gfx.font.new("gfx/big")
|
||||||
|
local symbols <const> = gfx.font.new("gfx/symbols")
|
||||||
|
|
||||||
gfx.setFont(font)
|
gfx.setFont(font)
|
||||||
gfx.setBackgroundColor(gfx.kColorBlack)
|
gfx.setBackgroundColor(gfx.kColorBlack)
|
||||||
|
@ -55,6 +56,8 @@ mainMenuCreation()
|
||||||
|
|
||||||
createMenu(mainmenu)
|
createMenu(mainmenu)
|
||||||
|
|
||||||
|
tutorial = nil
|
||||||
|
|
||||||
local menu = playdate.getSystemMenu()
|
local menu = playdate.getSystemMenu()
|
||||||
menuButton, error = menu:addMenuItem("game menu", function()
|
menuButton, error = menu:addMenuItem("game menu", function()
|
||||||
if mode == "game" then
|
if mode == "game" then
|
||||||
|
@ -92,11 +95,11 @@ if playdate.file.exists("levels") == false then
|
||||||
end
|
end
|
||||||
|
|
||||||
if playdate.file.exists("levels/BONUS LEVEL 1.json") == false then
|
if playdate.file.exists("levels/BONUS LEVEL 1.json") == false then
|
||||||
local data = json.decodeFile("bl1.json")
|
local data = json.decodeFile("bdata/bl1.json")
|
||||||
playdate.datastore.write(data,"levels/BONUS LEVEL 1")
|
playdate.datastore.write(data,"levels/BONUS LEVEL 1")
|
||||||
data = json.decodeFile("bl2.json")
|
data = json.decodeFile("bdata/bl2.json")
|
||||||
playdate.datastore.write(data,"levels/BONUS LEVEL 2")
|
playdate.datastore.write(data,"levels/BONUS LEVEL 2")
|
||||||
data = json.decodeFile("bl3.json")
|
data = json.decodeFile("bdata/bl3.json")
|
||||||
playdate.datastore.write(data,"levels/BONUS LEVEL 3")
|
playdate.datastore.write(data,"levels/BONUS LEVEL 3")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -126,6 +129,9 @@ function playdate.update()
|
||||||
playdate.ui.crankIndicator:update()
|
playdate.ui.crankIndicator:update()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if tutorial then
|
||||||
|
symbols:drawText("AOu",-ox+2,-oy + 202)
|
||||||
|
end
|
||||||
elseif mode == "newproj" then
|
elseif mode == "newproj" then
|
||||||
gfx.clear()
|
gfx.clear()
|
||||||
updateNewproj()
|
updateNewproj()
|
||||||
|
@ -146,3 +152,9 @@ function playdate.gameWillTerminate()
|
||||||
playdate.datastore.write({savedLevel=map,savedDeaths=deaths},"savegame")
|
playdate.datastore.write({savedLevel=map,savedDeaths=deaths},"savegame")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function playdate.debugDraw()
|
||||||
|
gfx.setDrawOffset(0,0)
|
||||||
|
gfx.drawText("DEBUG ON",0,220)
|
||||||
|
print(playdate.graphics.sprite.spriteCount())
|
||||||
|
end
|
|
@ -50,6 +50,7 @@ function addMap(_file, rs)
|
||||||
if level.rotators then loadSpins(level.rotators) end
|
if level.rotators then loadSpins(level.rotators) end
|
||||||
if level.fuel then loadFuel(level.fuel) end
|
if level.fuel then loadFuel(level.fuel) end
|
||||||
if level.next then next = level.next end
|
if level.next then next = level.next end
|
||||||
|
if level.tutorial then tutorial = level.tutorial end
|
||||||
addPlayer(level.rocket.x+14,level.rocket.y+15, level.bigrocket.x+32, level.bigrocket.y+32)
|
addPlayer(level.rocket.x+14,level.rocket.y+15, level.bigrocket.x+32, level.bigrocket.y+32)
|
||||||
|
|
||||||
sprTiles:remove()
|
sprTiles:remove()
|
||||||
|
|
|
@ -194,8 +194,8 @@ function menuButtonPress(name, index)
|
||||||
|
|
||||||
elseif name == "START NEW GAME" or name == "CONFIRM" then
|
elseif name == "START NEW GAME" or name == "CONFIRM" then
|
||||||
deaths = 0
|
deaths = 0
|
||||||
map = "data/level.json"
|
map = "data/1. HOOK.json"
|
||||||
addMapSave("data/level.json")
|
addMapSave("data/1. HOOK.json")
|
||||||
|
|
||||||
elseif name == "CONTINUE" then
|
elseif name == "CONTINUE" then
|
||||||
addMap(map)
|
addMap(map)
|
||||||
|
@ -209,7 +209,7 @@ function menuButtonPress(name, index)
|
||||||
local m = {}
|
local m = {}
|
||||||
--barpos = 160
|
--barpos = 160
|
||||||
--logopos = -112
|
--logopos = -112
|
||||||
m[0],m[1], m[2], m[3], m[4], m[5] = "extras", "BACK", "MUSIC BOX", "END CUTSCENE", "START CUTSCENE", "LEVEL SELECT"
|
m[0],m[1], m[2], m[3], m[4], m[5], m[6] = "extras", "BACK", "MUSIC BOX", "ABOUT THE DEV", "END CUTSCENE", "START CUTSCENE", "LEVEL SELECT"
|
||||||
if playdate.file.exists("bonusLevels.rocketbytes") then
|
if playdate.file.exists("bonusLevels.rocketbytes") then
|
||||||
m[6] = "EXTRA LEVELS"
|
m[6] = "EXTRA LEVELS"
|
||||||
end
|
end
|
||||||
|
|
|
@ -64,6 +64,7 @@ function addPlayer(_x,_y,__x,__y)
|
||||||
end
|
end
|
||||||
|
|
||||||
function killPlayer()
|
function killPlayer()
|
||||||
|
tutorial = nil
|
||||||
song:setFinishCallback(nil)
|
song:setFinishCallback(nil)
|
||||||
exists = false
|
exists = false
|
||||||
active = false
|
active = false
|
||||||
|
@ -165,6 +166,7 @@ function updatePlayer()
|
||||||
sprRocket:setVisible(false)
|
sprRocket:setVisible(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
updateExit()
|
updateExit()
|
||||||
|
|
||||||
sprRocket:setScale(scale,scale)
|
sprRocket:setScale(scale,scale)
|
||||||
|
|
File diff suppressed because it is too large
Load diff
1558
Source/data/2. ROCKET.json
Normal file
1558
Source/data/2. ROCKET.json
Normal file
File diff suppressed because it is too large
Load diff
878
Source/data/3. STAR.json
Normal file
878
Source/data/3. STAR.json
Normal file
|
@ -0,0 +1,878 @@
|
||||||
|
{
|
||||||
|
"bigrocket": {
|
||||||
|
"x":1544,
|
||||||
|
"y":1648
|
||||||
|
},
|
||||||
|
"next":"data/4. SPINNER.json",
|
||||||
|
"fuel": [
|
||||||
|
{
|
||||||
|
"x":1465,
|
||||||
|
"y":1563
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x":1561,
|
||||||
|
"y":1467
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x":1657,
|
||||||
|
"y":1563
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"inverted":false,
|
||||||
|
"rocket": {
|
||||||
|
"x":1562,
|
||||||
|
"y":1564
|
||||||
|
},
|
||||||
|
"rotators": [
|
||||||
|
],
|
||||||
|
"saws": [
|
||||||
|
],
|
||||||
|
"song":"song2",
|
||||||
|
"tiles": [
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":90,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":90,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":108,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":108,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":95,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":94,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":93,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":92,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":91,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":97,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":98,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":99,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":100,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":101,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":103,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":104,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":105,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":106,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":107,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":107,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":106,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":105,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":104,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":103,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":101,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":100,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":99,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":98,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":98,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":97,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":95,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":94,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":93,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":92,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":91,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":90,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":90,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":90,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":90,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":90,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":108,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":108,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":108,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":108,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":108,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":91
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":91
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":90,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":91,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":93,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":94,
|
||||||
|
"y":91
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":95,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":103,
|
||||||
|
"y":90
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":104,
|
||||||
|
"y":91
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":105,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":107,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":108,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":108,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":107,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":105,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":104,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":103,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":95,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":94,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":93,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":91,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":90,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":91,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":92,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":93,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":94,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":94,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":95,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":95,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":95,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":95,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":95,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":94,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":94,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":93,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":93,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":94,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":92,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":91,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":92,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":93,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":94,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":95,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":95,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":95,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":95,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":95,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":95,
|
||||||
|
"y":91
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":94,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":94,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":93,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":93,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":92,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":14,
|
||||||
|
"x":94,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":103,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":103,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":103,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":103,
|
||||||
|
"y":91
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":104,
|
||||||
|
"y":92
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":104,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":105,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":105,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":106,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":106,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":107,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":105,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":104,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":103,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":15,
|
||||||
|
"x":104,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":104,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":103,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":103,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":103,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":103,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":104,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":105,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":105,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":106,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":106,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":107,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":106,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":105,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":104,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":103,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":103,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":16,
|
||||||
|
"x":104,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":12,
|
||||||
|
"x":102,
|
||||||
|
"y":89
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":7,
|
||||||
|
"x":95,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":7,
|
||||||
|
"x":103,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":7,
|
||||||
|
"x":105,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":8,
|
||||||
|
"x":106,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":8,
|
||||||
|
"x":104,
|
||||||
|
"y":101
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
758
Source/data/4. SPINNER.json
Normal file
758
Source/data/4. SPINNER.json
Normal file
|
@ -0,0 +1,758 @@
|
||||||
|
{
|
||||||
|
"bigrocket": {
|
||||||
|
"x":1696,
|
||||||
|
"y":1760
|
||||||
|
},
|
||||||
|
"fuel": [
|
||||||
|
],
|
||||||
|
"inverted":false,
|
||||||
|
"rocket": {
|
||||||
|
"x":1562,
|
||||||
|
"y":1564
|
||||||
|
},
|
||||||
|
"rotators": [
|
||||||
|
{
|
||||||
|
"armlen":5,
|
||||||
|
"arms":4,
|
||||||
|
"middle":true,
|
||||||
|
"speed":0.40000000596046,
|
||||||
|
"x":1568,
|
||||||
|
"y":1712
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"saws": [
|
||||||
|
],
|
||||||
|
"song":"song2",
|
||||||
|
"tiles": [
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":97,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":98,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":99,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":100,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":101,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":105,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":104,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":103,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":109
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":114
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":113
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":113
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":112
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":111
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":110
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":109
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":95,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":94,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":93,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":105,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":104,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":103,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":102,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":101,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":100,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":99,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":97,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":97,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":94,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":94,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":92,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":93,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":95,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":96,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":98,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":105,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":104,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":103,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":101,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":100,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":99,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":97,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":97,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":98,
|
||||||
|
"y":96
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":95,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":94,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":93,
|
||||||
|
"y":101
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":93,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":94,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":95,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":96,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":97,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":98,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":99,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":100,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":101,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":102,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":103,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":104,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":105,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":109
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":102,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":97
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":96,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":108
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":109
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":110
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":111
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":112
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":113
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":92,
|
||||||
|
"y":114
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":107,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":108,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":3,
|
||||||
|
"x":109,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":110,
|
||||||
|
"y":115
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":2,
|
||||||
|
"x":106,
|
||||||
|
"y":109
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":106
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":105
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":104
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":103
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":102
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":4,
|
||||||
|
"x":106,
|
||||||
|
"y":107
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":7,
|
||||||
|
"x":104,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":8,
|
||||||
|
"x":105,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":95,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":95,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":94,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":93,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":97,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":98,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":99,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":100,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":100,
|
||||||
|
"y":95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":98,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":98,
|
||||||
|
"y":93
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":5,
|
||||||
|
"x":99,
|
||||||
|
"y":94
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":99,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":100,
|
||||||
|
"y":100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":100,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":100,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":100,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":99,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":98,
|
||||||
|
"y":98
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":98,
|
||||||
|
"y":99
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"t":13,
|
||||||
|
"x":98,
|
||||||
|
"y":100
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,22 +1,23 @@
|
||||||
--metrics={"baseline":17,"xHeight":1,"capHeight":1,"pairs":{},"left":[],"right":[]}
|
--metrics={"baseline":34,"xHeight":2,"capHeight":2,"pairs":{},"left":[],"right":[]}
|
||||||
datalen=1472
|
datalen=3256
|
||||||
data=iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAEF0lEQVR4Xu1a25bCIAzU//9od4sFQ8gdqrTUlz26dhomw5CkPh/HvV4A+jnoNhBzg4zimnGiN9DWmwJ4vV6P57PcovdeBTMxE8d14fQGTRFVBdC5mIzfEB4k340zmiBKOSOU9M/HW43b30w6IMm6joIDMyvhWIG1LZV2VN5WeAFwUTuQ977XICgTAdmEWQfbzUJQZaSKgqpbomySOIyCGhxLoBb1NAqCKsoADmNtfAzjYeIZr2NxMEE4qVnpIwkiSeohBxBqShIy7nQN9ZkGBq8ZTVBFUs6yQzn7mqryQFtP9X+4uAg5GSxfewRBDUlOYyZPGitLZyGokOQkhyPXxM9ZtphpMcqXus11x+/GOWqLDSMJewI+fQgjx2ua5pgfQQqH4a6AGSA3zswKQmJpT7aztRqHKgjXNGdtVr9C0nYTZ21VqTGTbcE5yxYrXo0yEI1/2MDMDGQ5tsF3Dl8YZ9JKnE1cUqCuyZtw4xlwSqKpiQPaaultXg9HkHvyJmVMKP+tSuqJh0tQFTI3s2IJUsp288J+jENOOKVthk/HyxMU6ehhfQUJ6irJQVZmwWHVg30ItyvUPKi7qRvVHA7E0dqKklPJBjYFufdpKUrq517p405Ji0FrVSi+t3X8oRIUWRRFEh6sl6Py85CPXWNk0EVtFQ3HeMyXRCcFrUaQ5Dk48fcWY2wBz6Snecwyo0mTjSD2E+IJBVeNT33MW4ybOuaxeRZfgiX4NwZUXMsSrMhD/soVijC2yxDkLT3MrQYGxhdqNQn2knxy/ADnkGY18ZNJ2v5+a4InEN8Tz/BxB2ncG09G5TSehj74FQ4eAOI4zQMzNxBnrgqhVqJGxePOL/uQzViSiwM3uEWbVNXtx9E4bmKoGqbLzEAEs+BoqqNIY7eYu6NnTqOZcFKpAl/Uj66KUt6K5gmKNKxE4dhdmOXyYEA8VSywMxCaVZKgIZO3cuyhGRHlZZ5u2mMemFRq9OGtyNlxh9GkqwGZpc/BBShFbEQ9Gk6XgijmpcxBBVBZgtdGSDuaINKdBQ9qfINTDzK09NZCkHLEm3CsW42Lx0g67UErKYg6qcTd8hZB/dub0QrymrIx2+S6DAqyVu8JfzmTDilIOllwoeU14NmO+QhBOz/+H2+foVAkEuzeYokgTkWcgSGfyDedCYfrxUIEVSQlc2Ie9uUtIwzQZmlWrZWB+L173KHQqM5hmOutMtVGDt/GcavKGqAb+CoX3AQFt9hVBNC9jltBDgVphlrVXN2pOQlAU+DluOGTUKbdWEJ9hSBuXCmMMW+CqJ+8EP3XSTZLLEyTgu4txgzNbgV9HpSRU0VEEB6ureVBedxBnWL7ibY0QWXcIVhZIgj8fykFxSx+gauWUEFPHm+CHL1YD9GXvfZWkJLaP13HHogxSF09AAAAAElFTkSuQmCC
|
data=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
|
||||||
width=18
|
width=36
|
||||||
height=18
|
height=36
|
||||||
|
|
||||||
tracking=1
|
tracking=1
|
||||||
|
|
||||||
space 11
|
space 22
|
||||||
<EFBFBD> 10
|
<EFBFBD> 20
|
||||||
u 17
|
u 34
|
||||||
p 17
|
p 34
|
||||||
d 17
|
d 34
|
||||||
l 17
|
l 34
|
||||||
r 17
|
r 34
|
||||||
A 17
|
A 34
|
||||||
C 17
|
C 34
|
||||||
B 17
|
B 34
|
||||||
D 17
|
D 34
|
||||||
c 12
|
c 24
|
||||||
O 14
|
O 28
|
||||||
|
/ 10
|
||||||
|
|
||||||
|
|
BIN
Source/launcher/launchImages/1.png
Normal file
BIN
Source/launcher/launchImages/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
|
@ -1,4 +1,6 @@
|
||||||
AndrewDavidJ - compatibility testing
|
AndrewDavidJ, SHiLLySiT - compatibility testing
|
||||||
SHiLLySiT (PD discord) - compatibility testing
|
|
||||||
PD DISCORD MEMBERS FOR SUGGESTIONS AND HELP
|
PD DISCORD MEMBERS FOR SUGGESTIONS AND HELP
|
||||||
|
Gant / Tiny Yellow Machine - playing the game on stream and being super supportive
|
||||||
|
My dad - buying me a playdate for hannukah
|
||||||
|
My dad and mom - supporting me and passion
|
||||||
You're all awesome
|
You're all awesome
|
Loading…
Reference in a new issue