From 4ff84eb6ba595741ffbd2bee4d7066221ea073aa Mon Sep 17 00:00:00 2001 From: PossiblyAxolotl Date: Sat, 11 Jun 2022 21:08:20 -0600 Subject: [PATCH] saws now move --- Source/Editor.lua | 69 ++++++++++++++++++++++++----- Source/Main.lua | 1 + Source/Map.lua | 8 ++-- Source/Player.lua | 5 ++- Source/Saws.lua | 4 +- Source/data/LEVEL.json | 4 +- Source/data/ROCKETBITS/LEVEL2.json | 1 - Source/data/ROCKETBITS/LEVEL3.json | 1 - Source/data/ROCKETBITS/LEVEL4.json | 1 - Source/data/ROCKETBITS/LEVEL5.json | 1 - Source/data/ROCKETBITS/LEVEL6.json | 1 - Source/gfx/square.png | Bin 193 -> 208 bytes Source/gfx/tiles-table-16-16.png | Bin 484 -> 467 bytes 13 files changed, 69 insertions(+), 27 deletions(-) delete mode 100644 Source/data/ROCKETBITS/LEVEL2.json delete mode 100644 Source/data/ROCKETBITS/LEVEL3.json delete mode 100644 Source/data/ROCKETBITS/LEVEL4.json delete mode 100644 Source/data/ROCKETBITS/LEVEL5.json delete mode 100644 Source/data/ROCKETBITS/LEVEL6.json diff --git a/Source/Editor.lua b/Source/Editor.lua index eaf4e01..643ce32 100644 --- a/Source/Editor.lua +++ b/Source/Editor.lua @@ -12,6 +12,7 @@ local tileTable = gfx.imagetable.new("gfx/tiles") local tilemapEditor = gfx.tilemap.new() tilemapEditor:setImageTable(tileTable) local tiles = {} +local sawblades = {} tilemapEditor:setSize(1000,1000) local imgtiles = gfx.sprite.new(tilemapEditor) @@ -23,6 +24,8 @@ local menu = playdate.getSystemMenu() local toolTipButton local altClrButton +local pos1 = {x,y} + local editor = "main" local imgFloppy = gfx.imagetable.new("gfx/floppyT") @@ -38,8 +41,9 @@ local imgExit = gfx.image.new("gfx/exit") local imgEye = gfx.image.new("gfx/eye") local imgPlayer = gfx.image.new("gfx/rocket") local imgPlayerExit = gfx.image.new("gfx/bigrocket") -local imgB = gfx.image.new("gfx/bButton") local imgExitMen = gfx.image.new("gfx/leave") +local imgSaw = gfx.imagetable.new("gfx/sawblades") +local imgTarget = gfx.image.new("gfx/target") assert(imgFloppy) assert(imgAdd) assert(imgMus) @@ -51,7 +55,8 @@ assert(imgRocket) assert(imgEye) assert(imgPlayer) assert(imgPlayerExit) -assert(imgB) +assert(imgSaw) +assert(imgTarget) local animFloppy = gfx.animation.loop.new(100, imgFloppy) @@ -77,18 +82,20 @@ end function editLoadName(name) song:stop() + mode = "editor" playdate.wait(0.1) local data = json.decodeFile("levels/"..name) playdate.wait(0.1) powers = data.fuel + sawblades = data.saws playerPos = {x = data.rocket.x, y = data.rocket.y} exitPos = {x = data.bigrocket.x, y = data.bigrocket.y} position = {x = (data.rocket.x + 6) / 16, y = (data.rocket.y + 4)/16} + playdate.wait(0.1) levelname = name:match("(.+)%..+$") inverted = data.inverted playdate.display.setInverted(data.inverted) saveTime = 0 - mode = "editor" playdate.wait(0.1) -- loading tiles @@ -119,16 +126,17 @@ function playdate.keyboard.keyboardWillHideCallback(ok) editLoad() else song:stop() + mode = "editor" + playdate.wait(0.1) position = {x=89,y=93} playerPos = {x=1562,y=1564} exitPos = {x = 1616, y = 1536} - for tile = 1, #tiles, 1 do - tilemapEditor:setTileAtPosition(tiles[tile].x,tiles[tile].y,0) - end inverted = false playdate.display.setInverted(false) saveTime = 0 + song:stop() mode = "editor" + playdate.wait(0.1) altClrButton, error = menu:addCheckmarkMenuItem("alt colours",false, function(value) playdate.display.setInverted(value) inverted = value @@ -161,9 +169,11 @@ local curYlerp = -32 function editSave() playdate.datastore.delete("levels/"..levelname..".json") saveTime = 5 - playdate.datastore.write({tiles = tiles, inverted = inverted, rocket=playerPos, bigrocket=exitPos, fuel = powers,saws={},rotators={}},"levels/"..levelname) + playdate.datastore.write({tiles = tiles, inverted = inverted, rocket=playerPos, bigrocket=exitPos, fuel = powers,saws=sawblades,rotators={}},"levels/"..levelname) end +local traveltime = 1 + function editUpdate() --print(math.floor( tileIndex ) ) local change, aChange = playdate.getCrankChange() @@ -180,6 +190,10 @@ function editUpdate() if tileIndex > #tileTable then tileIndex = 0 end curY = (math.floor( tileIndex ) % 8) * 28 +7 + elseif editor == "pos2Saw" then + traveltime += change * 0.01 + if traveltime < 0.2 then traveltime = 0.2 end + traveltime = tonumber(string.format("%.2f", traveltime)) end curYlerp = playdate.math.lerp(curYlerp, curY, 0.4) @@ -187,7 +201,12 @@ function editUpdate() positionLerp.y = playdate.math.lerp(positionLerp.y, position.y * 16, 0.5) if playdate.buttonJustPressed(playdate.kButtonA) then - if editor == "tiles" then + if editor == "pos2Saw" then + sawblades[#sawblades+1] = {start={x=pos1.x,y=pos1.y},ends = {x=(position.x + 11) * 16,y=(position.y + 7) * 16}, speed = traveltime} + editor = "main" + printTable(sawblades[#sawblades]) + tileIndex = 2 + elseif editor == "tiles" then if math.floor( tileIndex ) == 0 then editor = "main" else @@ -205,6 +224,10 @@ function editUpdate() editor = "tiles" elseif math.floor(tileIndex) == 1 then powers[#powers+1] = {x=((position.x + 11) * 16)-7, y=((position.y + 7) * 16)-5} + elseif math.floor(tileIndex) == 2 then + pos1.x,pos1.y=((position.x + 11) * 16), ((position.y + 7) * 16) + tileIndex = 0 + editor = "pos2Saw" elseif math.floor(tileIndex) == 4 then playerPos = {x = ((position.x + 11) * 16) - 6, y = ((position.y + 7) * 16) - 4} elseif math.floor(tileIndex) == 5 then @@ -224,6 +247,10 @@ function editUpdate() break end end + elseif editor == "pos2Saw" then + pos1 = nil + tileIndex = 2 + editor = "main" elseif editor == "main" then --[[if math.floor( tileIndex ) == 0 then tilemapEditor:setTileAtPosition(position.x+12,position.y+8,0) @@ -241,6 +268,12 @@ function editUpdate() break end end + elseif math.floor( tileIndex ) == 2 then + for saw= 1, #sawblades, 1 do + if sawblades[saw].start.x == (position.x + 11) * 16 and sawblades[saw].start.y == (position.y + 7) * 16 then + table.remove(sawblades, saw) + end + end end elseif editor == "view" then editor = "main" @@ -271,6 +304,16 @@ function editUpdate() imgPlayerExit:draw(exitPos.x, exitPos.y) imgPlayer:draw(playerPos.x,playerPos.y) + for saw = 1, #sawblades, 1 do + local b = sawblades[saw] + imgSaw[1]:draw(b.start.x,b.start.y) + imgTarget:draw(b.ends.x,b.ends.y) + if editor == "main" and math.floor( tileIndex ) == 2 then + playdate.graphics.setLineWidth(2) + gfx.drawLine(b.start.x+8,b.start.y+8,b.ends.x+8,b.ends.y+8) + end + end + for power = 1, #powers, 1 do imgSquare:draw(powers[power].x,powers[power].y) end @@ -289,9 +332,12 @@ function editUpdate() if position.x < 1 then imgCant:drawTiled(-176,(position.y-1) * 16,176,272) end - + if editor == "pos2Saw" then + imgSaw[1]:draw(pos1.x,pos1.y) + end -- draw ui/ if editor ~= "view" then + gfx.setLineWidth(5) gfx.setDrawOffset(0,0) gfx.setColor(gfx.kColorBlack) gfx.fillRect(362,0,400,240) @@ -311,6 +357,8 @@ function editUpdate() tileTable[6+ind]:draw(373,153) tileTable[7+ind]:draw(373,181) tileTable[8+ind]:draw(373,209) + elseif editor == "pos2Saw" then + gfx.drawText("SELECT TARGET POSITION \nTRAVEL TIME: "..traveltime,0,0) elseif editor == "main" then imgMus:draw(366, 176) imgAdd:draw(366,8) @@ -353,9 +401,10 @@ end function editClose() for tile = 1, #tiles, 1 do tilemapEditor:setTileAtPosition(tiles[tile].x,tiles[tile].y,0) - tiles[tile] = nil end + tiles = {} powers = {} + sawblades = {} editor = "main" tileIndex = 0 playdate.display.setInverted(false) diff --git a/Source/Main.lua b/Source/Main.lua index 1c6ab51..3a4be8d 100644 --- a/Source/Main.lua +++ b/Source/Main.lua @@ -55,6 +55,7 @@ menuButton, error = menu:addMenuItem("game menu", function() if mode =="game" or mode == "play" then killPlayer() removeMap() + killBlades() end totalEnergy = 0 showEnergy = false diff --git a/Source/Map.lua b/Source/Map.lua index 829ae93..b25cd95 100644 --- a/Source/Map.lua +++ b/Source/Map.lua @@ -14,13 +14,11 @@ function addMapSave(_file) end function addMap(_file, rs) + killBlades() + killPlayer() + removeMap() next = nil if rs then deaths = 0 end - if #tiles > 0 then - for i = 1, #tiles, 1 do - tiles[i]:remove() - end - end local level = json.decodeFile(_file) local width = 0 local height = 0 diff --git a/Source/Player.lua b/Source/Player.lua index 7493327..a8652bf 100644 --- a/Source/Player.lua +++ b/Source/Player.lua @@ -100,12 +100,13 @@ local function playerWin() totalEnergy = 0 showEnergy = false energy = 0 + killBlades() + killPlayer() + removeMap() if mode == "game" and next then playdate.datastore.delete("savegame") playdate.datastore.write({savedLevel=map,savedDeaths=deaths},"savegame") next = nil - killBlades() - killPlayer() addMapSave(map) else mainMenuCreation() diff --git a/Source/Saws.lua b/Source/Saws.lua index fef69e5..7380f71 100644 --- a/Source/Saws.lua +++ b/Source/Saws.lua @@ -18,8 +18,8 @@ local fuels = {} function loadBlades(_blades) for i = 1, #_blades,1 do local b = _blades[i] - b.start = playdate.geometry.point.new(b.start.x,b.start.y) - b.ends = playdate.geometry.point.new(b.ends.x,b.ends.y) + b.start = playdate.geometry.point.new(b.start.x+8,b.start.y+8) + b.ends = playdate.geometry.point.new(b.ends.x+8,b.ends.y+8) b.saw = gfx.sprite.new(loopSaws:image()) b.saw:moveTo(b.start) b.saw:setCollideRect(0,0,16,16) diff --git a/Source/data/LEVEL.json b/Source/data/LEVEL.json index e0dbf87..9ef7064 100644 --- a/Source/data/LEVEL.json +++ b/Source/data/LEVEL.json @@ -13,9 +13,7 @@ "rotators": [ {"x":1368,"y":1624,"speed":-0.5,"arms":1,"armlen":4} ], - "saws": [ - {"speed":2,"start":{"x":1560,"y":1640},"ends":{"x":1560,"y":1720}} - ], + "saws": [], "tiles": [ { "t":2, diff --git a/Source/data/ROCKETBITS/LEVEL2.json b/Source/data/ROCKETBITS/LEVEL2.json deleted file mode 100644 index e89c990..0000000 --- a/Source/data/ROCKETBITS/LEVEL2.json +++ /dev/null @@ -1 +0,0 @@ -{"tiles":[{"t":1,"x":29,"y":1},{"t":1,"x":30,"y":1},{"t":1,"x":31,"y":1},{"t":1,"x":32,"y":1},{"t":1,"x":33,"y":1},{"t":1,"x":34,"y":1},{"t":1,"x":29,"y":2},{"t":1,"x":30,"y":2},{"t":1,"x":31,"y":2},{"t":1,"x":32,"y":2},{"t":1,"x":33,"y":2},{"t":1,"x":34,"y":2},{"t":1,"x":29,"y":3},{"t":1,"x":30,"y":3},{"t":1,"x":31,"y":3},{"t":1,"x":32,"y":3},{"t":1,"x":33,"y":3},{"t":1,"x":34,"y":3},{"t":1,"x":29,"y":4},{"t":1,"x":30,"y":4},{"t":1,"x":31,"y":4},{"t":1,"x":32,"y":4},{"t":1,"x":33,"y":4},{"t":1,"x":34,"y":4},{"t":1,"x":26,"y":5},{"t":1,"x":27,"y":5},{"t":1,"x":28,"y":5},{"t":1,"x":29,"y":5},{"t":1,"x":30,"y":5},{"t":1,"x":31,"y":5},{"t":1,"x":32,"y":5},{"t":1,"x":33,"y":5},{"t":1,"x":34,"y":5},{"t":1,"x":35,"y":5},{"t":1,"x":36,"y":5},{"t":1,"x":37,"y":5},{"t":1,"x":26,"y":6},{"t":1,"x":37,"y":6},{"t":1,"x":21,"y":7},{"t":1,"x":22,"y":7},{"t":1,"x":23,"y":7},{"t":1,"x":24,"y":7},{"t":1,"x":25,"y":7},{"t":1,"x":26,"y":7},{"t":1,"x":37,"y":7},{"t":1,"x":26,"y":8},{"t":1,"x":37,"y":8},{"t":1,"x":26,"y":9},{"t":1,"x":37,"y":9},{"t":1,"x":26,"y":10},{"t":1,"x":37,"y":10},{"t":1,"x":26,"y":11},{"t":1,"x":37,"y":11},{"t":1,"x":11,"y":12},{"t":1,"x":12,"y":12},{"t":1,"x":13,"y":12},{"t":1,"x":14,"y":12},{"t":1,"x":15,"y":12},{"t":1,"x":16,"y":12},{"t":1,"x":17,"y":12},{"t":1,"x":18,"y":12},{"t":1,"x":19,"y":12},{"t":1,"x":20,"y":12},{"t":1,"x":21,"y":12},{"t":1,"x":26,"y":12},{"t":1,"x":37,"y":12},{"t":1,"x":11,"y":13},{"t":1,"x":12,"y":13},{"t":1,"x":13,"y":13},{"t":1,"x":14,"y":13},{"t":1,"x":15,"y":13},{"t":1,"x":16,"y":13},{"t":1,"x":26,"y":13},{"t":1,"x":37,"y":13},{"t":1,"x":11,"y":14},{"t":1,"x":12,"y":14},{"t":1,"x":13,"y":14},{"t":1,"x":14,"y":14},{"t":1,"x":15,"y":14},{"t":1,"x":16,"y":14},{"t":1,"x":26,"y":14},{"t":1,"x":37,"y":14},{"t":1,"x":11,"y":15},{"t":1,"x":12,"y":15},{"t":1,"x":13,"y":15},{"t":1,"x":14,"y":15},{"t":1,"x":15,"y":15},{"t":1,"x":16,"y":15},{"t":1,"x":26,"y":15},{"t":1,"x":37,"y":15},{"t":1,"x":11,"y":16},{"t":1,"x":12,"y":16},{"t":1,"x":13,"y":16},{"t":1,"x":14,"y":16},{"t":1,"x":15,"y":16},{"t":1,"x":16,"y":16},{"t":1,"x":26,"y":16},{"t":1,"x":37,"y":16},{"t":1,"x":11,"y":17},{"t":1,"x":12,"y":17},{"t":1,"x":13,"y":17},{"t":1,"x":14,"y":17},{"t":1,"x":15,"y":17},{"t":1,"x":16,"y":17},{"t":1,"x":24,"y":17},{"t":1,"x":25,"y":17},{"t":1,"x":26,"y":17},{"t":1,"x":37,"y":17},{"t":1,"x":11,"y":18},{"t":1,"x":12,"y":18},{"t":1,"x":13,"y":18},{"t":1,"x":14,"y":18},{"t":1,"x":15,"y":18},{"t":1,"x":16,"y":18},{"t":1,"x":21,"y":18},{"t":1,"x":22,"y":18},{"t":1,"x":23,"y":18},{"t":1,"x":24,"y":18},{"t":1,"x":25,"y":18},{"t":1,"x":26,"y":18},{"t":1,"x":37,"y":18},{"t":1,"x":11,"y":19},{"t":1,"x":12,"y":19},{"t":1,"x":13,"y":19},{"t":1,"x":14,"y":19},{"t":1,"x":15,"y":19},{"t":1,"x":16,"y":19},{"t":1,"x":21,"y":19},{"t":1,"x":26,"y":19},{"t":1,"x":37,"y":19},{"t":1,"x":11,"y":20},{"t":1,"x":14,"y":20},{"t":1,"x":15,"y":20},{"t":1,"x":16,"y":20},{"t":1,"x":21,"y":20},{"t":1,"x":23,"y":20},{"t":1,"x":24,"y":20},{"t":1,"x":26,"y":20},{"t":1,"x":37,"y":20},{"t":1,"x":11,"y":21},{"t":1,"x":14,"y":21},{"t":1,"x":15,"y":21},{"t":1,"x":16,"y":21},{"t":1,"x":21,"y":21},{"t":1,"x":22,"y":21},{"t":1,"x":23,"y":21},{"t":1,"x":24,"y":21},{"t":1,"x":25,"y":21},{"t":1,"x":26,"y":21},{"t":1,"x":37,"y":21},{"t":1,"x":11,"y":22},{"t":1,"x":14,"y":22},{"t":1,"x":15,"y":22},{"t":1,"x":16,"y":22},{"t":1,"x":26,"y":22},{"t":1,"x":37,"y":22},{"t":1,"x":11,"y":23},{"t":1,"x":16,"y":23},{"t":1,"x":26,"y":23},{"t":1,"x":37,"y":23},{"t":1,"x":11,"y":24},{"t":1,"x":16,"y":24},{"t":1,"x":17,"y":24},{"t":1,"x":26,"y":24},{"t":1,"x":37,"y":24},{"t":1,"x":11,"y":25},{"t":1,"x":12,"y":25},{"t":1,"x":13,"y":25},{"t":1,"x":16,"y":25},{"t":1,"x":17,"y":25},{"t":1,"x":18,"y":25},{"t":1,"x":26,"y":25},{"t":1,"x":37,"y":25},{"t":1,"x":11,"y":26},{"t":1,"x":12,"y":26},{"t":1,"x":13,"y":26},{"t":1,"x":14,"y":26},{"t":1,"x":16,"y":26},{"t":1,"x":17,"y":26},{"t":1,"x":18,"y":26},{"t":1,"x":19,"y":26},{"t":1,"x":20,"y":26},{"t":1,"x":21,"y":26},{"t":1,"x":26,"y":26},{"t":1,"x":37,"y":26},{"t":1,"x":11,"y":27},{"t":1,"x":12,"y":27},{"t":1,"x":13,"y":27},{"t":1,"x":14,"y":27},{"t":1,"x":15,"y":27},{"t":1,"x":16,"y":27},{"t":1,"x":17,"y":27},{"t":1,"x":18,"y":27},{"t":1,"x":19,"y":27},{"t":1,"x":20,"y":27},{"t":1,"x":21,"y":27},{"t":1,"x":26,"y":27},{"t":1,"x":37,"y":27},{"t":1,"x":11,"y":28},{"t":1,"x":12,"y":28},{"t":1,"x":13,"y":28},{"t":1,"x":14,"y":28},{"t":1,"x":15,"y":28},{"t":1,"x":16,"y":28},{"t":1,"x":17,"y":28},{"t":1,"x":18,"y":28},{"t":1,"x":19,"y":28},{"t":1,"x":20,"y":28},{"t":1,"x":21,"y":28},{"t":1,"x":26,"y":28},{"t":1,"x":37,"y":28},{"t":1,"x":2,"y":29},{"t":1,"x":3,"y":29},{"t":1,"x":4,"y":29},{"t":1,"x":5,"y":29},{"t":1,"x":6,"y":29},{"t":1,"x":7,"y":29},{"t":1,"x":8,"y":29},{"t":1,"x":9,"y":29},{"t":1,"x":10,"y":29},{"t":1,"x":11,"y":29},{"t":1,"x":12,"y":29},{"t":1,"x":13,"y":29},{"t":1,"x":14,"y":29},{"t":1,"x":15,"y":29},{"t":1,"x":16,"y":29},{"t":1,"x":17,"y":29},{"t":1,"x":18,"y":29},{"t":1,"x":19,"y":29},{"t":1,"x":20,"y":29},{"t":1,"x":21,"y":29},{"t":1,"x":26,"y":29},{"t":1,"x":37,"y":29},{"t":1,"x":16,"y":30},{"t":1,"x":21,"y":30},{"t":1,"x":26,"y":30},{"t":1,"x":37,"y":30},{"t":1,"x":16,"y":31},{"t":1,"x":26,"y":31},{"t":1,"x":35,"y":31},{"t":1,"x":37,"y":31},{"t":1,"x":16,"y":32},{"t":1,"x":17,"y":32},{"t":1,"x":26,"y":32},{"t":1,"x":27,"y":32},{"t":1,"x":28,"y":32},{"t":1,"x":29,"y":32},{"t":1,"x":34,"y":32},{"t":1,"x":35,"y":32},{"t":1,"x":36,"y":32},{"t":1,"x":37,"y":32},{"t":1,"x":38,"y":32},{"t":1,"x":39,"y":32},{"t":1,"x":40,"y":32},{"t":1,"x":41,"y":32},{"t":1,"x":42,"y":32},{"t":1,"x":43,"y":32},{"t":1,"x":44,"y":32},{"t":1,"x":45,"y":32},{"t":1,"x":46,"y":32},{"t":1,"x":47,"y":32},{"t":1,"x":48,"y":32},{"t":1,"x":49,"y":32},{"t":1,"x":50,"y":32},{"t":1,"x":51,"y":32},{"t":1,"x":52,"y":32},{"t":1,"x":53,"y":32},{"t":1,"x":54,"y":32},{"t":1,"x":16,"y":33},{"t":1,"x":17,"y":33},{"t":1,"x":18,"y":33},{"t":1,"x":19,"y":33},{"t":1,"x":34,"y":33},{"t":1,"x":36,"y":33},{"t":1,"x":41,"y":33},{"t":1,"x":16,"y":34},{"t":1,"x":17,"y":34},{"t":1,"x":18,"y":34},{"t":1,"x":19,"y":34},{"t":1,"x":20,"y":34},{"t":1,"x":34,"y":34},{"t":1,"x":41,"y":34},{"t":1,"x":16,"y":35},{"t":1,"x":17,"y":35},{"t":1,"x":18,"y":35},{"t":1,"x":19,"y":35},{"t":1,"x":20,"y":35},{"t":1,"x":34,"y":35},{"t":1,"x":41,"y":35},{"t":1,"x":16,"y":36},{"t":1,"x":17,"y":36},{"t":1,"x":19,"y":36},{"t":1,"x":20,"y":36},{"t":1,"x":34,"y":36},{"t":1,"x":37,"y":36},{"t":1,"x":38,"y":36},{"t":1,"x":41,"y":36},{"t":1,"x":1,"y":37},{"t":1,"x":2,"y":37},{"t":1,"x":3,"y":37},{"t":1,"x":4,"y":37},{"t":1,"x":5,"y":37},{"t":1,"x":6,"y":37},{"t":1,"x":7,"y":37},{"t":1,"x":8,"y":37},{"t":1,"x":9,"y":37},{"t":1,"x":10,"y":37},{"t":1,"x":11,"y":37},{"t":1,"x":16,"y":37},{"t":1,"x":20,"y":37},{"t":1,"x":34,"y":37},{"t":1,"x":37,"y":37},{"t":1,"x":38,"y":37},{"t":1,"x":39,"y":37},{"t":1,"x":41,"y":37},{"t":1,"x":11,"y":38},{"t":1,"x":16,"y":38},{"t":1,"x":18,"y":38},{"t":1,"x":20,"y":38},{"t":1,"x":34,"y":38},{"t":1,"x":36,"y":38},{"t":1,"x":37,"y":38},{"t":1,"x":38,"y":38},{"t":1,"x":39,"y":38},{"t":1,"x":40,"y":38},{"t":1,"x":41,"y":38},{"t":1,"x":11,"y":39},{"t":1,"x":12,"y":39},{"t":1,"x":13,"y":39},{"t":1,"x":14,"y":39},{"t":1,"x":15,"y":39},{"t":1,"x":16,"y":39},{"t":1,"x":17,"y":39},{"t":1,"x":18,"y":39},{"t":1,"x":19,"y":39},{"t":1,"x":20,"y":39},{"t":1,"x":21,"y":39},{"t":1,"x":22,"y":39},{"t":1,"x":23,"y":39},{"t":1,"x":24,"y":39},{"t":1,"x":25,"y":39},{"t":1,"x":26,"y":39},{"t":1,"x":27,"y":39},{"t":1,"x":28,"y":39},{"t":1,"x":29,"y":39},{"t":1,"x":30,"y":39},{"t":1,"x":31,"y":39},{"t":1,"x":32,"y":39},{"t":1,"x":33,"y":39},{"t":1,"x":34,"y":39},{"t":1,"x":35,"y":39},{"t":1,"x":36,"y":39},{"t":1,"x":37,"y":39},{"t":1,"x":38,"y":39},{"t":1,"x":39,"y":39},{"t":1,"x":40,"y":39},{"t":1,"x":41,"y":39},{"t":1,"x":16,"y":40},{"t":1,"x":17,"y":40},{"t":1,"x":18,"y":40},{"t":1,"x":19,"y":40},{"t":1,"x":20,"y":40},{"t":1,"x":21,"y":40},{"t":1,"x":22,"y":40},{"t":1,"x":23,"y":40},{"t":1,"x":24,"y":40},{"t":1,"x":25,"y":40},{"t":1,"x":26,"y":40},{"t":1,"x":27,"y":40},{"t":1,"x":28,"y":40},{"t":1,"x":29,"y":40},{"t":1,"x":30,"y":40},{"t":1,"x":31,"y":40},{"t":1,"x":32,"y":40},{"t":1,"x":33,"y":40},{"t":1,"x":34,"y":40},{"t":1,"x":35,"y":40},{"t":1,"x":36,"y":40},{"t":1,"x":37,"y":40},{"t":1,"x":38,"y":40},{"t":1,"x":41,"y":40},{"t":1,"x":16,"y":41},{"t":1,"x":17,"y":41},{"t":1,"x":18,"y":41},{"t":1,"x":19,"y":41},{"t":1,"x":20,"y":41},{"t":1,"x":21,"y":41},{"t":1,"x":22,"y":41},{"t":1,"x":23,"y":41},{"t":1,"x":24,"y":41},{"t":1,"x":25,"y":41},{"t":1,"x":26,"y":41},{"t":1,"x":27,"y":41},{"t":1,"x":28,"y":41},{"t":1,"x":29,"y":41},{"t":1,"x":30,"y":41},{"t":1,"x":31,"y":41},{"t":1,"x":32,"y":41},{"t":1,"x":33,"y":41},{"t":1,"x":34,"y":41},{"t":1,"x":35,"y":41},{"t":1,"x":36,"y":41},{"t":1,"x":37,"y":41},{"t":1,"x":38,"y":41},{"t":1,"x":41,"y":41},{"t":1,"x":16,"y":42},{"t":1,"x":17,"y":42},{"t":1,"x":18,"y":42},{"t":1,"x":19,"y":42},{"t":1,"x":20,"y":42},{"t":1,"x":21,"y":42},{"t":1,"x":22,"y":42},{"t":1,"x":23,"y":42},{"t":1,"x":24,"y":42},{"t":1,"x":25,"y":42},{"t":1,"x":26,"y":42},{"t":1,"x":27,"y":42},{"t":1,"x":28,"y":42},{"t":1,"x":29,"y":42},{"t":1,"x":30,"y":42},{"t":1,"x":31,"y":42},{"t":1,"x":32,"y":42},{"t":1,"x":33,"y":42},{"t":1,"x":34,"y":42},{"t":1,"x":35,"y":42},{"t":1,"x":36,"y":42},{"t":1,"x":37,"y":42},{"t":1,"x":38,"y":42},{"t":1,"x":41,"y":42},{"t":1,"x":16,"y":43},{"t":1,"x":38,"y":43},{"t":1,"x":41,"y":43},{"t":1,"x":16,"y":44},{"t":1,"x":38,"y":44},{"t":1,"x":41,"y":44},{"t":1,"x":16,"y":45},{"t":1,"x":38,"y":45},{"t":1,"x":41,"y":45},{"t":1,"x":16,"y":46},{"t":1,"x":38,"y":46},{"t":1,"x":41,"y":46},{"t":1,"x":16,"y":47},{"t":1,"x":38,"y":47},{"t":1,"x":41,"y":47},{"t":1,"x":16,"y":48},{"t":1,"x":38,"y":48},{"t":1,"x":41,"y":48},{"t":1,"x":38,"y":49},{"t":1,"x":41,"y":49}]} \ No newline at end of file diff --git a/Source/data/ROCKETBITS/LEVEL3.json b/Source/data/ROCKETBITS/LEVEL3.json deleted file mode 100644 index a1f3adf..0000000 --- a/Source/data/ROCKETBITS/LEVEL3.json +++ /dev/null @@ -1 +0,0 @@ -{"tiles":[{"t":1,"x":40,"y":1},{"t":1,"x":40,"y":2},{"t":1,"x":35,"y":3},{"t":1,"x":40,"y":3},{"t":1,"x":35,"y":4},{"t":1,"x":40,"y":4},{"t":1,"x":35,"y":5},{"t":1,"x":40,"y":5},{"t":1,"x":16,"y":6},{"t":1,"x":35,"y":6},{"t":1,"x":40,"y":6},{"t":1,"x":16,"y":7},{"t":1,"x":35,"y":7},{"t":1,"x":40,"y":7},{"t":1,"x":16,"y":8},{"t":1,"x":35,"y":8},{"t":1,"x":40,"y":8},{"t":1,"x":16,"y":9},{"t":1,"x":35,"y":9},{"t":1,"x":40,"y":9},{"t":1,"x":16,"y":10},{"t":1,"x":17,"y":10},{"t":1,"x":18,"y":10},{"t":1,"x":19,"y":10},{"t":1,"x":20,"y":10},{"t":1,"x":21,"y":10},{"t":1,"x":22,"y":10},{"t":1,"x":23,"y":10},{"t":1,"x":24,"y":10},{"t":1,"x":25,"y":10},{"t":1,"x":35,"y":10},{"t":1,"x":40,"y":10},{"t":1,"x":41,"y":10},{"t":1,"x":42,"y":10},{"t":1,"x":43,"y":10},{"t":1,"x":44,"y":10},{"t":1,"x":45,"y":10},{"t":1,"x":16,"y":11},{"t":1,"x":17,"y":11},{"t":1,"x":18,"y":11},{"t":1,"x":19,"y":11},{"t":1,"x":20,"y":11},{"t":1,"x":21,"y":11},{"t":1,"x":22,"y":11},{"t":1,"x":23,"y":11},{"t":1,"x":24,"y":11},{"t":1,"x":25,"y":11},{"t":1,"x":35,"y":11},{"t":1,"x":45,"y":11},{"t":1,"x":16,"y":12},{"t":1,"x":17,"y":12},{"t":1,"x":18,"y":12},{"t":1,"x":19,"y":12},{"t":1,"x":20,"y":12},{"t":1,"x":21,"y":12},{"t":1,"x":22,"y":12},{"t":1,"x":23,"y":12},{"t":1,"x":24,"y":12},{"t":1,"x":25,"y":12},{"t":1,"x":35,"y":12},{"t":1,"x":45,"y":12},{"t":1,"x":16,"y":13},{"t":1,"x":17,"y":13},{"t":1,"x":18,"y":13},{"t":1,"x":19,"y":13},{"t":1,"x":20,"y":13},{"t":1,"x":21,"y":13},{"t":1,"x":22,"y":13},{"t":1,"x":23,"y":13},{"t":1,"x":24,"y":13},{"t":1,"x":25,"y":13},{"t":1,"x":35,"y":13},{"t":1,"x":45,"y":13},{"t":1,"x":16,"y":14},{"t":1,"x":17,"y":14},{"t":1,"x":18,"y":14},{"t":1,"x":19,"y":14},{"t":1,"x":20,"y":14},{"t":1,"x":21,"y":14},{"t":1,"x":22,"y":14},{"t":1,"x":23,"y":14},{"t":1,"x":24,"y":14},{"t":1,"x":25,"y":14},{"t":1,"x":26,"y":14},{"t":1,"x":27,"y":14},{"t":1,"x":28,"y":14},{"t":1,"x":29,"y":14},{"t":1,"x":30,"y":14},{"t":1,"x":31,"y":14},{"t":1,"x":32,"y":14},{"t":1,"x":33,"y":14},{"t":1,"x":34,"y":14},{"t":1,"x":35,"y":14},{"t":1,"x":45,"y":14},{"t":1,"x":16,"y":15},{"t":1,"x":17,"y":15},{"t":1,"x":18,"y":15},{"t":1,"x":19,"y":15},{"t":1,"x":20,"y":15},{"t":1,"x":21,"y":15},{"t":1,"x":22,"y":15},{"t":1,"x":23,"y":15},{"t":1,"x":24,"y":15},{"t":1,"x":25,"y":15},{"t":1,"x":26,"y":15},{"t":1,"x":27,"y":15},{"t":1,"x":28,"y":15},{"t":1,"x":29,"y":15},{"t":1,"x":30,"y":15},{"t":1,"x":31,"y":15},{"t":1,"x":32,"y":15},{"t":1,"x":33,"y":15},{"t":1,"x":34,"y":15},{"t":1,"x":35,"y":15},{"t":1,"x":45,"y":15},{"t":1,"x":16,"y":16},{"t":1,"x":17,"y":16},{"t":1,"x":18,"y":16},{"t":1,"x":19,"y":16},{"t":1,"x":20,"y":16},{"t":1,"x":21,"y":16},{"t":1,"x":22,"y":16},{"t":1,"x":23,"y":16},{"t":1,"x":24,"y":16},{"t":1,"x":25,"y":16},{"t":1,"x":26,"y":16},{"t":1,"x":27,"y":16},{"t":1,"x":28,"y":16},{"t":1,"x":29,"y":16},{"t":1,"x":30,"y":16},{"t":1,"x":31,"y":16},{"t":1,"x":32,"y":16},{"t":1,"x":33,"y":16},{"t":1,"x":34,"y":16},{"t":1,"x":35,"y":16},{"t":1,"x":45,"y":16},{"t":1,"x":16,"y":17},{"t":1,"x":17,"y":17},{"t":1,"x":18,"y":17},{"t":1,"x":19,"y":17},{"t":1,"x":20,"y":17},{"t":1,"x":21,"y":17},{"t":1,"x":22,"y":17},{"t":1,"x":23,"y":17},{"t":1,"x":24,"y":17},{"t":1,"x":25,"y":17},{"t":1,"x":26,"y":17},{"t":1,"x":27,"y":17},{"t":1,"x":28,"y":17},{"t":1,"x":29,"y":17},{"t":1,"x":30,"y":17},{"t":1,"x":31,"y":17},{"t":1,"x":32,"y":17},{"t":1,"x":33,"y":17},{"t":1,"x":34,"y":17},{"t":1,"x":35,"y":17},{"t":1,"x":45,"y":17},{"t":1,"x":7,"y":18},{"t":1,"x":8,"y":18},{"t":1,"x":9,"y":18},{"t":1,"x":10,"y":18},{"t":1,"x":11,"y":18},{"t":1,"x":12,"y":18},{"t":1,"x":13,"y":18},{"t":1,"x":14,"y":18},{"t":1,"x":15,"y":18},{"t":1,"x":16,"y":18},{"t":1,"x":17,"y":18},{"t":1,"x":18,"y":18},{"t":1,"x":19,"y":18},{"t":1,"x":20,"y":18},{"t":1,"x":21,"y":18},{"t":1,"x":22,"y":18},{"t":1,"x":23,"y":18},{"t":1,"x":24,"y":18},{"t":1,"x":25,"y":18},{"t":1,"x":26,"y":18},{"t":1,"x":27,"y":18},{"t":1,"x":28,"y":18},{"t":1,"x":29,"y":18},{"t":1,"x":30,"y":18},{"t":1,"x":31,"y":18},{"t":1,"x":32,"y":18},{"t":1,"x":33,"y":18},{"t":1,"x":34,"y":18},{"t":1,"x":35,"y":18},{"t":1,"x":36,"y":18},{"t":1,"x":37,"y":18},{"t":1,"x":38,"y":18},{"t":1,"x":39,"y":18},{"t":1,"x":40,"y":18},{"t":1,"x":41,"y":18},{"t":1,"x":42,"y":18},{"t":1,"x":43,"y":18},{"t":1,"x":44,"y":18},{"t":1,"x":45,"y":18},{"t":1,"x":46,"y":18},{"t":1,"x":47,"y":18},{"t":1,"x":48,"y":18},{"t":1,"x":49,"y":18},{"t":1,"x":50,"y":18},{"t":1,"x":7,"y":19},{"t":1,"x":50,"y":19},{"t":1,"x":7,"y":20},{"t":1,"x":50,"y":20},{"t":1,"x":7,"y":21},{"t":1,"x":50,"y":21},{"t":1,"x":7,"y":22},{"t":1,"x":50,"y":22},{"t":1,"x":7,"y":23},{"t":1,"x":50,"y":23},{"t":1,"x":7,"y":24},{"t":1,"x":8,"y":24},{"t":1,"x":9,"y":24},{"t":1,"x":10,"y":24},{"t":1,"x":13,"y":24},{"t":1,"x":14,"y":24},{"t":1,"x":15,"y":24},{"t":1,"x":16,"y":24},{"t":1,"x":17,"y":24},{"t":1,"x":18,"y":24},{"t":1,"x":19,"y":24},{"t":1,"x":20,"y":24},{"t":1,"x":21,"y":24},{"t":1,"x":22,"y":24},{"t":1,"x":23,"y":24},{"t":1,"x":24,"y":24},{"t":1,"x":25,"y":24},{"t":1,"x":26,"y":24},{"t":1,"x":27,"y":24},{"t":1,"x":28,"y":24},{"t":1,"x":29,"y":24},{"t":1,"x":30,"y":24},{"t":1,"x":31,"y":24},{"t":1,"x":32,"y":24},{"t":1,"x":33,"y":24},{"t":1,"x":34,"y":24},{"t":1,"x":35,"y":24},{"t":1,"x":36,"y":24},{"t":1,"x":37,"y":24},{"t":1,"x":38,"y":24},{"t":1,"x":39,"y":24},{"t":1,"x":40,"y":24},{"t":1,"x":41,"y":24},{"t":1,"x":42,"y":24},{"t":1,"x":43,"y":24},{"t":1,"x":44,"y":24},{"t":1,"x":47,"y":24},{"t":1,"x":48,"y":24},{"t":1,"x":49,"y":24},{"t":1,"x":50,"y":24},{"t":1,"x":7,"y":25},{"t":1,"x":8,"y":25},{"t":1,"x":9,"y":25},{"t":1,"x":10,"y":25},{"t":1,"x":13,"y":25},{"t":1,"x":44,"y":25},{"t":1,"x":47,"y":25},{"t":1,"x":48,"y":25},{"t":1,"x":49,"y":25},{"t":1,"x":50,"y":25},{"t":1,"x":7,"y":26},{"t":1,"x":8,"y":26},{"t":1,"x":9,"y":26},{"t":1,"x":10,"y":26},{"t":1,"x":13,"y":26},{"t":1,"x":44,"y":26},{"t":1,"x":47,"y":26},{"t":1,"x":48,"y":26},{"t":1,"x":49,"y":26},{"t":1,"x":50,"y":26},{"t":1,"x":7,"y":27},{"t":1,"x":8,"y":27},{"t":1,"x":9,"y":27},{"t":1,"x":10,"y":27},{"t":1,"x":13,"y":27},{"t":1,"x":44,"y":27},{"t":1,"x":47,"y":27},{"t":1,"x":48,"y":27},{"t":1,"x":49,"y":27},{"t":1,"x":50,"y":27},{"t":1,"x":51,"y":27},{"t":1,"x":52,"y":27},{"t":1,"x":53,"y":27},{"t":1,"x":54,"y":27},{"t":1,"x":55,"y":27},{"t":1,"x":56,"y":27},{"t":1,"x":57,"y":27},{"t":1,"x":58,"y":27},{"t":1,"x":59,"y":27},{"t":1,"x":60,"y":27},{"t":1,"x":61,"y":27},{"t":1,"x":62,"y":27},{"t":1,"x":63,"y":27},{"t":1,"x":64,"y":27},{"t":1,"x":7,"y":28},{"t":1,"x":8,"y":28},{"t":1,"x":9,"y":28},{"t":1,"x":10,"y":28},{"t":1,"x":13,"y":28},{"t":1,"x":44,"y":28},{"t":1,"x":50,"y":28},{"t":1,"x":7,"y":29},{"t":1,"x":8,"y":29},{"t":1,"x":9,"y":29},{"t":1,"x":13,"y":29},{"t":1,"x":35,"y":29},{"t":1,"x":36,"y":29},{"t":1,"x":37,"y":29},{"t":1,"x":44,"y":29},{"t":1,"x":50,"y":29},{"t":1,"x":7,"y":30},{"t":1,"x":8,"y":30},{"t":1,"x":9,"y":30},{"t":1,"x":13,"y":30},{"t":1,"x":21,"y":30},{"t":1,"x":22,"y":30},{"t":1,"x":35,"y":30},{"t":1,"x":36,"y":30},{"t":1,"x":37,"y":30},{"t":1,"x":44,"y":30},{"t":1,"x":50,"y":30},{"t":1,"x":7,"y":31},{"t":1,"x":8,"y":31},{"t":1,"x":13,"y":31},{"t":1,"x":19,"y":31},{"t":1,"x":20,"y":31},{"t":1,"x":21,"y":31},{"t":1,"x":22,"y":31},{"t":1,"x":23,"y":31},{"t":1,"x":24,"y":31},{"t":1,"x":25,"y":31},{"t":1,"x":32,"y":31},{"t":1,"x":33,"y":31},{"t":1,"x":34,"y":31},{"t":1,"x":35,"y":31},{"t":1,"x":36,"y":31},{"t":1,"x":37,"y":31},{"t":1,"x":38,"y":31},{"t":1,"x":44,"y":31},{"t":1,"x":50,"y":31},{"t":1,"x":7,"y":32},{"t":1,"x":8,"y":32},{"t":1,"x":13,"y":32},{"t":1,"x":19,"y":32},{"t":1,"x":25,"y":32},{"t":1,"x":32,"y":32},{"t":1,"x":38,"y":32},{"t":1,"x":44,"y":32},{"t":1,"x":50,"y":32},{"t":1,"x":7,"y":33},{"t":1,"x":8,"y":33},{"t":1,"x":13,"y":33},{"t":1,"x":19,"y":33},{"t":1,"x":38,"y":33},{"t":1,"x":44,"y":33},{"t":1,"x":50,"y":33},{"t":1,"x":7,"y":34},{"t":1,"x":13,"y":34},{"t":1,"x":19,"y":34},{"t":1,"x":38,"y":34},{"t":1,"x":44,"y":34},{"t":1,"x":50,"y":34},{"t":1,"x":7,"y":35},{"t":1,"x":13,"y":35},{"t":1,"x":19,"y":35},{"t":1,"x":29,"y":35},{"t":1,"x":30,"y":35},{"t":1,"x":38,"y":35},{"t":1,"x":44,"y":35},{"t":1,"x":50,"y":35},{"t":1,"x":7,"y":36},{"t":1,"x":13,"y":36},{"t":1,"x":19,"y":36},{"t":1,"x":26,"y":36},{"t":1,"x":27,"y":36},{"t":1,"x":28,"y":36},{"t":1,"x":29,"y":36},{"t":1,"x":30,"y":36},{"t":1,"x":31,"y":36},{"t":1,"x":38,"y":36},{"t":1,"x":44,"y":36},{"t":1,"x":50,"y":36},{"t":1,"x":7,"y":37},{"t":1,"x":8,"y":37},{"t":1,"x":19,"y":37},{"t":1,"x":26,"y":37},{"t":1,"x":27,"y":37},{"t":1,"x":28,"y":37},{"t":1,"x":29,"y":37},{"t":1,"x":30,"y":37},{"t":1,"x":31,"y":37},{"t":1,"x":38,"y":37},{"t":1,"x":50,"y":37},{"t":1,"x":7,"y":38},{"t":1,"x":8,"y":38},{"t":1,"x":19,"y":38},{"t":1,"x":26,"y":38},{"t":1,"x":27,"y":38},{"t":1,"x":28,"y":38},{"t":1,"x":29,"y":38},{"t":1,"x":30,"y":38},{"t":1,"x":31,"y":38},{"t":1,"x":38,"y":38},{"t":1,"x":50,"y":38},{"t":1,"x":7,"y":39},{"t":1,"x":8,"y":39},{"t":1,"x":9,"y":39},{"t":1,"x":19,"y":39},{"t":1,"x":26,"y":39},{"t":1,"x":27,"y":39},{"t":1,"x":28,"y":39},{"t":1,"x":29,"y":39},{"t":1,"x":30,"y":39},{"t":1,"x":31,"y":39},{"t":1,"x":38,"y":39},{"t":1,"x":50,"y":39},{"t":1,"x":51,"y":39},{"t":1,"x":52,"y":39},{"t":1,"x":53,"y":39},{"t":1,"x":54,"y":39},{"t":1,"x":55,"y":39},{"t":1,"x":56,"y":39},{"t":1,"x":57,"y":39},{"t":1,"x":58,"y":39},{"t":1,"x":59,"y":39},{"t":1,"x":7,"y":40},{"t":1,"x":8,"y":40},{"t":1,"x":9,"y":40},{"t":1,"x":10,"y":40},{"t":1,"x":19,"y":40},{"t":1,"x":20,"y":40},{"t":1,"x":26,"y":40},{"t":1,"x":27,"y":40},{"t":1,"x":28,"y":40},{"t":1,"x":29,"y":40},{"t":1,"x":30,"y":40},{"t":1,"x":31,"y":40},{"t":1,"x":38,"y":40},{"t":1,"x":50,"y":40},{"t":1,"x":52,"y":40},{"t":1,"x":57,"y":40},{"t":1,"x":59,"y":40},{"t":1,"x":7,"y":41},{"t":1,"x":8,"y":41},{"t":1,"x":9,"y":41},{"t":1,"x":10,"y":41},{"t":1,"x":11,"y":41},{"t":1,"x":12,"y":41},{"t":1,"x":13,"y":41},{"t":1,"x":19,"y":41},{"t":1,"x":20,"y":41},{"t":1,"x":21,"y":41},{"t":1,"x":26,"y":41},{"t":1,"x":27,"y":41},{"t":1,"x":28,"y":41},{"t":1,"x":29,"y":41},{"t":1,"x":30,"y":41},{"t":1,"x":31,"y":41},{"t":1,"x":38,"y":41},{"t":1,"x":44,"y":41},{"t":1,"x":50,"y":41},{"t":1,"x":59,"y":41},{"t":1,"x":7,"y":42},{"t":1,"x":13,"y":42},{"t":1,"x":19,"y":42},{"t":1,"x":20,"y":42},{"t":1,"x":21,"y":42},{"t":1,"x":38,"y":42},{"t":1,"x":44,"y":42},{"t":1,"x":50,"y":42},{"t":1,"x":59,"y":42},{"t":1,"x":13,"y":43},{"t":1,"x":19,"y":43},{"t":1,"x":20,"y":43},{"t":1,"x":21,"y":43},{"t":1,"x":36,"y":43},{"t":1,"x":37,"y":43},{"t":1,"x":38,"y":43},{"t":1,"x":44,"y":43},{"t":1,"x":50,"y":43},{"t":1,"x":59,"y":43},{"t":1,"x":13,"y":44},{"t":1,"x":19,"y":44},{"t":1,"x":20,"y":44},{"t":1,"x":21,"y":44},{"t":1,"x":22,"y":44},{"t":1,"x":34,"y":44},{"t":1,"x":35,"y":44},{"t":1,"x":36,"y":44},{"t":1,"x":37,"y":44},{"t":1,"x":38,"y":44},{"t":1,"x":44,"y":44},{"t":1,"x":50,"y":44},{"t":1,"x":59,"y":44},{"t":1,"x":13,"y":45},{"t":1,"x":19,"y":45},{"t":1,"x":20,"y":45},{"t":1,"x":21,"y":45},{"t":1,"x":22,"y":45},{"t":1,"x":23,"y":45},{"t":1,"x":33,"y":45},{"t":1,"x":34,"y":45},{"t":1,"x":35,"y":45},{"t":1,"x":36,"y":45},{"t":1,"x":37,"y":45},{"t":1,"x":38,"y":45},{"t":1,"x":44,"y":45},{"t":1,"x":50,"y":45},{"t":1,"x":59,"y":45},{"t":1,"x":13,"y":46},{"t":1,"x":19,"y":46},{"t":1,"x":20,"y":46},{"t":1,"x":21,"y":46},{"t":1,"x":22,"y":46},{"t":1,"x":23,"y":46},{"t":1,"x":24,"y":46},{"t":1,"x":25,"y":46},{"t":1,"x":32,"y":46},{"t":1,"x":33,"y":46},{"t":1,"x":34,"y":46},{"t":1,"x":35,"y":46},{"t":1,"x":36,"y":46},{"t":1,"x":37,"y":46},{"t":1,"x":38,"y":46},{"t":1,"x":44,"y":46},{"t":1,"x":50,"y":46},{"t":1,"x":59,"y":46},{"t":1,"x":1,"y":47},{"t":1,"x":2,"y":47},{"t":1,"x":3,"y":47},{"t":1,"x":4,"y":47},{"t":1,"x":5,"y":47},{"t":1,"x":6,"y":47},{"t":1,"x":7,"y":47},{"t":1,"x":13,"y":47},{"t":1,"x":44,"y":47},{"t":1,"x":49,"y":47},{"t":1,"x":50,"y":47},{"t":1,"x":59,"y":47},{"t":1,"x":7,"y":48},{"t":1,"x":13,"y":48},{"t":1,"x":44,"y":48},{"t":1,"x":50,"y":48},{"t":1,"x":59,"y":48},{"t":1,"x":7,"y":49},{"t":1,"x":13,"y":49},{"t":1,"x":14,"y":49},{"t":1,"x":43,"y":49},{"t":1,"x":44,"y":49},{"t":1,"x":47,"y":49},{"t":1,"x":50,"y":49},{"t":1,"x":53,"y":49},{"t":1,"x":55,"y":49},{"t":1,"x":59,"y":49},{"t":1,"x":7,"y":50},{"t":1,"x":13,"y":50},{"t":1,"x":14,"y":50},{"t":1,"x":42,"y":50},{"t":1,"x":43,"y":50},{"t":1,"x":44,"y":50},{"t":1,"x":47,"y":50},{"t":1,"x":48,"y":50},{"t":1,"x":49,"y":50},{"t":1,"x":50,"y":50},{"t":1,"x":51,"y":50},{"t":1,"x":52,"y":50},{"t":1,"x":53,"y":50},{"t":1,"x":54,"y":50},{"t":1,"x":55,"y":50},{"t":1,"x":56,"y":50},{"t":1,"x":57,"y":50},{"t":1,"x":58,"y":50},{"t":1,"x":59,"y":50},{"t":1,"x":60,"y":50},{"t":1,"x":61,"y":50},{"t":1,"x":62,"y":50},{"t":1,"x":63,"y":50},{"t":1,"x":64,"y":50},{"t":1,"x":65,"y":50},{"t":1,"x":66,"y":50},{"t":1,"x":67,"y":50},{"t":1,"x":68,"y":50},{"t":1,"x":69,"y":50},{"t":1,"x":70,"y":50},{"t":1,"x":71,"y":50},{"t":1,"x":72,"y":50},{"t":1,"x":73,"y":50},{"t":1,"x":74,"y":50},{"t":1,"x":75,"y":50},{"t":1,"x":7,"y":51},{"t":1,"x":13,"y":51},{"t":1,"x":40,"y":51},{"t":1,"x":41,"y":51},{"t":1,"x":42,"y":51},{"t":1,"x":43,"y":51},{"t":1,"x":44,"y":51},{"t":1,"x":47,"y":51},{"t":1,"x":48,"y":51},{"t":1,"x":49,"y":51},{"t":1,"x":50,"y":51},{"t":1,"x":51,"y":51},{"t":1,"x":52,"y":51},{"t":1,"x":53,"y":51},{"t":1,"x":54,"y":51},{"t":1,"x":55,"y":51},{"t":1,"x":56,"y":51},{"t":1,"x":7,"y":52},{"t":1,"x":13,"y":52},{"t":1,"x":39,"y":52},{"t":1,"x":40,"y":52},{"t":1,"x":41,"y":52},{"t":1,"x":42,"y":52},{"t":1,"x":43,"y":52},{"t":1,"x":44,"y":52},{"t":1,"x":47,"y":52},{"t":1,"x":48,"y":52},{"t":1,"x":49,"y":52},{"t":1,"x":50,"y":52},{"t":1,"x":51,"y":52},{"t":1,"x":52,"y":52},{"t":1,"x":53,"y":52},{"t":1,"x":54,"y":52},{"t":1,"x":55,"y":52},{"t":1,"x":56,"y":52},{"t":1,"x":7,"y":53},{"t":1,"x":13,"y":53},{"t":1,"x":14,"y":53},{"t":1,"x":15,"y":53},{"t":1,"x":16,"y":53},{"t":1,"x":17,"y":53},{"t":1,"x":18,"y":53},{"t":1,"x":19,"y":53},{"t":1,"x":20,"y":53},{"t":1,"x":21,"y":53},{"t":1,"x":22,"y":53},{"t":1,"x":23,"y":53},{"t":1,"x":24,"y":53},{"t":1,"x":25,"y":53},{"t":1,"x":26,"y":53},{"t":1,"x":27,"y":53},{"t":1,"x":28,"y":53},{"t":1,"x":29,"y":53},{"t":1,"x":30,"y":53},{"t":1,"x":31,"y":53},{"t":1,"x":32,"y":53},{"t":1,"x":33,"y":53},{"t":1,"x":34,"y":53},{"t":1,"x":35,"y":53},{"t":1,"x":36,"y":53},{"t":1,"x":37,"y":53},{"t":1,"x":38,"y":53},{"t":1,"x":39,"y":53},{"t":1,"x":40,"y":53},{"t":1,"x":41,"y":53},{"t":1,"x":42,"y":53},{"t":1,"x":43,"y":53},{"t":1,"x":44,"y":53},{"t":1,"x":47,"y":53},{"t":1,"x":48,"y":53},{"t":1,"x":49,"y":53},{"t":1,"x":50,"y":53},{"t":1,"x":51,"y":53},{"t":1,"x":52,"y":53},{"t":1,"x":53,"y":53},{"t":1,"x":54,"y":53},{"t":1,"x":55,"y":53},{"t":1,"x":56,"y":53},{"t":1,"x":7,"y":54},{"t":1,"x":17,"y":54},{"t":1,"x":18,"y":54},{"t":1,"x":19,"y":54},{"t":1,"x":20,"y":54},{"t":1,"x":21,"y":54},{"t":1,"x":22,"y":54},{"t":1,"x":23,"y":54},{"t":1,"x":34,"y":54},{"t":1,"x":35,"y":54},{"t":1,"x":36,"y":54},{"t":1,"x":37,"y":54},{"t":1,"x":50,"y":54},{"t":1,"x":51,"y":54},{"t":1,"x":52,"y":54},{"t":1,"x":53,"y":54},{"t":1,"x":54,"y":54},{"t":1,"x":55,"y":54},{"t":1,"x":56,"y":54},{"t":1,"x":7,"y":55},{"t":1,"x":18,"y":55},{"t":1,"x":19,"y":55},{"t":1,"x":20,"y":55},{"t":1,"x":21,"y":55},{"t":1,"x":22,"y":55},{"t":1,"x":23,"y":55},{"t":1,"x":34,"y":55},{"t":1,"x":35,"y":55},{"t":1,"x":36,"y":55},{"t":1,"x":37,"y":55},{"t":1,"x":50,"y":55},{"t":1,"x":51,"y":55},{"t":1,"x":52,"y":55},{"t":1,"x":53,"y":55},{"t":1,"x":54,"y":55},{"t":1,"x":55,"y":55},{"t":1,"x":56,"y":55},{"t":1,"x":7,"y":56},{"t":1,"x":50,"y":56},{"t":1,"x":51,"y":56},{"t":1,"x":52,"y":56},{"t":1,"x":53,"y":56},{"t":1,"x":54,"y":56},{"t":1,"x":55,"y":56},{"t":1,"x":56,"y":56},{"t":1,"x":7,"y":57},{"t":1,"x":27,"y":57},{"t":1,"x":28,"y":57},{"t":1,"x":29,"y":57},{"t":1,"x":30,"y":57},{"t":1,"x":50,"y":57},{"t":1,"x":51,"y":57},{"t":1,"x":52,"y":57},{"t":1,"x":53,"y":57},{"t":1,"x":54,"y":57},{"t":1,"x":55,"y":57},{"t":1,"x":56,"y":57},{"t":1,"x":7,"y":58},{"t":1,"x":27,"y":58},{"t":1,"x":28,"y":58},{"t":1,"x":29,"y":58},{"t":1,"x":30,"y":58},{"t":1,"x":50,"y":58},{"t":1,"x":51,"y":58},{"t":1,"x":52,"y":58},{"t":1,"x":53,"y":58},{"t":1,"x":54,"y":58},{"t":1,"x":55,"y":58},{"t":1,"x":56,"y":58},{"t":1,"x":7,"y":59},{"t":1,"x":8,"y":59},{"t":1,"x":9,"y":59},{"t":1,"x":10,"y":59},{"t":1,"x":11,"y":59},{"t":1,"x":12,"y":59},{"t":1,"x":13,"y":59},{"t":1,"x":14,"y":59},{"t":1,"x":15,"y":59},{"t":1,"x":16,"y":59},{"t":1,"x":17,"y":59},{"t":1,"x":18,"y":59},{"t":1,"x":19,"y":59},{"t":1,"x":20,"y":59},{"t":1,"x":21,"y":59},{"t":1,"x":22,"y":59},{"t":1,"x":23,"y":59},{"t":1,"x":24,"y":59},{"t":1,"x":25,"y":59},{"t":1,"x":26,"y":59},{"t":1,"x":27,"y":59},{"t":1,"x":28,"y":59},{"t":1,"x":29,"y":59},{"t":1,"x":30,"y":59},{"t":1,"x":31,"y":59},{"t":1,"x":32,"y":59},{"t":1,"x":33,"y":59},{"t":1,"x":34,"y":59},{"t":1,"x":35,"y":59},{"t":1,"x":36,"y":59},{"t":1,"x":37,"y":59},{"t":1,"x":38,"y":59},{"t":1,"x":39,"y":59},{"t":1,"x":40,"y":59},{"t":1,"x":41,"y":59},{"t":1,"x":42,"y":59},{"t":1,"x":43,"y":59},{"t":1,"x":44,"y":59},{"t":1,"x":45,"y":59},{"t":1,"x":46,"y":59},{"t":1,"x":47,"y":59},{"t":1,"x":48,"y":59},{"t":1,"x":49,"y":59},{"t":1,"x":50,"y":59},{"t":1,"x":51,"y":59},{"t":1,"x":52,"y":59},{"t":1,"x":53,"y":59},{"t":1,"x":54,"y":59},{"t":1,"x":55,"y":59},{"t":1,"x":56,"y":59}]} \ No newline at end of file diff --git a/Source/data/ROCKETBITS/LEVEL4.json b/Source/data/ROCKETBITS/LEVEL4.json deleted file mode 100644 index 0995895..0000000 --- a/Source/data/ROCKETBITS/LEVEL4.json +++ /dev/null @@ -1 +0,0 @@ -{"tiles":[{"t":1,"x":16,"y":1},{"t":1,"x":17,"y":1},{"t":1,"x":18,"y":1},{"t":1,"x":19,"y":1},{"t":1,"x":20,"y":1},{"t":1,"x":21,"y":1},{"t":1,"x":22,"y":1},{"t":1,"x":23,"y":1},{"t":1,"x":24,"y":1},{"t":1,"x":25,"y":1},{"t":1,"x":16,"y":2},{"t":1,"x":17,"y":2},{"t":1,"x":18,"y":2},{"t":1,"x":19,"y":2},{"t":1,"x":20,"y":2},{"t":1,"x":21,"y":2},{"t":1,"x":22,"y":2},{"t":1,"x":23,"y":2},{"t":1,"x":24,"y":2},{"t":1,"x":25,"y":2},{"t":1,"x":16,"y":3},{"t":1,"x":18,"y":3},{"t":1,"x":19,"y":3},{"t":1,"x":20,"y":3},{"t":1,"x":23,"y":3},{"t":1,"x":24,"y":3},{"t":1,"x":25,"y":3},{"t":1,"x":16,"y":4},{"t":1,"x":24,"y":4},{"t":1,"x":25,"y":4},{"t":1,"x":16,"y":5},{"t":1,"x":25,"y":5},{"t":1,"x":15,"y":6},{"t":1,"x":16,"y":6},{"t":1,"x":25,"y":6},{"t":1,"x":26,"y":6},{"t":1,"x":15,"y":7},{"t":1,"x":26,"y":7},{"t":1,"x":15,"y":8},{"t":1,"x":26,"y":8},{"t":1,"x":15,"y":9},{"t":1,"x":26,"y":9},{"t":1,"x":15,"y":10},{"t":1,"x":18,"y":10},{"t":1,"x":19,"y":10},{"t":1,"x":20,"y":10},{"t":1,"x":21,"y":10},{"t":1,"x":22,"y":10},{"t":1,"x":23,"y":10},{"t":1,"x":26,"y":10},{"t":1,"x":15,"y":11},{"t":1,"x":18,"y":11},{"t":1,"x":19,"y":11},{"t":1,"x":20,"y":11},{"t":1,"x":21,"y":11},{"t":1,"x":22,"y":11},{"t":1,"x":23,"y":11},{"t":1,"x":26,"y":11},{"t":1,"x":15,"y":12},{"t":1,"x":18,"y":12},{"t":1,"x":19,"y":12},{"t":1,"x":20,"y":12},{"t":1,"x":21,"y":12},{"t":1,"x":22,"y":12},{"t":1,"x":23,"y":12},{"t":1,"x":26,"y":12},{"t":1,"x":15,"y":13},{"t":1,"x":18,"y":13},{"t":1,"x":19,"y":13},{"t":1,"x":20,"y":13},{"t":1,"x":21,"y":13},{"t":1,"x":22,"y":13},{"t":1,"x":23,"y":13},{"t":1,"x":26,"y":13},{"t":1,"x":14,"y":14},{"t":1,"x":15,"y":14},{"t":1,"x":18,"y":14},{"t":1,"x":19,"y":14},{"t":1,"x":20,"y":14},{"t":1,"x":21,"y":14},{"t":1,"x":22,"y":14},{"t":1,"x":23,"y":14},{"t":1,"x":26,"y":14},{"t":1,"x":27,"y":14},{"t":1,"x":14,"y":15},{"t":1,"x":27,"y":15},{"t":1,"x":14,"y":16},{"t":1,"x":15,"y":16},{"t":1,"x":27,"y":16},{"t":1,"x":14,"y":17},{"t":1,"x":27,"y":17},{"t":1,"x":14,"y":18},{"t":1,"x":26,"y":18},{"t":1,"x":27,"y":18},{"t":1,"x":14,"y":19},{"t":1,"x":24,"y":19},{"t":1,"x":25,"y":19},{"t":1,"x":26,"y":19},{"t":1,"x":27,"y":19},{"t":1,"x":14,"y":20},{"t":1,"x":15,"y":20},{"t":1,"x":16,"y":20},{"t":1,"x":17,"y":20},{"t":1,"x":18,"y":20},{"t":1,"x":23,"y":20},{"t":1,"x":24,"y":20},{"t":1,"x":25,"y":20},{"t":1,"x":26,"y":20},{"t":1,"x":27,"y":20},{"t":1,"x":14,"y":21},{"t":1,"x":15,"y":21},{"t":1,"x":16,"y":21},{"t":1,"x":17,"y":21},{"t":1,"x":18,"y":21},{"t":1,"x":23,"y":21},{"t":1,"x":24,"y":21},{"t":1,"x":25,"y":21},{"t":1,"x":26,"y":21},{"t":1,"x":27,"y":21},{"t":1,"x":14,"y":22},{"t":1,"x":15,"y":22},{"t":1,"x":16,"y":22},{"t":1,"x":17,"y":22},{"t":1,"x":18,"y":22},{"t":1,"x":23,"y":22},{"t":1,"x":24,"y":22},{"t":1,"x":25,"y":22},{"t":1,"x":26,"y":22},{"t":1,"x":27,"y":22},{"t":1,"x":14,"y":23},{"t":1,"x":27,"y":23},{"t":1,"x":14,"y":24},{"t":1,"x":27,"y":24},{"t":1,"x":14,"y":25},{"t":1,"x":27,"y":25},{"t":1,"x":14,"y":26},{"t":1,"x":27,"y":26},{"t":1,"x":14,"y":27},{"t":1,"x":27,"y":27},{"t":1,"x":14,"y":28},{"t":1,"x":19,"y":28},{"t":1,"x":20,"y":28},{"t":1,"x":21,"y":28},{"t":1,"x":22,"y":28},{"t":1,"x":27,"y":28},{"t":1,"x":14,"y":29},{"t":1,"x":19,"y":29},{"t":1,"x":20,"y":29},{"t":1,"x":21,"y":29},{"t":1,"x":22,"y":29},{"t":1,"x":27,"y":29},{"t":1,"x":14,"y":30},{"t":1,"x":19,"y":30},{"t":1,"x":20,"y":30},{"t":1,"x":21,"y":30},{"t":1,"x":22,"y":30},{"t":1,"x":27,"y":30},{"t":1,"x":14,"y":31},{"t":1,"x":19,"y":31},{"t":1,"x":20,"y":31},{"t":1,"x":21,"y":31},{"t":1,"x":22,"y":31},{"t":1,"x":27,"y":31},{"t":1,"x":13,"y":32},{"t":1,"x":19,"y":32},{"t":1,"x":20,"y":32},{"t":1,"x":21,"y":32},{"t":1,"x":22,"y":32},{"t":1,"x":28,"y":32},{"t":1,"x":13,"y":33},{"t":1,"x":19,"y":33},{"t":1,"x":20,"y":33},{"t":1,"x":21,"y":33},{"t":1,"x":22,"y":33},{"t":1,"x":28,"y":33},{"t":1,"x":12,"y":34},{"t":1,"x":19,"y":34},{"t":1,"x":20,"y":34},{"t":1,"x":21,"y":34},{"t":1,"x":22,"y":34},{"t":1,"x":29,"y":34},{"t":1,"x":12,"y":35},{"t":1,"x":19,"y":35},{"t":1,"x":20,"y":35},{"t":1,"x":21,"y":35},{"t":1,"x":22,"y":35},{"t":1,"x":29,"y":35},{"t":1,"x":11,"y":36},{"t":1,"x":16,"y":36},{"t":1,"x":17,"y":36},{"t":1,"x":18,"y":36},{"t":1,"x":19,"y":36},{"t":1,"x":20,"y":36},{"t":1,"x":21,"y":36},{"t":1,"x":22,"y":36},{"t":1,"x":23,"y":36},{"t":1,"x":24,"y":36},{"t":1,"x":25,"y":36},{"t":1,"x":30,"y":36},{"t":1,"x":11,"y":37},{"t":1,"x":16,"y":37},{"t":1,"x":17,"y":37},{"t":1,"x":18,"y":37},{"t":1,"x":19,"y":37},{"t":1,"x":20,"y":37},{"t":1,"x":21,"y":37},{"t":1,"x":22,"y":37},{"t":1,"x":23,"y":37},{"t":1,"x":24,"y":37},{"t":1,"x":25,"y":37},{"t":1,"x":30,"y":37},{"t":1,"x":10,"y":38},{"t":1,"x":16,"y":38},{"t":1,"x":17,"y":38},{"t":1,"x":18,"y":38},{"t":1,"x":19,"y":38},{"t":1,"x":20,"y":38},{"t":1,"x":21,"y":38},{"t":1,"x":22,"y":38},{"t":1,"x":23,"y":38},{"t":1,"x":24,"y":38},{"t":1,"x":25,"y":38},{"t":1,"x":31,"y":38},{"t":1,"x":10,"y":39},{"t":1,"x":31,"y":39},{"t":1,"x":9,"y":40},{"t":1,"x":32,"y":40},{"t":1,"x":9,"y":41},{"t":1,"x":32,"y":41},{"t":1,"x":8,"y":42},{"t":1,"x":33,"y":42},{"t":1,"x":1,"y":43},{"t":1,"x":8,"y":43},{"t":1,"x":9,"y":43},{"t":1,"x":10,"y":43},{"t":1,"x":11,"y":43},{"t":1,"x":12,"y":43},{"t":1,"x":13,"y":43},{"t":1,"x":14,"y":43},{"t":1,"x":15,"y":43},{"t":1,"x":16,"y":43},{"t":1,"x":17,"y":43},{"t":1,"x":18,"y":43},{"t":1,"x":23,"y":43},{"t":1,"x":24,"y":43},{"t":1,"x":25,"y":43},{"t":1,"x":26,"y":43},{"t":1,"x":27,"y":43},{"t":1,"x":28,"y":43},{"t":1,"x":29,"y":43},{"t":1,"x":30,"y":43},{"t":1,"x":31,"y":43},{"t":1,"x":32,"y":43},{"t":1,"x":33,"y":43},{"t":1,"x":40,"y":43},{"t":1,"x":1,"y":44},{"t":1,"x":8,"y":44},{"t":1,"x":18,"y":44},{"t":1,"x":23,"y":44},{"t":1,"x":33,"y":44},{"t":1,"x":40,"y":44},{"t":1,"x":1,"y":45},{"t":1,"x":8,"y":45},{"t":1,"x":33,"y":45},{"t":1,"x":40,"y":45},{"t":1,"x":1,"y":46},{"t":1,"x":8,"y":46},{"t":1,"x":18,"y":46},{"t":1,"x":23,"y":46},{"t":1,"x":33,"y":46},{"t":1,"x":40,"y":46},{"t":1,"x":1,"y":47},{"t":1,"x":8,"y":47},{"t":1,"x":33,"y":47},{"t":1,"x":40,"y":47},{"t":1,"x":1,"y":48},{"t":1,"x":18,"y":48},{"t":1,"x":19,"y":48},{"t":1,"x":20,"y":48},{"t":1,"x":21,"y":48},{"t":1,"x":22,"y":48},{"t":1,"x":23,"y":48},{"t":1,"x":40,"y":48},{"t":1,"x":1,"y":49},{"t":1,"x":8,"y":49},{"t":1,"x":18,"y":49},{"t":1,"x":19,"y":49},{"t":1,"x":22,"y":49},{"t":1,"x":23,"y":49},{"t":1,"x":33,"y":49},{"t":1,"x":40,"y":49},{"t":1,"x":1,"y":50},{"t":1,"x":18,"y":50},{"t":1,"x":19,"y":50},{"t":1,"x":20,"y":50},{"t":1,"x":22,"y":50},{"t":1,"x":23,"y":50},{"t":1,"x":40,"y":50},{"t":1,"x":1,"y":51},{"t":1,"x":2,"y":51},{"t":1,"x":3,"y":51},{"t":1,"x":4,"y":51},{"t":1,"x":5,"y":51},{"t":1,"x":6,"y":51},{"t":1,"x":7,"y":51},{"t":1,"x":8,"y":51},{"t":1,"x":9,"y":51},{"t":1,"x":10,"y":51},{"t":1,"x":11,"y":51},{"t":1,"x":12,"y":51},{"t":1,"x":13,"y":51},{"t":1,"x":14,"y":51},{"t":1,"x":15,"y":51},{"t":1,"x":16,"y":51},{"t":1,"x":17,"y":51},{"t":1,"x":18,"y":51},{"t":1,"x":19,"y":51},{"t":1,"x":20,"y":51},{"t":1,"x":21,"y":51},{"t":1,"x":22,"y":51},{"t":1,"x":23,"y":51},{"t":1,"x":24,"y":51},{"t":1,"x":25,"y":51},{"t":1,"x":26,"y":51},{"t":1,"x":27,"y":51},{"t":1,"x":28,"y":51},{"t":1,"x":29,"y":51},{"t":1,"x":30,"y":51},{"t":1,"x":31,"y":51},{"t":1,"x":32,"y":51},{"t":1,"x":33,"y":51},{"t":1,"x":34,"y":51},{"t":1,"x":35,"y":51},{"t":1,"x":36,"y":51},{"t":1,"x":37,"y":51},{"t":1,"x":38,"y":51},{"t":1,"x":39,"y":51},{"t":1,"x":40,"y":51},{"t":1,"x":1,"y":52},{"t":1,"x":8,"y":52},{"t":1,"x":18,"y":52},{"t":1,"x":23,"y":52},{"t":1,"x":33,"y":52},{"t":1,"x":40,"y":52},{"t":1,"x":1,"y":53},{"t":1,"x":8,"y":53},{"t":1,"x":18,"y":53},{"t":1,"x":23,"y":53},{"t":1,"x":33,"y":53},{"t":1,"x":40,"y":53},{"t":1,"x":1,"y":54},{"t":1,"x":8,"y":54},{"t":1,"x":18,"y":54},{"t":1,"x":23,"y":54},{"t":1,"x":33,"y":54},{"t":1,"x":40,"y":54},{"t":1,"x":1,"y":55},{"t":1,"x":8,"y":55},{"t":1,"x":18,"y":55},{"t":1,"x":23,"y":55},{"t":1,"x":33,"y":55},{"t":1,"x":40,"y":55},{"t":1,"x":1,"y":56},{"t":1,"x":8,"y":56},{"t":1,"x":18,"y":56},{"t":1,"x":23,"y":56},{"t":1,"x":33,"y":56},{"t":1,"x":40,"y":56},{"t":1,"x":1,"y":57},{"t":1,"x":8,"y":57},{"t":1,"x":18,"y":57},{"t":1,"x":23,"y":57},{"t":1,"x":33,"y":57},{"t":1,"x":40,"y":57},{"t":1,"x":1,"y":58},{"t":1,"x":8,"y":58},{"t":1,"x":18,"y":58},{"t":1,"x":23,"y":58},{"t":1,"x":33,"y":58},{"t":1,"x":40,"y":58},{"t":1,"x":1,"y":59},{"t":1,"x":8,"y":59},{"t":1,"x":18,"y":59},{"t":1,"x":23,"y":59},{"t":1,"x":33,"y":59},{"t":1,"x":40,"y":59},{"t":1,"x":1,"y":60},{"t":1,"x":8,"y":60},{"t":1,"x":18,"y":60},{"t":1,"x":23,"y":60},{"t":1,"x":33,"y":60},{"t":1,"x":40,"y":60},{"t":1,"x":1,"y":61},{"t":1,"x":8,"y":61},{"t":1,"x":18,"y":61},{"t":1,"x":23,"y":61},{"t":1,"x":33,"y":61},{"t":1,"x":40,"y":61},{"t":1,"x":1,"y":62},{"t":1,"x":8,"y":62},{"t":1,"x":18,"y":62},{"t":1,"x":23,"y":62},{"t":1,"x":33,"y":62},{"t":1,"x":40,"y":62},{"t":1,"x":1,"y":63},{"t":1,"x":8,"y":63},{"t":1,"x":18,"y":63},{"t":1,"x":23,"y":63},{"t":1,"x":33,"y":63},{"t":1,"x":40,"y":63},{"t":1,"x":1,"y":64},{"t":1,"x":8,"y":64},{"t":1,"x":33,"y":64},{"t":1,"x":40,"y":64},{"t":1,"x":1,"y":65},{"t":1,"x":40,"y":65}]} \ No newline at end of file diff --git a/Source/data/ROCKETBITS/LEVEL5.json b/Source/data/ROCKETBITS/LEVEL5.json deleted file mode 100644 index 71642f3..0000000 --- a/Source/data/ROCKETBITS/LEVEL5.json +++ /dev/null @@ -1 +0,0 @@ -{"tiles":[{"t":1,"x":20,"y":1},{"t":1,"x":21,"y":1},{"t":1,"x":22,"y":1},{"t":1,"x":23,"y":1},{"t":1,"x":24,"y":1},{"t":1,"x":25,"y":1},{"t":1,"x":26,"y":1},{"t":1,"x":27,"y":1},{"t":1,"x":28,"y":1},{"t":1,"x":29,"y":1},{"t":1,"x":20,"y":2},{"t":1,"x":29,"y":2},{"t":1,"x":20,"y":3},{"t":1,"x":29,"y":3},{"t":1,"x":20,"y":4},{"t":1,"x":21,"y":4},{"t":1,"x":29,"y":4},{"t":1,"x":30,"y":4},{"t":1,"x":31,"y":4},{"t":1,"x":32,"y":4},{"t":1,"x":33,"y":4},{"t":1,"x":34,"y":4},{"t":1,"x":35,"y":4},{"t":1,"x":36,"y":4},{"t":1,"x":37,"y":4},{"t":1,"x":38,"y":4},{"t":1,"x":39,"y":4},{"t":1,"x":40,"y":4},{"t":1,"x":41,"y":4},{"t":1,"x":42,"y":4},{"t":1,"x":20,"y":5},{"t":1,"x":21,"y":5},{"t":1,"x":22,"y":5},{"t":1,"x":23,"y":5},{"t":1,"x":26,"y":5},{"t":1,"x":27,"y":5},{"t":1,"x":29,"y":5},{"t":1,"x":30,"y":5},{"t":1,"x":31,"y":5},{"t":1,"x":32,"y":5},{"t":1,"x":33,"y":5},{"t":1,"x":34,"y":5},{"t":1,"x":35,"y":5},{"t":1,"x":36,"y":5},{"t":1,"x":37,"y":5},{"t":1,"x":38,"y":5},{"t":1,"x":39,"y":5},{"t":1,"x":40,"y":5},{"t":1,"x":41,"y":5},{"t":1,"x":42,"y":5},{"t":1,"x":20,"y":6},{"t":1,"x":21,"y":6},{"t":1,"x":22,"y":6},{"t":1,"x":23,"y":6},{"t":1,"x":24,"y":6},{"t":1,"x":25,"y":6},{"t":1,"x":26,"y":6},{"t":1,"x":27,"y":6},{"t":1,"x":28,"y":6},{"t":1,"x":29,"y":6},{"t":1,"x":30,"y":6},{"t":1,"x":31,"y":6},{"t":1,"x":32,"y":6},{"t":1,"x":33,"y":6},{"t":1,"x":34,"y":6},{"t":1,"x":35,"y":6},{"t":1,"x":36,"y":6},{"t":1,"x":37,"y":6},{"t":1,"x":38,"y":6},{"t":1,"x":39,"y":6},{"t":1,"x":40,"y":6},{"t":1,"x":41,"y":6},{"t":1,"x":42,"y":6},{"t":1,"x":43,"y":6},{"t":1,"x":44,"y":6},{"t":1,"x":45,"y":6},{"t":1,"x":46,"y":6},{"t":1,"x":47,"y":6},{"t":1,"x":48,"y":6},{"t":1,"x":49,"y":6},{"t":1,"x":50,"y":6},{"t":1,"x":51,"y":6},{"t":1,"x":52,"y":6},{"t":1,"x":20,"y":7},{"t":1,"x":22,"y":7},{"t":1,"x":23,"y":7},{"t":1,"x":42,"y":7},{"t":1,"x":43,"y":7},{"t":1,"x":44,"y":7},{"t":1,"x":45,"y":7},{"t":1,"x":46,"y":7},{"t":1,"x":47,"y":7},{"t":1,"x":48,"y":7},{"t":1,"x":49,"y":7},{"t":1,"x":50,"y":7},{"t":1,"x":51,"y":7},{"t":1,"x":52,"y":7},{"t":1,"x":20,"y":8},{"t":1,"x":23,"y":8},{"t":1,"x":42,"y":8},{"t":1,"x":43,"y":8},{"t":1,"x":44,"y":8},{"t":1,"x":45,"y":8},{"t":1,"x":46,"y":8},{"t":1,"x":47,"y":8},{"t":1,"x":48,"y":8},{"t":1,"x":49,"y":8},{"t":1,"x":50,"y":8},{"t":1,"x":51,"y":8},{"t":1,"x":52,"y":8},{"t":1,"x":20,"y":9},{"t":1,"x":21,"y":9},{"t":1,"x":22,"y":9},{"t":1,"x":23,"y":9},{"t":1,"x":20,"y":10},{"t":1,"x":21,"y":10},{"t":1,"x":22,"y":10},{"t":1,"x":23,"y":10},{"t":1,"x":20,"y":11},{"t":1,"x":21,"y":11},{"t":1,"x":22,"y":11},{"t":1,"x":23,"y":11},{"t":1,"x":20,"y":12},{"t":1,"x":21,"y":12},{"t":1,"x":22,"y":12},{"t":1,"x":23,"y":12},{"t":1,"x":23,"y":13},{"t":1,"x":29,"y":13},{"t":1,"x":30,"y":13},{"t":1,"x":31,"y":13},{"t":1,"x":32,"y":13},{"t":1,"x":33,"y":13},{"t":1,"x":34,"y":13},{"t":1,"x":35,"y":13},{"t":1,"x":36,"y":13},{"t":1,"x":37,"y":13},{"t":1,"x":38,"y":13},{"t":1,"x":39,"y":13},{"t":1,"x":40,"y":13},{"t":1,"x":41,"y":13},{"t":1,"x":42,"y":13},{"t":1,"x":43,"y":13},{"t":1,"x":44,"y":13},{"t":1,"x":45,"y":13},{"t":1,"x":46,"y":13},{"t":1,"x":47,"y":13},{"t":1,"x":48,"y":13},{"t":1,"x":49,"y":13},{"t":1,"x":50,"y":13},{"t":1,"x":51,"y":13},{"t":1,"x":52,"y":13},{"t":1,"x":53,"y":13},{"t":1,"x":54,"y":13},{"t":1,"x":55,"y":13},{"t":1,"x":56,"y":13},{"t":1,"x":57,"y":13},{"t":1,"x":58,"y":13},{"t":1,"x":59,"y":13},{"t":1,"x":60,"y":13},{"t":1,"x":61,"y":13},{"t":1,"x":62,"y":13},{"t":1,"x":63,"y":13},{"t":1,"x":64,"y":13},{"t":1,"x":65,"y":13},{"t":1,"x":66,"y":13},{"t":1,"x":67,"y":13},{"t":1,"x":68,"y":13},{"t":1,"x":69,"y":13},{"t":1,"x":23,"y":14},{"t":1,"x":48,"y":14},{"t":1,"x":69,"y":14},{"t":1,"x":23,"y":15},{"t":1,"x":48,"y":15},{"t":1,"x":69,"y":15},{"t":1,"x":23,"y":16},{"t":1,"x":48,"y":16},{"t":1,"x":69,"y":16},{"t":1,"x":23,"y":17},{"t":1,"x":48,"y":17},{"t":1,"x":69,"y":17},{"t":1,"x":23,"y":18},{"t":1,"x":48,"y":18},{"t":1,"x":49,"y":18},{"t":1,"x":54,"y":18},{"t":1,"x":55,"y":18},{"t":1,"x":69,"y":18},{"t":1,"x":70,"y":18},{"t":1,"x":71,"y":18},{"t":1,"x":72,"y":18},{"t":1,"x":73,"y":18},{"t":1,"x":74,"y":18},{"t":1,"x":75,"y":18},{"t":1,"x":76,"y":18},{"t":1,"x":77,"y":18},{"t":1,"x":78,"y":18},{"t":1,"x":79,"y":18},{"t":1,"x":80,"y":18},{"t":1,"x":81,"y":18},{"t":1,"x":23,"y":19},{"t":1,"x":48,"y":19},{"t":1,"x":55,"y":19},{"t":1,"x":81,"y":19},{"t":1,"x":23,"y":20},{"t":1,"x":24,"y":20},{"t":1,"x":25,"y":20},{"t":1,"x":26,"y":20},{"t":1,"x":27,"y":20},{"t":1,"x":28,"y":20},{"t":1,"x":29,"y":20},{"t":1,"x":30,"y":20},{"t":1,"x":31,"y":20},{"t":1,"x":32,"y":20},{"t":1,"x":33,"y":20},{"t":1,"x":34,"y":20},{"t":1,"x":35,"y":20},{"t":1,"x":36,"y":20},{"t":1,"x":37,"y":20},{"t":1,"x":38,"y":20},{"t":1,"x":39,"y":20},{"t":1,"x":40,"y":20},{"t":1,"x":48,"y":20},{"t":1,"x":55,"y":20},{"t":1,"x":81,"y":20},{"t":1,"x":23,"y":21},{"t":1,"x":28,"y":21},{"t":1,"x":29,"y":21},{"t":1,"x":30,"y":21},{"t":1,"x":48,"y":21},{"t":1,"x":55,"y":21},{"t":1,"x":81,"y":21},{"t":1,"x":23,"y":22},{"t":1,"x":24,"y":22},{"t":1,"x":28,"y":22},{"t":1,"x":29,"y":22},{"t":1,"x":30,"y":22},{"t":1,"x":48,"y":22},{"t":1,"x":55,"y":22},{"t":1,"x":81,"y":22},{"t":1,"x":23,"y":23},{"t":1,"x":24,"y":23},{"t":1,"x":27,"y":23},{"t":1,"x":28,"y":23},{"t":1,"x":48,"y":23},{"t":1,"x":55,"y":23},{"t":1,"x":81,"y":23},{"t":1,"x":23,"y":24},{"t":1,"x":25,"y":24},{"t":1,"x":27,"y":24},{"t":1,"x":28,"y":24},{"t":1,"x":48,"y":24},{"t":1,"x":55,"y":24},{"t":1,"x":69,"y":24},{"t":1,"x":70,"y":24},{"t":1,"x":71,"y":24},{"t":1,"x":72,"y":24},{"t":1,"x":73,"y":24},{"t":1,"x":74,"y":24},{"t":1,"x":75,"y":24},{"t":1,"x":81,"y":24},{"t":1,"x":23,"y":25},{"t":1,"x":24,"y":25},{"t":1,"x":25,"y":25},{"t":1,"x":28,"y":25},{"t":1,"x":47,"y":25},{"t":1,"x":48,"y":25},{"t":1,"x":55,"y":25},{"t":1,"x":69,"y":25},{"t":1,"x":81,"y":25},{"t":1,"x":23,"y":26},{"t":1,"x":24,"y":26},{"t":1,"x":25,"y":26},{"t":1,"x":26,"y":26},{"t":1,"x":27,"y":26},{"t":1,"x":28,"y":26},{"t":1,"x":38,"y":26},{"t":1,"x":39,"y":26},{"t":1,"x":40,"y":26},{"t":1,"x":45,"y":26},{"t":1,"x":46,"y":26},{"t":1,"x":47,"y":26},{"t":1,"x":48,"y":26},{"t":1,"x":55,"y":26},{"t":1,"x":56,"y":26},{"t":1,"x":57,"y":26},{"t":1,"x":58,"y":26},{"t":1,"x":59,"y":26},{"t":1,"x":60,"y":26},{"t":1,"x":61,"y":26},{"t":1,"x":62,"y":26},{"t":1,"x":63,"y":26},{"t":1,"x":64,"y":26},{"t":1,"x":65,"y":26},{"t":1,"x":66,"y":26},{"t":1,"x":67,"y":26},{"t":1,"x":68,"y":26},{"t":1,"x":69,"y":26},{"t":1,"x":81,"y":26},{"t":1,"x":28,"y":27},{"t":1,"x":35,"y":27},{"t":1,"x":36,"y":27},{"t":1,"x":37,"y":27},{"t":1,"x":38,"y":27},{"t":1,"x":39,"y":27},{"t":1,"x":40,"y":27},{"t":1,"x":41,"y":27},{"t":1,"x":42,"y":27},{"t":1,"x":43,"y":27},{"t":1,"x":44,"y":27},{"t":1,"x":45,"y":27},{"t":1,"x":46,"y":27},{"t":1,"x":47,"y":27},{"t":1,"x":48,"y":27},{"t":1,"x":55,"y":27},{"t":1,"x":69,"y":27},{"t":1,"x":81,"y":27},{"t":1,"x":28,"y":28},{"t":1,"x":35,"y":28},{"t":1,"x":36,"y":28},{"t":1,"x":37,"y":28},{"t":1,"x":48,"y":28},{"t":1,"x":55,"y":28},{"t":1,"x":69,"y":28},{"t":1,"x":81,"y":28},{"t":1,"x":28,"y":29},{"t":1,"x":35,"y":29},{"t":1,"x":36,"y":29},{"t":1,"x":37,"y":29},{"t":1,"x":48,"y":29},{"t":1,"x":55,"y":29},{"t":1,"x":69,"y":29},{"t":1,"x":81,"y":29},{"t":1,"x":28,"y":30},{"t":1,"x":36,"y":30},{"t":1,"x":37,"y":30},{"t":1,"x":48,"y":30},{"t":1,"x":55,"y":30},{"t":1,"x":69,"y":30},{"t":1,"x":73,"y":30},{"t":1,"x":74,"y":30},{"t":1,"x":75,"y":30},{"t":1,"x":76,"y":30},{"t":1,"x":77,"y":30},{"t":1,"x":78,"y":30},{"t":1,"x":79,"y":30},{"t":1,"x":80,"y":30},{"t":1,"x":81,"y":30},{"t":1,"x":82,"y":30},{"t":1,"x":83,"y":30},{"t":1,"x":84,"y":30},{"t":1,"x":28,"y":31},{"t":1,"x":36,"y":31},{"t":1,"x":37,"y":31},{"t":1,"x":55,"y":31},{"t":1,"x":69,"y":31},{"t":1,"x":73,"y":31},{"t":1,"x":81,"y":31},{"t":1,"x":84,"y":31},{"t":1,"x":28,"y":32},{"t":1,"x":37,"y":32},{"t":1,"x":54,"y":32},{"t":1,"x":55,"y":32},{"t":1,"x":69,"y":32},{"t":1,"x":84,"y":32},{"t":1,"x":1,"y":33},{"t":1,"x":2,"y":33},{"t":1,"x":3,"y":33},{"t":1,"x":4,"y":33},{"t":1,"x":5,"y":33},{"t":1,"x":6,"y":33},{"t":1,"x":7,"y":33},{"t":1,"x":8,"y":33},{"t":1,"x":9,"y":33},{"t":1,"x":10,"y":33},{"t":1,"x":11,"y":33},{"t":1,"x":12,"y":33},{"t":1,"x":13,"y":33},{"t":1,"x":14,"y":33},{"t":1,"x":15,"y":33},{"t":1,"x":16,"y":33},{"t":1,"x":17,"y":33},{"t":1,"x":18,"y":33},{"t":1,"x":19,"y":33},{"t":1,"x":20,"y":33},{"t":1,"x":21,"y":33},{"t":1,"x":28,"y":33},{"t":1,"x":37,"y":33},{"t":1,"x":53,"y":33},{"t":1,"x":54,"y":33},{"t":1,"x":55,"y":33},{"t":1,"x":62,"y":33},{"t":1,"x":63,"y":33},{"t":1,"x":64,"y":33},{"t":1,"x":65,"y":33},{"t":1,"x":66,"y":33},{"t":1,"x":67,"y":33},{"t":1,"x":68,"y":33},{"t":1,"x":69,"y":33},{"t":1,"x":84,"y":33},{"t":1,"x":85,"y":33},{"t":1,"x":86,"y":33},{"t":1,"x":87,"y":33},{"t":1,"x":88,"y":33},{"t":1,"x":21,"y":34},{"t":1,"x":28,"y":34},{"t":1,"x":37,"y":34},{"t":1,"x":53,"y":34},{"t":1,"x":54,"y":34},{"t":1,"x":55,"y":34},{"t":1,"x":62,"y":34},{"t":1,"x":63,"y":34},{"t":1,"x":64,"y":34},{"t":1,"x":65,"y":34},{"t":1,"x":66,"y":34},{"t":1,"x":67,"y":34},{"t":1,"x":68,"y":34},{"t":1,"x":69,"y":34},{"t":1,"x":84,"y":34},{"t":1,"x":85,"y":34},{"t":1,"x":86,"y":34},{"t":1,"x":87,"y":34},{"t":1,"x":88,"y":34},{"t":1,"x":21,"y":35},{"t":1,"x":22,"y":35},{"t":1,"x":23,"y":35},{"t":1,"x":24,"y":35},{"t":1,"x":25,"y":35},{"t":1,"x":26,"y":35},{"t":1,"x":27,"y":35},{"t":1,"x":28,"y":35},{"t":1,"x":37,"y":35},{"t":1,"x":52,"y":35},{"t":1,"x":53,"y":35},{"t":1,"x":54,"y":35},{"t":1,"x":55,"y":35},{"t":1,"x":62,"y":35},{"t":1,"x":63,"y":35},{"t":1,"x":64,"y":35},{"t":1,"x":65,"y":35},{"t":1,"x":66,"y":35},{"t":1,"x":67,"y":35},{"t":1,"x":68,"y":35},{"t":1,"x":69,"y":35},{"t":1,"x":70,"y":35},{"t":1,"x":71,"y":35},{"t":1,"x":84,"y":35},{"t":1,"x":85,"y":35},{"t":1,"x":86,"y":35},{"t":1,"x":87,"y":35},{"t":1,"x":88,"y":35},{"t":1,"x":28,"y":36},{"t":1,"x":37,"y":36},{"t":1,"x":50,"y":36},{"t":1,"x":51,"y":36},{"t":1,"x":52,"y":36},{"t":1,"x":53,"y":36},{"t":1,"x":54,"y":36},{"t":1,"x":55,"y":36},{"t":1,"x":62,"y":36},{"t":1,"x":63,"y":36},{"t":1,"x":64,"y":36},{"t":1,"x":65,"y":36},{"t":1,"x":66,"y":36},{"t":1,"x":67,"y":36},{"t":1,"x":68,"y":36},{"t":1,"x":69,"y":36},{"t":1,"x":70,"y":36},{"t":1,"x":71,"y":36},{"t":1,"x":72,"y":36},{"t":1,"x":73,"y":36},{"t":1,"x":76,"y":36},{"t":1,"x":84,"y":36},{"t":1,"x":85,"y":36},{"t":1,"x":86,"y":36},{"t":1,"x":87,"y":36},{"t":1,"x":88,"y":36},{"t":1,"x":89,"y":36},{"t":1,"x":90,"y":36},{"t":1,"x":91,"y":36},{"t":1,"x":28,"y":37},{"t":1,"x":37,"y":37},{"t":1,"x":47,"y":37},{"t":1,"x":48,"y":37},{"t":1,"x":49,"y":37},{"t":1,"x":50,"y":37},{"t":1,"x":51,"y":37},{"t":1,"x":52,"y":37},{"t":1,"x":53,"y":37},{"t":1,"x":54,"y":37},{"t":1,"x":55,"y":37},{"t":1,"x":62,"y":37},{"t":1,"x":63,"y":37},{"t":1,"x":64,"y":37},{"t":1,"x":65,"y":37},{"t":1,"x":66,"y":37},{"t":1,"x":67,"y":37},{"t":1,"x":68,"y":37},{"t":1,"x":69,"y":37},{"t":1,"x":70,"y":37},{"t":1,"x":71,"y":37},{"t":1,"x":72,"y":37},{"t":1,"x":73,"y":37},{"t":1,"x":74,"y":37},{"t":1,"x":75,"y":37},{"t":1,"x":76,"y":37},{"t":1,"x":84,"y":37},{"t":1,"x":85,"y":37},{"t":1,"x":86,"y":37},{"t":1,"x":87,"y":37},{"t":1,"x":88,"y":37},{"t":1,"x":89,"y":37},{"t":1,"x":90,"y":37},{"t":1,"x":91,"y":37},{"t":1,"x":28,"y":38},{"t":1,"x":37,"y":38},{"t":1,"x":47,"y":38},{"t":1,"x":49,"y":38},{"t":1,"x":53,"y":38},{"t":1,"x":55,"y":38},{"t":1,"x":84,"y":38},{"t":1,"x":85,"y":38},{"t":1,"x":86,"y":38},{"t":1,"x":87,"y":38},{"t":1,"x":88,"y":38},{"t":1,"x":89,"y":38},{"t":1,"x":90,"y":38},{"t":1,"x":91,"y":38},{"t":1,"x":28,"y":39},{"t":1,"x":37,"y":39},{"t":1,"x":47,"y":39},{"t":1,"x":55,"y":39},{"t":1,"x":84,"y":39},{"t":1,"x":85,"y":39},{"t":1,"x":86,"y":39},{"t":1,"x":87,"y":39},{"t":1,"x":88,"y":39},{"t":1,"x":89,"y":39},{"t":1,"x":90,"y":39},{"t":1,"x":91,"y":39},{"t":1,"x":28,"y":40},{"t":1,"x":47,"y":40},{"t":1,"x":51,"y":40},{"t":1,"x":55,"y":40},{"t":1,"x":56,"y":40},{"t":1,"x":84,"y":40},{"t":1,"x":85,"y":40},{"t":1,"x":86,"y":40},{"t":1,"x":87,"y":40},{"t":1,"x":88,"y":40},{"t":1,"x":89,"y":40},{"t":1,"x":90,"y":40},{"t":1,"x":91,"y":40},{"t":1,"x":28,"y":41},{"t":1,"x":47,"y":41},{"t":1,"x":50,"y":41},{"t":1,"x":51,"y":41},{"t":1,"x":52,"y":41},{"t":1,"x":55,"y":41},{"t":1,"x":84,"y":41},{"t":1,"x":85,"y":41},{"t":1,"x":86,"y":41},{"t":1,"x":87,"y":41},{"t":1,"x":88,"y":41},{"t":1,"x":89,"y":41},{"t":1,"x":90,"y":41},{"t":1,"x":91,"y":41},{"t":1,"x":28,"y":42},{"t":1,"x":29,"y":42},{"t":1,"x":30,"y":42},{"t":1,"x":47,"y":42},{"t":1,"x":50,"y":42},{"t":1,"x":52,"y":42},{"t":1,"x":55,"y":42},{"t":1,"x":84,"y":42},{"t":1,"x":85,"y":42},{"t":1,"x":86,"y":42},{"t":1,"x":87,"y":42},{"t":1,"x":88,"y":42},{"t":1,"x":89,"y":42},{"t":1,"x":90,"y":42},{"t":1,"x":91,"y":42},{"t":1,"x":92,"y":42},{"t":1,"x":93,"y":42},{"t":1,"x":94,"y":42},{"t":1,"x":95,"y":42},{"t":1,"x":96,"y":42},{"t":1,"x":97,"y":42},{"t":1,"x":98,"y":42},{"t":1,"x":99,"y":42},{"t":1,"x":100,"y":42},{"t":1,"x":101,"y":42},{"t":1,"x":30,"y":43},{"t":1,"x":47,"y":43},{"t":1,"x":48,"y":43},{"t":1,"x":49,"y":43},{"t":1,"x":50,"y":43},{"t":1,"x":52,"y":43},{"t":1,"x":53,"y":43},{"t":1,"x":54,"y":43},{"t":1,"x":55,"y":43},{"t":1,"x":58,"y":43},{"t":1,"x":65,"y":43},{"t":1,"x":66,"y":43},{"t":1,"x":68,"y":43},{"t":1,"x":69,"y":43},{"t":1,"x":71,"y":43},{"t":1,"x":72,"y":43},{"t":1,"x":81,"y":43},{"t":1,"x":84,"y":43},{"t":1,"x":85,"y":43},{"t":1,"x":86,"y":43},{"t":1,"x":87,"y":43},{"t":1,"x":88,"y":43},{"t":1,"x":89,"y":43},{"t":1,"x":90,"y":43},{"t":1,"x":91,"y":43},{"t":1,"x":30,"y":44},{"t":1,"x":31,"y":44},{"t":1,"x":32,"y":44},{"t":1,"x":33,"y":44},{"t":1,"x":34,"y":44},{"t":1,"x":35,"y":44},{"t":1,"x":36,"y":44},{"t":1,"x":37,"y":44},{"t":1,"x":38,"y":44},{"t":1,"x":39,"y":44},{"t":1,"x":40,"y":44},{"t":1,"x":41,"y":44},{"t":1,"x":42,"y":44},{"t":1,"x":43,"y":44},{"t":1,"x":44,"y":44},{"t":1,"x":45,"y":44},{"t":1,"x":46,"y":44},{"t":1,"x":47,"y":44},{"t":1,"x":48,"y":44},{"t":1,"x":49,"y":44},{"t":1,"x":50,"y":44},{"t":1,"x":52,"y":44},{"t":1,"x":53,"y":44},{"t":1,"x":54,"y":44},{"t":1,"x":55,"y":44},{"t":1,"x":56,"y":44},{"t":1,"x":57,"y":44},{"t":1,"x":58,"y":44},{"t":1,"x":59,"y":44},{"t":1,"x":60,"y":44},{"t":1,"x":61,"y":44},{"t":1,"x":62,"y":44},{"t":1,"x":63,"y":44},{"t":1,"x":64,"y":44},{"t":1,"x":65,"y":44},{"t":1,"x":66,"y":44},{"t":1,"x":67,"y":44},{"t":1,"x":68,"y":44},{"t":1,"x":69,"y":44},{"t":1,"x":70,"y":44},{"t":1,"x":71,"y":44},{"t":1,"x":72,"y":44},{"t":1,"x":73,"y":44},{"t":1,"x":74,"y":44},{"t":1,"x":75,"y":44},{"t":1,"x":76,"y":44},{"t":1,"x":77,"y":44},{"t":1,"x":78,"y":44},{"t":1,"x":79,"y":44},{"t":1,"x":80,"y":44},{"t":1,"x":81,"y":44},{"t":1,"x":82,"y":44},{"t":1,"x":83,"y":44},{"t":1,"x":84,"y":44},{"t":1,"x":85,"y":44},{"t":1,"x":86,"y":44},{"t":1,"x":87,"y":44},{"t":1,"x":88,"y":44},{"t":1,"x":89,"y":44},{"t":1,"x":90,"y":44},{"t":1,"x":91,"y":44},{"t":1,"x":61,"y":45},{"t":1,"x":71,"y":45},{"t":1,"x":61,"y":46},{"t":1,"x":71,"y":46},{"t":1,"x":61,"y":47},{"t":1,"x":71,"y":47},{"t":1,"x":61,"y":48},{"t":1,"x":71,"y":48},{"t":1,"x":61,"y":49},{"t":1,"x":71,"y":49},{"t":1,"x":61,"y":50},{"t":1,"x":69,"y":50},{"t":1,"x":70,"y":50},{"t":1,"x":71,"y":50},{"t":1,"x":61,"y":51},{"t":1,"x":69,"y":51},{"t":1,"x":61,"y":52},{"t":1,"x":69,"y":52},{"t":1,"x":61,"y":53},{"t":1,"x":69,"y":53},{"t":1,"x":61,"y":54},{"t":1,"x":69,"y":54},{"t":1,"x":61,"y":55},{"t":1,"x":69,"y":55},{"t":1,"x":61,"y":56},{"t":1,"x":69,"y":56},{"t":1,"x":61,"y":57},{"t":1,"x":69,"y":57},{"t":1,"x":69,"y":58},{"t":1,"x":69,"y":59},{"t":1,"x":69,"y":60},{"t":1,"x":69,"y":61},{"t":1,"x":69,"y":62}]} \ No newline at end of file diff --git a/Source/data/ROCKETBITS/LEVEL6.json b/Source/data/ROCKETBITS/LEVEL6.json deleted file mode 100644 index ee725d6..0000000 --- a/Source/data/ROCKETBITS/LEVEL6.json +++ /dev/null @@ -1 +0,0 @@ -{"tiles":[{"t":1,"x":7,"y":1},{"t":1,"x":8,"y":1},{"t":1,"x":9,"y":1},{"t":1,"x":10,"y":1},{"t":1,"x":11,"y":1},{"t":1,"x":12,"y":1},{"t":1,"x":13,"y":1},{"t":1,"x":14,"y":1},{"t":1,"x":15,"y":1},{"t":1,"x":16,"y":1},{"t":1,"x":17,"y":1},{"t":1,"x":18,"y":1},{"t":1,"x":19,"y":1},{"t":1,"x":20,"y":1},{"t":1,"x":21,"y":1},{"t":1,"x":22,"y":1},{"t":1,"x":23,"y":1},{"t":1,"x":24,"y":1},{"t":1,"x":25,"y":1},{"t":1,"x":26,"y":1},{"t":1,"x":27,"y":1},{"t":1,"x":28,"y":1},{"t":1,"x":29,"y":1},{"t":1,"x":30,"y":1},{"t":1,"x":31,"y":1},{"t":1,"x":32,"y":1},{"t":1,"x":33,"y":1},{"t":1,"x":34,"y":1},{"t":1,"x":35,"y":1},{"t":1,"x":36,"y":1},{"t":1,"x":37,"y":1},{"t":1,"x":38,"y":1},{"t":1,"x":39,"y":1},{"t":1,"x":40,"y":1},{"t":1,"x":41,"y":1},{"t":1,"x":42,"y":1},{"t":1,"x":7,"y":2},{"t":1,"x":22,"y":2},{"t":1,"x":23,"y":2},{"t":1,"x":24,"y":2},{"t":1,"x":25,"y":2},{"t":1,"x":26,"y":2},{"t":1,"x":42,"y":2},{"t":1,"x":7,"y":3},{"t":1,"x":22,"y":3},{"t":1,"x":23,"y":3},{"t":1,"x":24,"y":3},{"t":1,"x":25,"y":3},{"t":1,"x":26,"y":3},{"t":1,"x":42,"y":3},{"t":1,"x":7,"y":4},{"t":1,"x":22,"y":4},{"t":1,"x":23,"y":4},{"t":1,"x":24,"y":4},{"t":1,"x":25,"y":4},{"t":1,"x":26,"y":4},{"t":1,"x":42,"y":4},{"t":1,"x":7,"y":5},{"t":1,"x":14,"y":5},{"t":1,"x":15,"y":5},{"t":1,"x":16,"y":5},{"t":1,"x":42,"y":5},{"t":1,"x":7,"y":6},{"t":1,"x":13,"y":6},{"t":1,"x":14,"y":6},{"t":1,"x":15,"y":6},{"t":1,"x":16,"y":6},{"t":1,"x":17,"y":6},{"t":1,"x":31,"y":6},{"t":1,"x":32,"y":6},{"t":1,"x":33,"y":6},{"t":1,"x":34,"y":6},{"t":1,"x":35,"y":6},{"t":1,"x":42,"y":6},{"t":1,"x":43,"y":6},{"t":1,"x":44,"y":6},{"t":1,"x":45,"y":6},{"t":1,"x":46,"y":6},{"t":1,"x":47,"y":6},{"t":1,"x":48,"y":6},{"t":1,"x":49,"y":6},{"t":1,"x":50,"y":6},{"t":1,"x":51,"y":6},{"t":1,"x":52,"y":6},{"t":1,"x":53,"y":6},{"t":1,"x":54,"y":6},{"t":1,"x":55,"y":6},{"t":1,"x":56,"y":6},{"t":1,"x":7,"y":7},{"t":1,"x":13,"y":7},{"t":1,"x":14,"y":7},{"t":1,"x":15,"y":7},{"t":1,"x":16,"y":7},{"t":1,"x":17,"y":7},{"t":1,"x":31,"y":7},{"t":1,"x":32,"y":7},{"t":1,"x":33,"y":7},{"t":1,"x":34,"y":7},{"t":1,"x":35,"y":7},{"t":1,"x":56,"y":7},{"t":1,"x":7,"y":8},{"t":1,"x":13,"y":8},{"t":1,"x":14,"y":8},{"t":1,"x":15,"y":8},{"t":1,"x":16,"y":8},{"t":1,"x":17,"y":8},{"t":1,"x":24,"y":8},{"t":1,"x":25,"y":8},{"t":1,"x":31,"y":8},{"t":1,"x":32,"y":8},{"t":1,"x":33,"y":8},{"t":1,"x":34,"y":8},{"t":1,"x":35,"y":8},{"t":1,"x":56,"y":8},{"t":1,"x":7,"y":9},{"t":1,"x":13,"y":9},{"t":1,"x":14,"y":9},{"t":1,"x":15,"y":9},{"t":1,"x":16,"y":9},{"t":1,"x":17,"y":9},{"t":1,"x":18,"y":9},{"t":1,"x":19,"y":9},{"t":1,"x":20,"y":9},{"t":1,"x":21,"y":9},{"t":1,"x":22,"y":9},{"t":1,"x":23,"y":9},{"t":1,"x":24,"y":9},{"t":1,"x":25,"y":9},{"t":1,"x":26,"y":9},{"t":1,"x":27,"y":9},{"t":1,"x":28,"y":9},{"t":1,"x":29,"y":9},{"t":1,"x":30,"y":9},{"t":1,"x":31,"y":9},{"t":1,"x":32,"y":9},{"t":1,"x":33,"y":9},{"t":1,"x":34,"y":9},{"t":1,"x":35,"y":9},{"t":1,"x":37,"y":9},{"t":1,"x":56,"y":9},{"t":1,"x":7,"y":10},{"t":1,"x":12,"y":10},{"t":1,"x":13,"y":10},{"t":1,"x":14,"y":10},{"t":1,"x":15,"y":10},{"t":1,"x":16,"y":10},{"t":1,"x":17,"y":10},{"t":1,"x":35,"y":10},{"t":1,"x":36,"y":10},{"t":1,"x":37,"y":10},{"t":1,"x":39,"y":10},{"t":1,"x":56,"y":10},{"t":1,"x":7,"y":11},{"t":1,"x":12,"y":11},{"t":1,"x":13,"y":11},{"t":1,"x":14,"y":11},{"t":1,"x":15,"y":11},{"t":1,"x":16,"y":11},{"t":1,"x":17,"y":11},{"t":1,"x":35,"y":11},{"t":1,"x":36,"y":11},{"t":1,"x":37,"y":11},{"t":1,"x":38,"y":11},{"t":1,"x":39,"y":11},{"t":1,"x":40,"y":11},{"t":1,"x":41,"y":11},{"t":1,"x":42,"y":11},{"t":1,"x":56,"y":11},{"t":1,"x":7,"y":12},{"t":1,"x":12,"y":12},{"t":1,"x":13,"y":12},{"t":1,"x":14,"y":12},{"t":1,"x":15,"y":12},{"t":1,"x":16,"y":12},{"t":1,"x":17,"y":12},{"t":1,"x":42,"y":12},{"t":1,"x":56,"y":12},{"t":1,"x":7,"y":13},{"t":1,"x":13,"y":13},{"t":1,"x":14,"y":13},{"t":1,"x":15,"y":13},{"t":1,"x":16,"y":13},{"t":1,"x":17,"y":13},{"t":1,"x":31,"y":13},{"t":1,"x":42,"y":13},{"t":1,"x":56,"y":13},{"t":1,"x":7,"y":14},{"t":1,"x":13,"y":14},{"t":1,"x":14,"y":14},{"t":1,"x":15,"y":14},{"t":1,"x":16,"y":14},{"t":1,"x":17,"y":14},{"t":1,"x":31,"y":14},{"t":1,"x":42,"y":14},{"t":1,"x":56,"y":14},{"t":1,"x":7,"y":15},{"t":1,"x":13,"y":15},{"t":1,"x":14,"y":15},{"t":1,"x":15,"y":15},{"t":1,"x":16,"y":15},{"t":1,"x":17,"y":15},{"t":1,"x":21,"y":15},{"t":1,"x":22,"y":15},{"t":1,"x":23,"y":15},{"t":1,"x":24,"y":15},{"t":1,"x":25,"y":15},{"t":1,"x":31,"y":15},{"t":1,"x":37,"y":15},{"t":1,"x":38,"y":15},{"t":1,"x":39,"y":15},{"t":1,"x":40,"y":15},{"t":1,"x":42,"y":15},{"t":1,"x":56,"y":15},{"t":1,"x":7,"y":16},{"t":1,"x":13,"y":16},{"t":1,"x":14,"y":16},{"t":1,"x":15,"y":16},{"t":1,"x":16,"y":16},{"t":1,"x":17,"y":16},{"t":1,"x":21,"y":16},{"t":1,"x":22,"y":16},{"t":1,"x":23,"y":16},{"t":1,"x":24,"y":16},{"t":1,"x":25,"y":16},{"t":1,"x":31,"y":16},{"t":1,"x":37,"y":16},{"t":1,"x":38,"y":16},{"t":1,"x":39,"y":16},{"t":1,"x":40,"y":16},{"t":1,"x":42,"y":16},{"t":1,"x":56,"y":16},{"t":1,"x":7,"y":17},{"t":1,"x":13,"y":17},{"t":1,"x":14,"y":17},{"t":1,"x":15,"y":17},{"t":1,"x":16,"y":17},{"t":1,"x":17,"y":17},{"t":1,"x":21,"y":17},{"t":1,"x":22,"y":17},{"t":1,"x":23,"y":17},{"t":1,"x":24,"y":17},{"t":1,"x":25,"y":17},{"t":1,"x":31,"y":17},{"t":1,"x":37,"y":17},{"t":1,"x":38,"y":17},{"t":1,"x":39,"y":17},{"t":1,"x":40,"y":17},{"t":1,"x":42,"y":17},{"t":1,"x":56,"y":17},{"t":1,"x":7,"y":18},{"t":1,"x":13,"y":18},{"t":1,"x":14,"y":18},{"t":1,"x":15,"y":18},{"t":1,"x":16,"y":18},{"t":1,"x":17,"y":18},{"t":1,"x":21,"y":18},{"t":1,"x":22,"y":18},{"t":1,"x":23,"y":18},{"t":1,"x":24,"y":18},{"t":1,"x":25,"y":18},{"t":1,"x":31,"y":18},{"t":1,"x":37,"y":18},{"t":1,"x":38,"y":18},{"t":1,"x":39,"y":18},{"t":1,"x":40,"y":18},{"t":1,"x":42,"y":18},{"t":1,"x":43,"y":18},{"t":1,"x":56,"y":18},{"t":1,"x":7,"y":19},{"t":1,"x":21,"y":19},{"t":1,"x":22,"y":19},{"t":1,"x":23,"y":19},{"t":1,"x":24,"y":19},{"t":1,"x":25,"y":19},{"t":1,"x":31,"y":19},{"t":1,"x":42,"y":19},{"t":1,"x":43,"y":19},{"t":1,"x":44,"y":19},{"t":1,"x":45,"y":19},{"t":1,"x":56,"y":19},{"t":1,"x":7,"y":20},{"t":1,"x":21,"y":20},{"t":1,"x":22,"y":20},{"t":1,"x":23,"y":20},{"t":1,"x":24,"y":20},{"t":1,"x":25,"y":20},{"t":1,"x":41,"y":20},{"t":1,"x":42,"y":20},{"t":1,"x":43,"y":20},{"t":1,"x":44,"y":20},{"t":1,"x":45,"y":20},{"t":1,"x":46,"y":20},{"t":1,"x":47,"y":20},{"t":1,"x":48,"y":20},{"t":1,"x":49,"y":20},{"t":1,"x":50,"y":20},{"t":1,"x":51,"y":20},{"t":1,"x":56,"y":20},{"t":1,"x":7,"y":21},{"t":1,"x":21,"y":21},{"t":1,"x":22,"y":21},{"t":1,"x":23,"y":21},{"t":1,"x":24,"y":21},{"t":1,"x":25,"y":21},{"t":1,"x":26,"y":21},{"t":1,"x":39,"y":21},{"t":1,"x":40,"y":21},{"t":1,"x":41,"y":21},{"t":1,"x":42,"y":21},{"t":1,"x":45,"y":21},{"t":1,"x":48,"y":21},{"t":1,"x":51,"y":21},{"t":1,"x":56,"y":21},{"t":1,"x":7,"y":22},{"t":1,"x":13,"y":22},{"t":1,"x":21,"y":22},{"t":1,"x":22,"y":22},{"t":1,"x":23,"y":22},{"t":1,"x":24,"y":22},{"t":1,"x":25,"y":22},{"t":1,"x":26,"y":22},{"t":1,"x":27,"y":22},{"t":1,"x":35,"y":22},{"t":1,"x":36,"y":22},{"t":1,"x":37,"y":22},{"t":1,"x":38,"y":22},{"t":1,"x":39,"y":22},{"t":1,"x":40,"y":22},{"t":1,"x":41,"y":22},{"t":1,"x":42,"y":22},{"t":1,"x":51,"y":22},{"t":1,"x":56,"y":22},{"t":1,"x":7,"y":23},{"t":1,"x":21,"y":23},{"t":1,"x":22,"y":23},{"t":1,"x":23,"y":23},{"t":1,"x":24,"y":23},{"t":1,"x":25,"y":23},{"t":1,"x":26,"y":23},{"t":1,"x":27,"y":23},{"t":1,"x":28,"y":23},{"t":1,"x":29,"y":23},{"t":1,"x":35,"y":23},{"t":1,"x":39,"y":23},{"t":1,"x":42,"y":23},{"t":1,"x":45,"y":23},{"t":1,"x":46,"y":23},{"t":1,"x":48,"y":23},{"t":1,"x":51,"y":23},{"t":1,"x":56,"y":23},{"t":1,"x":7,"y":24},{"t":1,"x":8,"y":24},{"t":1,"x":9,"y":24},{"t":1,"x":10,"y":24},{"t":1,"x":11,"y":24},{"t":1,"x":12,"y":24},{"t":1,"x":13,"y":24},{"t":1,"x":14,"y":24},{"t":1,"x":15,"y":24},{"t":1,"x":16,"y":24},{"t":1,"x":17,"y":24},{"t":1,"x":18,"y":24},{"t":1,"x":19,"y":24},{"t":1,"x":20,"y":24},{"t":1,"x":21,"y":24},{"t":1,"x":22,"y":24},{"t":1,"x":23,"y":24},{"t":1,"x":24,"y":24},{"t":1,"x":25,"y":24},{"t":1,"x":26,"y":24},{"t":1,"x":27,"y":24},{"t":1,"x":28,"y":24},{"t":1,"x":29,"y":24},{"t":1,"x":30,"y":24},{"t":1,"x":31,"y":24},{"t":1,"x":32,"y":24},{"t":1,"x":33,"y":24},{"t":1,"x":34,"y":24},{"t":1,"x":35,"y":24},{"t":1,"x":36,"y":24},{"t":1,"x":37,"y":24},{"t":1,"x":38,"y":24},{"t":1,"x":39,"y":24},{"t":1,"x":40,"y":24},{"t":1,"x":41,"y":24},{"t":1,"x":42,"y":24},{"t":1,"x":43,"y":24},{"t":1,"x":44,"y":24},{"t":1,"x":45,"y":24},{"t":1,"x":46,"y":24},{"t":1,"x":47,"y":24},{"t":1,"x":48,"y":24},{"t":1,"x":49,"y":24},{"t":1,"x":50,"y":24},{"t":1,"x":51,"y":24},{"t":1,"x":56,"y":24},{"t":1,"x":21,"y":25},{"t":1,"x":35,"y":25},{"t":1,"x":37,"y":25},{"t":1,"x":56,"y":25},{"t":1,"x":21,"y":26},{"t":1,"x":35,"y":26},{"t":1,"x":36,"y":26},{"t":1,"x":37,"y":26},{"t":1,"x":56,"y":26},{"t":1,"x":57,"y":26},{"t":1,"x":58,"y":26},{"t":1,"x":59,"y":26},{"t":1,"x":60,"y":26},{"t":1,"x":21,"y":27},{"t":1,"x":56,"y":27},{"t":1,"x":60,"y":27},{"t":1,"x":21,"y":28},{"t":1,"x":42,"y":28},{"t":1,"x":43,"y":28},{"t":1,"x":44,"y":28},{"t":1,"x":56,"y":28},{"t":1,"x":60,"y":28},{"t":1,"x":21,"y":29},{"t":1,"x":28,"y":29},{"t":1,"x":29,"y":29},{"t":1,"x":30,"y":29},{"t":1,"x":42,"y":29},{"t":1,"x":44,"y":29},{"t":1,"x":56,"y":29},{"t":1,"x":60,"y":29},{"t":1,"x":1,"y":30},{"t":1,"x":2,"y":30},{"t":1,"x":3,"y":30},{"t":1,"x":4,"y":30},{"t":1,"x":5,"y":30},{"t":1,"x":6,"y":30},{"t":1,"x":7,"y":30},{"t":1,"x":8,"y":30},{"t":1,"x":9,"y":30},{"t":1,"x":10,"y":30},{"t":1,"x":11,"y":30},{"t":1,"x":12,"y":30},{"t":1,"x":13,"y":30},{"t":1,"x":14,"y":30},{"t":1,"x":28,"y":30},{"t":1,"x":29,"y":30},{"t":1,"x":30,"y":30},{"t":1,"x":42,"y":30},{"t":1,"x":44,"y":30},{"t":1,"x":45,"y":30},{"t":1,"x":46,"y":30},{"t":1,"x":47,"y":30},{"t":1,"x":48,"y":30},{"t":1,"x":49,"y":30},{"t":1,"x":50,"y":30},{"t":1,"x":51,"y":30},{"t":1,"x":52,"y":30},{"t":1,"x":53,"y":30},{"t":1,"x":54,"y":30},{"t":1,"x":55,"y":30},{"t":1,"x":56,"y":30},{"t":1,"x":60,"y":30},{"t":1,"x":8,"y":31},{"t":1,"x":9,"y":31},{"t":1,"x":10,"y":31},{"t":1,"x":11,"y":31},{"t":1,"x":12,"y":31},{"t":1,"x":13,"y":31},{"t":1,"x":14,"y":31},{"t":1,"x":28,"y":31},{"t":1,"x":29,"y":31},{"t":1,"x":30,"y":31},{"t":1,"x":31,"y":31},{"t":1,"x":32,"y":31},{"t":1,"x":33,"y":31},{"t":1,"x":34,"y":31},{"t":1,"x":35,"y":31},{"t":1,"x":36,"y":31},{"t":1,"x":37,"y":31},{"t":1,"x":38,"y":31},{"t":1,"x":39,"y":31},{"t":1,"x":40,"y":31},{"t":1,"x":41,"y":31},{"t":1,"x":42,"y":31},{"t":1,"x":45,"y":31},{"t":1,"x":47,"y":31},{"t":1,"x":60,"y":31},{"t":1,"x":8,"y":32},{"t":1,"x":9,"y":32},{"t":1,"x":10,"y":32},{"t":1,"x":11,"y":32},{"t":1,"x":12,"y":32},{"t":1,"x":13,"y":32},{"t":1,"x":14,"y":32},{"t":1,"x":28,"y":32},{"t":1,"x":29,"y":32},{"t":1,"x":30,"y":32},{"t":1,"x":31,"y":32},{"t":1,"x":32,"y":32},{"t":1,"x":33,"y":32},{"t":1,"x":35,"y":32},{"t":1,"x":60,"y":32},{"t":1,"x":8,"y":33},{"t":1,"x":9,"y":33},{"t":1,"x":10,"y":33},{"t":1,"x":11,"y":33},{"t":1,"x":12,"y":33},{"t":1,"x":13,"y":33},{"t":1,"x":14,"y":33},{"t":1,"x":28,"y":33},{"t":1,"x":29,"y":33},{"t":1,"x":30,"y":33},{"t":1,"x":31,"y":33},{"t":1,"x":32,"y":33},{"t":1,"x":33,"y":33},{"t":1,"x":34,"y":33},{"t":1,"x":35,"y":33},{"t":1,"x":46,"y":33},{"t":1,"x":50,"y":33},{"t":1,"x":60,"y":33},{"t":1,"x":8,"y":34},{"t":1,"x":9,"y":34},{"t":1,"x":10,"y":34},{"t":1,"x":11,"y":34},{"t":1,"x":12,"y":34},{"t":1,"x":13,"y":34},{"t":1,"x":14,"y":34},{"t":1,"x":15,"y":34},{"t":1,"x":16,"y":34},{"t":1,"x":17,"y":34},{"t":1,"x":18,"y":34},{"t":1,"x":19,"y":34},{"t":1,"x":20,"y":34},{"t":1,"x":21,"y":34},{"t":1,"x":22,"y":34},{"t":1,"x":23,"y":34},{"t":1,"x":24,"y":34},{"t":1,"x":25,"y":34},{"t":1,"x":26,"y":34},{"t":1,"x":27,"y":34},{"t":1,"x":28,"y":34},{"t":1,"x":29,"y":34},{"t":1,"x":30,"y":34},{"t":1,"x":31,"y":34},{"t":1,"x":32,"y":34},{"t":1,"x":33,"y":34},{"t":1,"x":34,"y":34},{"t":1,"x":35,"y":34},{"t":1,"x":36,"y":34},{"t":1,"x":37,"y":34},{"t":1,"x":38,"y":34},{"t":1,"x":39,"y":34},{"t":1,"x":40,"y":34},{"t":1,"x":41,"y":34},{"t":1,"x":42,"y":34},{"t":1,"x":43,"y":34},{"t":1,"x":44,"y":34},{"t":1,"x":45,"y":34},{"t":1,"x":46,"y":34},{"t":1,"x":47,"y":34},{"t":1,"x":48,"y":34},{"t":1,"x":49,"y":34},{"t":1,"x":50,"y":34},{"t":1,"x":55,"y":34},{"t":1,"x":60,"y":34},{"t":1,"x":8,"y":35},{"t":1,"x":9,"y":35},{"t":1,"x":10,"y":35},{"t":1,"x":11,"y":35},{"t":1,"x":12,"y":35},{"t":1,"x":13,"y":35},{"t":1,"x":14,"y":35},{"t":1,"x":15,"y":35},{"t":1,"x":16,"y":35},{"t":1,"x":17,"y":35},{"t":1,"x":18,"y":35},{"t":1,"x":19,"y":35},{"t":1,"x":20,"y":35},{"t":1,"x":50,"y":35},{"t":1,"x":60,"y":35},{"t":1,"x":10,"y":36},{"t":1,"x":11,"y":36},{"t":1,"x":12,"y":36},{"t":1,"x":13,"y":36},{"t":1,"x":14,"y":36},{"t":1,"x":15,"y":36},{"t":1,"x":16,"y":36},{"t":1,"x":17,"y":36},{"t":1,"x":18,"y":36},{"t":1,"x":19,"y":36},{"t":1,"x":20,"y":36},{"t":1,"x":50,"y":36},{"t":1,"x":60,"y":36},{"t":1,"x":10,"y":37},{"t":1,"x":11,"y":37},{"t":1,"x":12,"y":37},{"t":1,"x":13,"y":37},{"t":1,"x":14,"y":37},{"t":1,"x":15,"y":37},{"t":1,"x":16,"y":37},{"t":1,"x":17,"y":37},{"t":1,"x":18,"y":37},{"t":1,"x":19,"y":37},{"t":1,"x":20,"y":37},{"t":1,"x":50,"y":37},{"t":1,"x":60,"y":37},{"t":1,"x":10,"y":38},{"t":1,"x":11,"y":38},{"t":1,"x":12,"y":38},{"t":1,"x":13,"y":38},{"t":1,"x":14,"y":38},{"t":1,"x":15,"y":38},{"t":1,"x":16,"y":38},{"t":1,"x":17,"y":38},{"t":1,"x":18,"y":38},{"t":1,"x":19,"y":38},{"t":1,"x":20,"y":38},{"t":1,"x":50,"y":38},{"t":1,"x":60,"y":38}]} \ No newline at end of file diff --git a/Source/gfx/square.png b/Source/gfx/square.png index fcbd2ca190fad6d48842062aa0c6243d5f75a9c6..815d37eef569ba9f787c0ce8feb87546e3c9f6e9 100644 GIT binary patch delta 180 zcmV;l089VD0nh=EB!8DlL_t(YiS3r%3cw%;g>&rvU)fzOgAO|TgADe;E;N%)Cu%AE z_;CKFxE3sA2=WS;UvWgl5Mv!_d5gG;Q}z>;N?aOs?!Y$1w>4mSDJTkYToP)7kRE@Y zVh?3r)gYe7qj*Y%P>QF#Z6*GxE)$F$P;R#KZZ26dL%ynOy)D_0kRDgyyR76TZhDuu iDPFR2fQusb}1wRx!U_myDHwYF^s- zg{)G=+%;uN8ml*FGsQGTNn^J|WqY`!q%kwqp`u@^?(f7n)gJ41Hj8D(hy8f~%tj|K T7T$Yn00000NkvXXu0mjfU_4Bp diff --git a/Source/gfx/tiles-table-16-16.png b/Source/gfx/tiles-table-16-16.png index 85776aec630794792ffe534a5e5d8fec146ebe83..c42e7316f1581ef73d36fb747f40b0ee032253b3 100644 GIT binary patch delta 441 zcmV;q0Y?7h1JeVLB!8MoL_t(&f$f-Ga>FnPgrU=e_h`A9^3d3`mH|o0f~Otxkc?z! z__F*6TP3izfB5zlUmn}{%uVX-w=x3sC~_pKBS7yBC~7s>yrb0-p!aK{(0is4=%Cmt zs&R;L&b|hFpA&eszF7~*&%_A{T<;u$RSo)z{0FtL6a|rtJbze;LQWp6YCz8eZL0{K z@iMWG27=|!2T{)(8D9e=nK5oZSoO{&u%b{$(0iQC0SdwO)i|C|vI+KT^lU^}bT)bz znnB?8La%4?YT@AJRUCyq(egOi6i5VC1L(YadXVz~o1*xg3HJ;80o?ddk%x%<QnaEgYisfI zz=$G$QXT1&uYt(%dd}OtcV|Uq%t(7C_VM2KqFI_kF#TrxG(NEMV2U91T=;!r!9KY7 zT{NKt6r^{mw+6Qce_jKlq3HgbDFTsmSH`tFsnayTg)&8AdBt_k$#l?QKvASYKvAH9 j;T6|+9$cLV${=_Gzn0Dzr!cNq00000NkvXXu0mjfr*Yb= delta 458 zcmV;*0X6>91LOmcB!8<(L_t(&f$dnqZNo4OJQm%i^JJgylL7k80)2KK^-;&AS&@>^ zBLf8HBerYe0vj$gZxd?hys6${g&T4>y;PKr!o=~z8 z?A_?a2w~B?(Ssow2s|(JJd@W8hb&uj6nbJWp+_#d}q?v3;jSn zcoX0T;5`R{s(-(sq^k{b6`DG#OwoHHK?j}x8C9x=gXmrj2T>$&u!y4Yt4;dLBu7%& z8h|T+i<0A2erY24foFUQhFR_xlBYCd1lFOh)cHUQaK@~`ODS&|N7kAJ9TjCfHJLr1ELkn0DBFb82|tP07*qoM6N<$f>VRl ArT_o{