From c4d911c6732c03e1b110522fbfa438d485160894 Mon Sep 17 00:00:00 2001 From: PossiblyAxolotl Date: Mon, 18 Jul 2022 01:11:02 -0600 Subject: [PATCH] added tutorial, added first 4 level names --- Source/Editor.lua | 3 +- Source/Main.lua | 18 +- Source/Map.lua | 1 + Source/Menu.lua | 6 +- Source/Player.lua | 2 + Source/{ => bdata}/bl1.json | 0 Source/{ => bdata}/bl2.json | 0 Source/{ => bdata}/bl3.json | 0 Source/data/{LEVEL.json => 1. HOOK.json} | 2160 +++++++++++----------- Source/data/2. ROCKET.json | 1558 ++++++++++++++++ Source/data/3. STAR.json | 878 +++++++++ Source/data/4. SPINNER.json | 758 ++++++++ Source/gfx/Symbols.fnt | 37 +- Source/launcher/launchImages/1.png | Bin 0 -> 2289 bytes Source/thankyous.txt | 6 +- 15 files changed, 4291 insertions(+), 1136 deletions(-) rename Source/{ => bdata}/bl1.json (100%) rename Source/{ => bdata}/bl2.json (100%) rename Source/{ => bdata}/bl3.json (100%) rename Source/data/{LEVEL.json => 1. HOOK.json} (61%) create mode 100644 Source/data/2. ROCKET.json create mode 100644 Source/data/3. STAR.json create mode 100644 Source/data/4. SPINNER.json create mode 100644 Source/launcher/launchImages/1.png diff --git a/Source/Editor.lua b/Source/Editor.lua index 1d3a1a6..005db2d 100644 --- a/Source/Editor.lua +++ b/Source/Editor.lua @@ -517,8 +517,7 @@ function editClose() editor = "main" tileIndex = 0 playdate.display.setInverted(false) - imgtiles = gfx.sprite.new(tilemapEditor) - imgtiles:remove() + gfx.sprite.removeAll() if #playdate.getSystemMenu():getMenuItems() > 1 then playdate.getSystemMenu():removeMenuItem(playdate.getSystemMenu():getMenuItems()[3]) playdate.getSystemMenu():removeMenuItem(playdate.getSystemMenu():getMenuItems()[2]) diff --git a/Source/Main.lua b/Source/Main.lua index b17aa0f..b669c3d 100644 --- a/Source/Main.lua +++ b/Source/Main.lua @@ -36,6 +36,7 @@ next = nil local gfx = playdate.graphics local disp = playdate.display local font = gfx.font.new("gfx/big") +local symbols = gfx.font.new("gfx/symbols") gfx.setFont(font) gfx.setBackgroundColor(gfx.kColorBlack) @@ -55,6 +56,8 @@ mainMenuCreation() createMenu(mainmenu) +tutorial = nil + local menu = playdate.getSystemMenu() menuButton, error = menu:addMenuItem("game menu", function() if mode == "game" then @@ -92,11 +95,11 @@ if playdate.file.exists("levels") == false then end 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") - data = json.decodeFile("bl2.json") + data = json.decodeFile("bdata/bl2.json") 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") end @@ -126,6 +129,9 @@ function playdate.update() playdate.ui.crankIndicator:update() end + if tutorial then + symbols:drawText("AOu",-ox+2,-oy + 202) + end elseif mode == "newproj" then gfx.clear() updateNewproj() @@ -146,3 +152,9 @@ function playdate.gameWillTerminate() playdate.datastore.write({savedLevel=map,savedDeaths=deaths},"savegame") end end + +function playdate.debugDraw() + gfx.setDrawOffset(0,0) + gfx.drawText("DEBUG ON",0,220) + print(playdate.graphics.sprite.spriteCount()) +end \ No newline at end of file diff --git a/Source/Map.lua b/Source/Map.lua index dc8828c..74dc7be 100644 --- a/Source/Map.lua +++ b/Source/Map.lua @@ -50,6 +50,7 @@ function addMap(_file, rs) if level.rotators then loadSpins(level.rotators) end if level.fuel then loadFuel(level.fuel) 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) sprTiles:remove() diff --git a/Source/Menu.lua b/Source/Menu.lua index 9b64420..ee39c79 100644 --- a/Source/Menu.lua +++ b/Source/Menu.lua @@ -194,8 +194,8 @@ function menuButtonPress(name, index) elseif name == "START NEW GAME" or name == "CONFIRM" then deaths = 0 - map = "data/level.json" - addMapSave("data/level.json") + map = "data/1. HOOK.json" + addMapSave("data/1. HOOK.json") elseif name == "CONTINUE" then addMap(map) @@ -209,7 +209,7 @@ function menuButtonPress(name, index) local m = {} --barpos = 160 --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 m[6] = "EXTRA LEVELS" end diff --git a/Source/Player.lua b/Source/Player.lua index 3118210..e859487 100644 --- a/Source/Player.lua +++ b/Source/Player.lua @@ -64,6 +64,7 @@ function addPlayer(_x,_y,__x,__y) end function killPlayer() + tutorial = nil song:setFinishCallback(nil) exists = false active = false @@ -165,6 +166,7 @@ function updatePlayer() sprRocket:setVisible(false) end end + updateExit() sprRocket:setScale(scale,scale) diff --git a/Source/bl1.json b/Source/bdata/bl1.json similarity index 100% rename from Source/bl1.json rename to Source/bdata/bl1.json diff --git a/Source/bl2.json b/Source/bdata/bl2.json similarity index 100% rename from Source/bl2.json rename to Source/bdata/bl2.json diff --git a/Source/bl3.json b/Source/bdata/bl3.json similarity index 100% rename from Source/bl3.json rename to Source/bdata/bl3.json diff --git a/Source/data/LEVEL.json b/Source/data/1. HOOK.json similarity index 61% rename from Source/data/LEVEL.json rename to Source/data/1. HOOK.json index 393d152..cdc3b68 100644 --- a/Source/data/LEVEL.json +++ b/Source/data/1. HOOK.json @@ -1,1268 +1,1212 @@ { "bigrocket": { - "x":1200, - "y":1536 + "x":1672, + "y":1376 }, + "next":"data/2. ROCKET.json", + "tutorial":"AOu", "fuel": [ ], - "inverted":true, + "inverted":false, "rocket": { - "x":1594, - "y":1596 + "x":1562, + "y":1564 }, "rotators": [ ], - "saws": [], + "saws": [ + ], + "song":"song2", "tiles": [ { "t":2, - "x":97, - "y":102 - }, - { - "t":2, - "x":98, - "y":102 - }, - { - "t":2, - "x":102, + "x":95, "y":97 - }, - { - "t":2, - "x":97, - "y":102 - }, - { - "t":2, - "x":92, - "y":102 - }, - { - "t":2, - "x":86, - "y":102 - }, - { - "t":2, - "x":86, - "y":101 - }, - { - "t":2, - "x":86, - "y":100 - }, - { - "t":2, - "x":86, - "y":99 - }, - { - "t":2, - "x":86, - "y":98 - }, - { - "t":2, - "x":86, - "y":97 - }, - { - "t":2, - "x":86, - "y":96 - }, - { - "t":2, - "x":86, - "y":95 - }, - { - "t":2, - "x":86, - "y":94 - }, - { - "t":2, - "x":86, - "y":93 - }, - { - "t":2, - "x":86, - "y":92 - }, - { - "t":2, - "x":86, - "y":91 - }, - { - "t":2, - "x":87, - "y":91 - }, - { - "t":2, - "x":88, - "y":91 - }, - { - "t":2, - "x":89, - "y":91 - }, - { - "t":2, - "x":90, - "y":91 - }, - { - "t":2, - "x":91, - "y":91 - }, - { - "t":2, - "x":92, - "y":91 - }, - { - "t":2, - "x":93, - "y":91 - }, - { - "t":2, - "x":94, - "y":91 }, { "t":2, "x":95, - "y":91 + "y":98 + }, + { + "t":2, + "x":95, + "y":99 + }, + { + "t":2, + "x":95, + "y":100 + }, + { + "t":2, + "x":95, + "y":101 + }, + { + "t":2, + "x":95, + "y":102 + }, + { + "t":2, + "x":95, + "y":103 }, { "t":2, "x":96, - "y":91 + "y":103 }, { "t":2, "x":97, - "y":91 + "y":103 }, { "t":2, - "x":97, - "y":92 + "x":98, + "y":103 }, { "t":2, - "x":97, - "y":93 + "x":99, + "y":103 + }, + { + "t":2, + "x":100, + "y":103 + }, + { + "t":2, + "x":101, + "y":103 + }, + { + "t":2, + "x":102, + "y":103 + }, + { + "t":2, + "x":103, + "y":103 + }, + { + "t":2, + "x":103, + "y":102 + }, + { + "t":2, + "x":103, + "y":101 + }, + { + "t":2, + "x":103, + "y":100 + }, + { + "t":2, + "x":103, + "y":99 + }, + { + "t":2, + "x":103, + "y":98 + }, + { + "t":2, + "x":103, + "y":97 + }, + { + "t":2, + "x":103, + "y":96 + }, + { + "t":2, + "x":103, + "y":95 + }, + { + "t":2, + "x":95, + "y":95 + }, + { + "t":2, + "x":95, + "y":96 + }, + { + "t":2, + "x":95, + "y":94 + }, + { + "t":2, + "x":96, + "y":94 }, { "t":2, "x":97, "y":94 + }, + { + "t":2, + "x":98, + "y":94 + }, + { + "t":2, + "x":103, + "y":94 + }, + { + "t":2, + "x":103, + "y":93 + }, + { + "t":2, + "x":103, + "y":92 + }, + { + "t":2, + "x":103, + "y":91 + }, + { + "t":2, + "x":103, + "y":90 + }, + { + "t":2, + "x":103, + "y":89 + }, + { + "t":2, + "x":103, + "y":88 + }, + { + "t":2, + "x":103, + "y":87 + }, + { + "t":2, + "x":102, + "y":85 + }, + { + "t":2, + "x":101, + "y":85 + }, + { + "t":2, + "x":100, + "y":85 + }, + { + "t":2, + "x":103, + "y":85 + }, + { + "t":2, + "x":103, + "y":86 + }, + { + "t":2, + "x":95, + "y":87 + }, + { + "t":2, + "x":95, + "y":88 + }, + { + "t":2, + "x":95, + "y":89 + }, + { + "t":2, + "x":95, + "y":90 + }, + { + "t":2, + "x":95, + "y":91 + }, + { + "t":2, + "x":95, + "y":92 + }, + { + "t":2, + "x":95, + "y":93 + }, + { + "t":2, + "x":95, + "y":86 + }, + { + "t":2, + "x":95, + "y":85 + }, + { + "t":2, + "x":95, + "y":84 + }, + { + "t":2, + "x":95, + "y":83 + }, + { + "t":2, + "x":95, + "y":82 + }, + { + "t":2, + "x":95, + "y":81 + }, + { + "t":2, + "x":95, + "y":80 + }, + { + "t":2, + "x":95, + "y":79 + }, + { + "t":2, + "x":95, + "y":78 + }, + { + "t":2, + "x":95, + "y":77 + }, + { + "t":2, + "x":95, + "y":76 + }, + { + "t":2, + "x":96, + "y":76 }, { "t":2, "x":97, + "y":76 + }, + { + "t":2, + "x":98, + "y":76 + }, + { + "t":2, + "x":99, + "y":76 + }, + { + "t":2, + "x":100, + "y":76 + }, + { + "t":2, + "x":101, + "y":76 + }, + { + "t":2, + "x":102, + "y":76 + }, + { + "t":2, + "x":103, + "y":76 + }, + { + "t":2, + "x":104, + "y":76 + }, + { + "t":2, + "x":105, + "y":76 + }, + { + "t":2, + "x":106, + "y":76 + }, + { + "t":2, + "x":107, + "y":76 + }, + { + "t":2, + "x":108, + "y":76 + }, + { + "t":2, + "x":109, + "y":76 + }, + { + "t":2, + "x":110, + "y":76 + }, + { + "t":2, + "x":111, + "y":76 + }, + { + "t":2, + "x":111, + "y":77 + }, + { + "t":2, + "x":111, + "y":78 + }, + { + "t":2, + "x":111, + "y":79 + }, + { + "t":2, + "x":111, + "y":79 + }, + { + "t":2, + "x":111, + "y":80 + }, + { + "t":2, + "x":111, + "y":81 + }, + { + "t":2, + "x":111, + "y":82 + }, + { + "t":2, + "x":111, + "y":83 + }, + { + "t":2, + "x":111, + "y":84 + }, + { + "t":2, + "x":111, + "y":85 + }, + { + "t":2, + "x":111, + "y":86 + }, + { + "t":2, + "x":111, + "y":87 + }, + { + "t":2, + "x":111, + "y":88 + }, + { + "t":2, + "x":111, + "y":89 + }, + { + "t":2, + "x":111, + "y":90 + }, + { + "t":2, + "x":111, + "y":90 + }, + { + "t":2, + "x":111, + "y":91 + }, + { + "t":2, + "x":110, + "y":91 + }, + { + "t":2, + "x":109, + "y":91 + }, + { + "t":2, + "x":108, + "y":91 + }, + { + "t":2, + "x":107, + "y":91 + }, + { + "t":2, + "x":106, + "y":91 + }, + { + "t":2, + "x":105, + "y":91 + }, + { + "t":2, + "x":104, + "y":91 + }, + { + "t":2, + "x":111, + "y":92 + }, + { + "t":2, + "x":110, + "y":93 + }, + { + "t":2, + "x":109, + "y":94 + }, + { + "t":2, + "x":108, "y":95 }, { "t":2, - "x":97, + "x":107, "y":96 }, { "t":2, - "x":97, + "x":106, "y":97 }, { "t":2, - "x":97, + "x":105, "y":98 }, { "t":2, - "x":97, + "x":104, "y":99 - }, - { - "t":2, - "x":97, - "y":100 - }, - { - "t":2, - "x":97, - "y":101 - }, - { - "t":2, - "x":92, - "y":97 - }, - { - "t":2, - "x":92, - "y":98 - }, - { - "t":2, - "x":92, - "y":99 - }, - { - "t":2, - "x":92, - "y":100 - }, - { - "t":2, - "x":92, - "y":101 - }, - { - "t":2, - "x":92, - "y":103 - }, - { - "t":2, - "x":92, - "y":104 - }, - { - "t":2, - "x":92, - "y":105 - }, - { - "t":2, - "x":92, - "y":106 - }, - { - "t":2, - "x":92, - "y":107 - }, - { - "t":2, - "x":103, - "y":107 - }, - { - "t":2, - "x":103, - "y":106 - }, - { - "t":2, - "x":103, - "y":105 - }, - { - "t":2, - "x":103, - "y":104 - }, - { - "t":2, - "x":103, - "y":103 - }, - { - "t":2, - "x":103, - "y":102 - }, - { - "t":2, - "x":103, - "y":101 - }, - { - "t":2, - "x":103, - "y":100 - }, - { - "t":2, - "x":103, - "y":99 - }, - { - "t":2, - "x":103, - "y":98 - }, - { - "t":2, - "x":103, - "y":97 - }, - { - "t":2, - "x":92, - "y":108 - }, - { - "t":2, - "x":93, - "y":108 - }, - { - "t":2, - "x":94, - "y":108 - }, - { - "t":2, - "x":96, - "y":108 - }, - { - "t":2, - "x":97, - "y":108 - }, - { - "t":2, - "x":98, - "y":108 - }, - { - "t":2, - "x":97, - "y":108 - }, - { - "t":2, - "x":96, - "y":108 - }, - { - "t":2, - "x":95, - "y":108 - }, - { - "t":2, - "x":96, - "y":108 - }, - { - "t":2, - "x":97, - "y":108 - }, - { - "t":2, - "x":98, - "y":108 - }, - { - "t":2, - "x":99, - "y":108 - }, - { - "t":2, - "x":100, - "y":108 - }, - { - "t":2, - "x":101, - "y":108 - }, - { - "t":2, - "x":102, - "y":108 - }, - { - "t":2, - "x":103, - "y":108 - }, - { - "t":2, - "x":102, - "y":97 - }, - { - "t":2, - "x":101, - "y":97 - }, - { - "t":2, - "x":100, - "y":97 - }, - { - "t":2, - "x":99, - "y":97 - }, - { - "t":2, - "x":98, - "y":97 - }, - { - "t":2, - "x":97, - "y":103 - }, - { - "t":2, - "x":98, - "y":103 - }, - { - "t":2, - "x":99, - "y":103 - }, - { - "t":2, - "x":99, - "y":102 - }, - { - "t":2, - "x":99, - "y":101 - }, - { - "t":2, - "x":99, - "y":100 - }, - { - "t":2, - "x":99, - "y":99 - }, - { - "t":2, - "x":99, - "y":98 - }, - { - "t":3, - "x":98, - "y":103 - }, - { - "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":102, - "y":108 - }, - { - "t":3, - "x":98, - "y":108 - }, - { - "t":3, - "x":97, - "y":108 - }, - { - "t":3, - "x":96, - "y":108 - }, - { - "t":3, - "x":95, - "y":108 - }, - { - "t":3, - "x":94, - "y":108 - }, - { - "t":3, - "x":93, - "y":108 - }, - { - "t":3, - "x":87, - "y":91 - }, - { - "t":3, - "x":88, - "y":91 - }, - { - "t":3, - "x":89, - "y":91 - }, - { - "t":3, - "x":90, - "y":91 - }, - { - "t":3, - "x":91, - "y":91 - }, - { - "t":3, - "x":92, - "y":91 - }, - { - "t":3, - "x":93, - "y":91 - }, - { - "t":3, - "x":94, - "y":91 - }, - { - "t":3, - "x":95, - "y":91 - }, - { - "t":3, - "x":96, - "y":91 - }, - { - "t":3, - "x":98, - "y":97 - }, - { - "t":3, - "x":100, - "y":97 + "y":103 }, { "t":3, "x":101, - "y":97 + "y":103 }, { "t":3, - "x":102, - "y":97 + "x":100, + "y":103 }, { - "t":4, + "t":3, "x":99, - "y":102 + "y":103 }, { - "t":4, - "x":99, - "y":101 + "t":3, + "x":98, + "y":103 }, { - "t":4, - "x":99, - "y":100 - }, - { - "t":4, - "x":99, - "y":99 - }, - { - "t":4, - "x":99, - "y":98 - }, - { - "t":4, + "t":3, "x":97, - "y":98 + "y":103 }, { - "t":4, - "x":97, - "y":99 + "t":3, + "x":96, + "y":103 }, { - "t":4, - "x":97, - "y":100 + "t":3, + "x":96, + "y":94 }, { - "t":4, - "x":97, - "y":101 - }, - { - "t":4, - "x":97, - "y":102 - }, - { - "t":4, - "x":97, - "y":96 - }, - { - "t":4, - "x":97, - "y":95 - }, - { - "t":4, + "t":3, "x":97, "y":94 }, { - "t":4, + "t":3, + "x":101, + "y":85 + }, + { + "t":3, + "x":102, + "y":85 + }, + { + "t":3, + "x":104, + "y":91 + }, + { + "t":3, + "x":105, + "y":91 + }, + { + "t":3, + "x":106, + "y":91 + }, + { + "t":3, + "x":107, + "y":91 + }, + { + "t":3, + "x":108, + "y":91 + }, + { + "t":3, + "x":109, + "y":91 + }, + { + "t":3, + "x":110, + "y":91 + }, + { + "t":3, + "x":110, + "y":76 + }, + { + "t":3, + "x":109, + "y":76 + }, + { + "t":3, + "x":108, + "y":76 + }, + { + "t":3, + "x":107, + "y":76 + }, + { + "t":3, + "x":106, + "y":76 + }, + { + "t":3, + "x":105, + "y":76 + }, + { + "t":3, + "x":105, + "y":76 + }, + { + "t":3, + "x":104, + "y":76 + }, + { + "t":3, + "x":103, + "y":76 + }, + { + "t":3, + "x":102, + "y":76 + }, + { + "t":3, + "x":101, + "y":76 + }, + { + "t":3, + "x":100, + "y":76 + }, + { + "t":3, + "x":100, + "y":76 + }, + { + "t":3, + "x":98, + "y":76 + }, + { + "t":3, + "x":99, + "y":76 + }, + { + "t":3, "x":97, - "y":93 + "y":76 + }, + { + "t":3, + "x":96, + "y":76 }, { "t":4, - "x":97, + "x":95, + "y":77 + }, + { + "t":4, + "x":95, + "y":78 + }, + { + "t":4, + "x":95, + "y":79 + }, + { + "t":4, + "x":95, + "y":80 + }, + { + "t":4, + "x":95, + "y":81 + }, + { + "t":4, + "x":95, + "y":82 + }, + { + "t":4, + "x":95, + "y":82 + }, + { + "t":4, + "x":95, + "y":83 + }, + { + "t":4, + "x":95, + "y":84 + }, + { + "t":4, + "x":95, + "y":85 + }, + { + "t":4, + "x":95, + "y":86 + }, + { + "t":4, + "x":95, + "y":87 + }, + { + "t":4, + "x":95, + "y":88 + }, + { + "t":4, + "x":95, + "y":89 + }, + { + "t":4, + "x":95, + "y":90 + }, + { + "t":4, + "x":95, + "y":91 + }, + { + "t":4, + "x":95, "y":92 }, { "t":4, - "x":92, - "y":98 - }, - { - "t":4, - "x":92, - "y":99 - }, - { - "t":4, - "x":92, - "y":100 - }, - { - "t":4, - "x":92, - "y":101 - }, - { - "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":103, - "y":107 - }, - { - "t":4, - "x":103, - "y":106 - }, - { - "t":4, - "x":103, - "y":105 - }, - { - "t":4, - "x":103, - "y":104 - }, - { - "t":4, - "x":103, - "y":103 - }, - { - "t":4, - "x":103, - "y":102 - }, - { - "t":4, - "x":103, - "y":101 - }, - { - "t":4, - "x":103, - "y":100 - }, - { - "t":4, - "x":103, - "y":99 - }, - { - "t":4, - "x":103, - "y":98 - }, - { - "t":4, - "x":86, - "y":92 - }, - { - "t":4, - "x":86, + "x":95, "y":93 }, { "t":4, - "x":86, - "y":94 - }, - { - "t":4, - "x":86, + "x":95, "y":95 }, { "t":4, - "x":86, + "x":95, "y":96 }, { "t":4, - "x":86, + "x":95, "y":97 }, { "t":4, - "x":86, + "x":95, "y":98 }, { "t":4, - "x":86, + "x":95, "y":99 }, { "t":4, - "x":86, + "x":95, "y":100 }, { "t":4, - "x":86, + "x":95, "y":101 }, { "t":4, - "x":86, - "y":108 - }, - { - "t":4, - "x":87, - "y":108 - }, - { - "t":3, - "x":87, - "y":108 - }, - { - "t":3, - "x":86, - "y":108 - }, - { - "t":3, - "x":87, - "y":108 - }, - { - "t":3, - "x":88, - "y":108 - }, - { - "t":3, - "x":89, - "y":108 - }, - { - "t":3, - "x":90, - "y":108 - }, - { - "t":3, - "x":91, - "y":108 - }, - { - "t":4, - "x":80, + "x":95, "y":102 }, { "t":4, - "x":80, - "y":103 - }, - { - "t":4, - "x":80, - "y":104 - }, - { - "t":4, - "x":80, - "y":105 - }, - { - "t":4, - "x":80, - "y":106 - }, - { - "t":4, - "x":80, - "y":107 - }, - { - "t":3, - "x":85, - "y":108 - }, - { - "t":3, - "x":84, - "y":108 - }, - { - "t":3, - "x":83, - "y":108 - }, - { - "t":3, - "x":82, - "y":108 - }, - { - "t":3, - "x":81, - "y":108 - }, - { - "t":2, - "x":80, - "y":108 - }, - { - "t":2, - "x":80, - "y":101 - }, - { - "t":2, - "x":86, - "y":95 - }, - { - "t":2, - "x":86, - "y":96 - }, - { - "t":2, - "x":80, - "y":96 - }, - { - "t":3, - "x":79, - "y":101 - }, - { - "t":3, - "x":78, - "y":101 - }, - { - "t":3, - "x":77, - "y":101 - }, - { - "t":2, - "x":76, - "y":101 - }, - { - "t":3, - "x":81, - "y":96 - }, - { - "t":3, - "x":82, - "y":96 - }, - { - "t":3, - "x":83, - "y":96 - }, - { - "t":3, - "x":84, - "y":96 - }, - { - "t":3, - "x":85, - "y":96 - }, - { - "t":4, - "x":86, - "y":95 - }, - { - "t":4, - "x":92, + "x":103, "y":102 + }, + { + "t":4, + "x":103, + "y":101 + }, + { + "t":4, + "x":103, + "y":100 + }, + { + "t":4, + "x":103, + "y":98 + }, + { + "t":4, + "x":103, + "y":97 + }, + { + "t":4, + "x":103, + "y":96 + }, + { + "t":4, + "x":103, + "y":95 + }, + { + "t":4, + "x":103, + "y":94 + }, + { + "t":4, + "x":103, + "y":93 + }, + { + "t":4, + "x":103, + "y":92 + }, + { + "t":4, + "x":103, + "y":90 + }, + { + "t":4, + "x":103, + "y":89 + }, + { + "t":4, + "x":103, + "y":88 + }, + { + "t":4, + "x":103, + "y":87 + }, + { + "t":4, + "x":103, + "y":86 + }, + { + "t":4, + "x":111, + "y":86 + }, + { + "t":4, + "x":111, + "y":87 + }, + { + "t":4, + "x":111, + "y":88 + }, + { + "t":4, + "x":111, + "y":89 + }, + { + "t":4, + "x":111, + "y":90 + }, + { + "t":4, + "x":111, + "y":85 + }, + { + "t":4, + "x":111, + "y":84 + }, + { + "t":4, + "x":111, + "y":83 + }, + { + "t":4, + "x":111, + "y":82 + }, + { + "t":4, + "x":111, + "y":81 + }, + { + "t":4, + "x":111, + "y":80 + }, + { + "t":4, + "x":111, + "y":79 + }, + { + "t":4, + "x":111, + "y":78 + }, + { + "t":4, + "x":111, + "y":77 + }, + { + "t":16, + "x":104, + "y":98 + }, + { + "t":16, + "x":104, + "y":97 + }, + { + "t":16, + "x":104, + "y":96 + }, + { + "t":16, + "x":104, + "y":95 + }, + { + "t":16, + "x":104, + "y":94 + }, + { + "t":16, + "x":104, + "y":93 + }, + { + "t":16, + "x":104, + "y":92 + }, + { + "t":16, + "x":105, + "y":92 + }, + { + "t":16, + "x":106, + "y":92 + }, + { + "t":16, + "x":107, + "y":92 + }, + { + "t":16, + "x":108, + "y":92 + }, + { + "t":16, + "x":109, + "y":92 + }, + { + "t":16, + "x":110, + "y":92 + }, + { + "t":16, + "x":109, + "y":93 + }, + { + "t":16, + "x":108, + "y":93 + }, + { + "t":16, + "x":107, + "y":93 + }, + { + "t":16, + "x":106, + "y":93 + }, + { + "t":16, + "x":105, + "y":93 + }, + { + "t":16, + "x":105, + "y":94 + }, + { + "t":16, + "x":105, + "y":95 + }, + { + "t":16, + "x":105, + "y":96 + }, + { + "t":16, + "x":105, + "y":97 + }, + { + "t":16, + "x":106, + "y":96 + }, + { + "t":16, + "x":106, + "y":95 + }, + { + "t":16, + "x":106, + "y":94 + }, + { + "t":16, + "x":107, + "y":94 + }, + { + "t":16, + "x":108, + "y":94 + }, + { + "t":16, + "x":107, + "y":95 }, { "t":7, - "x":95, - "y":107 + "x":97, + "y":93 }, { "t":8, + "x":98, + "y":93 + }, + { + "t":5, + "x":97, + "y":102 + }, + { + "t":5, "x":96, - "y":107 + "y":102 }, { "t":9, - "x":98, - "y":102 - }, - { - "t":11, - "x":81, - "y":107 - }, - { - "t":11, - "x":82, - "y":107 - }, - { - "t":5, - "x":84, - "y":107 - }, - { - "t":5, - "x":83, - "y":107 - }, - { - "t":5, - "x":82, - "y":106 - }, - { - "t":5, - "x":81, - "y":106 - }, - { - "t":5, - "x":81, - "y":105 - }, - { - "t":5, - "x":91, - "y":107 - }, - { - "t":5, - "x":91, - "y":105 - }, - { - "t":5, - "x":91, - "y":106 - }, - { - "t":5, - "x":89, - "y":107 - }, - { - "t":5, - "x":90, - "y":107 - }, - { - "t":5, - "x":90, - "y":106 - }, - { - "t":5, - "x":91, - "y":104 - }, - { - "t":5, - "x":87, - "y":94 - }, - { - "t":5, - "x":87, - "y":93 - }, - { - "t":5, - "x":88, - "y":93 - }, - { - "t":5, - "x":90, - "y":92 - }, - { - "t":5, - "x":89, - "y":92 - }, - { - "t":5, - "x":88, - "y":92 - }, - { - "t":5, - "x":87, - "y":92 - }, - { - "t":13, - "x":98, - "y":98 - }, - { - "t":13, - "x":98, - "y":99 - }, - { - "t":13, - "x":98, - "y":100 - }, - { - "t":13, - "x":98, + "x":96, "y":101 }, { - "t":13, - "x":98, + "t":12, + "x":101, "y":102 }, { - "t":2, - "x":80, - "y":93 + "t":10, + "x":100, + "y":86 }, { - "t":2, - "x":82, - "y":91 + "t":9, + "x":100, + "y":84 }, { - "t":2, - "x":82, - "y":93 + "t":9, + "x":102, + "y":82 }, { - "t":3, - "x":81, - "y":93 + "t":5, + "x":102, + "y":83 }, { - "t":3, - "x":83, - "y":91 + "t":5, + "x":102, + "y":84 }, { - "t":3, - "x":84, - "y":91 - }, - { - "t":3, - "x":85, - "y":91 - }, - { - "t":4, - "x":82, - "y":92 - }, - { - "t":4, - "x":80, - "y":94 - }, - { - "t":4, - "x":80, - "y":95 - }, - { - "t":16, - "x":81, - "y":95 - }, - { - "t":16, - "x":81, - "y":94 - }, - { - "t":16, - "x":82, - "y":94 - }, - { - "t":16, - "x":82, - "y":95 - }, - { - "t":16, - "x":83, - "y":95 - }, - { - "t":16, - "x":83, - "y":94 - }, - { - "t":16, - "x":83, - "y":93 - }, - { - "t":16, - "x":83, - "y":92 - }, - { - "t":16, - "x":85, - "y":92 - }, - { - "t":16, - "x":84, - "y":92 - }, - { - "t":16, - "x":84, - "y":93 - }, - { - "t":16, - "x":84, - "y":94 - }, - { - "t":16, - "x":84, - "y":95 - }, - { - "t":16, - "x":85, - "y":95 - }, - { - "t":16, - "x":85, - "y":94 - }, - { - "t":16, - "x":85, - "y":93 + "t":5, + "x":101, + "y":84 } ] } \ No newline at end of file diff --git a/Source/data/2. ROCKET.json b/Source/data/2. ROCKET.json new file mode 100644 index 0000000..15ba4e1 --- /dev/null +++ b/Source/data/2. ROCKET.json @@ -0,0 +1,1558 @@ +{ + "bigrocket": { + "x":1544, + "y":1168 + }, + "next":"data/3. STAR.json", + "fuel": [ + ], + "inverted":false, + "rocket": { + "x":1562, + "y":1564 + }, + "rotators": [ + ], + "saws": [ + { + "ends": { + "x":1664, + "y":1328 + }, + "speed":4, + "start": { + "x":1472, + "y":1328 + } + }, + { + "ends": { + "x":1472, + "y":1440 + }, + "speed":4, + "start": { + "x":1664, + "y":1440 + } + } + ], + "song":"song2", + "tiles": [ + { + "t":2, + "x":97, + "y":101 + }, + { + "t":2, + "x":98, + "y":101 + }, + { + "t":2, + "x":99, + "y":101 + }, + { + "t":2, + "x":100, + "y":101 + }, + { + "t":2, + "x":101, + "y":101 + }, + { + "t":2, + "x":101, + "y":98 + }, + { + "t":2, + "x":101, + "y":99 + }, + { + "t":2, + "x":101, + "y":100 + }, + { + "t":2, + "x":97, + "y":98 + }, + { + "t":2, + "x":97, + "y":99 + }, + { + "t":2, + "x":97, + "y":100 + }, + { + "t":2, + "x":96, + "y":98 + }, + { + "t":2, + "x":95, + "y":98 + }, + { + "t":2, + "x":94, + "y":98 + }, + { + "t":2, + "x":102, + "y":98 + }, + { + "t":2, + "x":103, + "y":98 + }, + { + "t":2, + "x":104, + "y":98 + }, + { + "t":2, + "x":105, + "y":98 + }, + { + "t":2, + "x":105, + "y":97 + }, + { + "t":2, + "x":105, + "y":96 + }, + { + "t":2, + "x":105, + "y":95 + }, + { + "t":2, + "x":105, + "y":94 + }, + { + "t":2, + "x":105, + "y":93 + }, + { + "t":2, + "x":105, + "y":92 + }, + { + "t":2, + "x":105, + "y":91 + }, + { + "t":2, + "x":105, + "y":90 + }, + { + "t":2, + "x":105, + "y":89 + }, + { + "t":2, + "x":105, + "y":88 + }, + { + "t":2, + "x":93, + "y":97 + }, + { + "t":2, + "x":93, + "y":98 + }, + { + "t":2, + "x":93, + "y":97 + }, + { + "t":2, + "x":93, + "y":96 + }, + { + "t":2, + "x":93, + "y":95 + }, + { + "t":2, + "x":93, + "y":94 + }, + { + "t":2, + "x":93, + "y":93 + }, + { + "t":2, + "x":93, + "y":92 + }, + { + "t":2, + "x":93, + "y":91 + }, + { + "t":2, + "x":93, + "y":90 + }, + { + "t":2, + "x":93, + "y":89 + }, + { + "t":2, + "x":93, + "y":88 + }, + { + "t":2, + "x":93, + "y":86 + }, + { + "t":2, + "x":93, + "y":87 + }, + { + "t":2, + "x":93, + "y":85 + }, + { + "t":2, + "x":93, + "y":84 + }, + { + "t":2, + "x":93, + "y":83 + }, + { + "t":2, + "x":93, + "y":82 + }, + { + "t":2, + "x":93, + "y":81 + }, + { + "t":2, + "x":93, + "y":80 + }, + { + "t":2, + "x":93, + "y":79 + }, + { + "t":2, + "x":93, + "y":78 + }, + { + "t":2, + "x":93, + "y":78 + }, + { + "t":2, + "x":93, + "y":77 + }, + { + "t":2, + "x":93, + "y":76 + }, + { + "t":2, + "x":93, + "y":75 + }, + { + "t":2, + "x":93, + "y":74 + }, + { + "t":2, + "x":105, + "y":87 + }, + { + "t":2, + "x":105, + "y":86 + }, + { + "t":2, + "x":105, + "y":85 + }, + { + "t":2, + "x":105, + "y":84 + }, + { + "t":2, + "x":105, + "y":84 + }, + { + "t":2, + "x":105, + "y":83 + }, + { + "t":2, + "x":105, + "y":82 + }, + { + "t":2, + "x":105, + "y":81 + }, + { + "t":2, + "x":105, + "y":80 + }, + { + "t":2, + "x":105, + "y":79 + }, + { + "t":2, + "x":105, + "y":79 + }, + { + "t":2, + "x":105, + "y":78 + }, + { + "t":2, + "x":105, + "y":77 + }, + { + "t":2, + "x":105, + "y":76 + }, + { + "t":2, + "x":105, + "y":75 + }, + { + "t":2, + "x":105, + "y":74 + }, + { + "t":2, + "x":105, + "y":74 + }, + { + "t":2, + "x":100, + "y":78 + }, + { + "t":2, + "x":99, + "y":78 + }, + { + "t":2, + "x":98, + "y":78 + }, + { + "t":2, + "x":97, + "y":78 + }, + { + "t":2, + "x":101, + "y":78 + }, + { + "t":3, + "x":100, + "y":78 + }, + { + "t":3, + "x":99, + "y":78 + }, + { + "t":3, + "x":98, + "y":78 + }, + { + "t":2, + "x":105, + "y":73 + }, + { + "t":2, + "x":93, + "y":73 + }, + { + "t":2, + "x":102, + "y":73 + }, + { + "t":2, + "x":103, + "y":73 + }, + { + "t":2, + "x":104, + "y":73 + }, + { + "t":2, + "x":96, + "y":73 + }, + { + "t":2, + "x":95, + "y":73 + }, + { + "t":2, + "x":94, + "y":73 + }, + { + "t":2, + "x":102, + "y":72 + }, + { + "t":2, + "x":102, + "y":71 + }, + { + "t":2, + "x":102, + "y":70 + }, + { + "t":2, + "x":102, + "y":69 + }, + { + "t":2, + "x":102, + "y":68 + }, + { + "t":2, + "x":102, + "y":68 + }, + { + "t":2, + "x":102, + "y":67 + }, + { + "t":2, + "x":102, + "y":66 + }, + { + "t":2, + "x":102, + "y":65 + }, + { + "t":2, + "x":101, + "y":65 + }, + { + "t":2, + "x":100, + "y":65 + }, + { + "t":2, + "x":99, + "y":65 + }, + { + "t":2, + "x":98, + "y":65 + }, + { + "t":2, + "x":97, + "y":65 + }, + { + "t":2, + "x":96, + "y":72 + }, + { + "t":2, + "x":96, + "y":71 + }, + { + "t":2, + "x":96, + "y":70 + }, + { + "t":2, + "x":96, + "y":69 + }, + { + "t":2, + "x":96, + "y":68 + }, + { + "t":2, + "x":96, + "y":67 + }, + { + "t":2, + "x":96, + "y":66 + }, + { + "t":2, + "x":96, + "y":65 + }, + { + "t":4, + "x":93, + "y":85 + }, + { + "t":4, + "x":93, + "y":86 + }, + { + "t":4, + "x":93, + "y":87 + }, + { + "t":4, + "x":93, + "y":88 + }, + { + "t":4, + "x":93, + "y":89 + }, + { + "t":4, + "x":93, + "y":90 + }, + { + "t":4, + "x":93, + "y":92 + }, + { + "t":4, + "x":93, + "y":93 + }, + { + "t":4, + "x":93, + "y":94 + }, + { + "t":4, + "x":93, + "y":95 + }, + { + "t":4, + "x":93, + "y":96 + }, + { + "t":4, + "x":93, + "y":97 + }, + { + "t":4, + "x":97, + "y":99 + }, + { + "t":4, + "x":97, + "y":100 + }, + { + "t":4, + "x":101, + "y":100 + }, + { + "t":4, + "x":101, + "y":99 + }, + { + "t":4, + "x":105, + "y":97 + }, + { + "t":4, + "x":105, + "y":96 + }, + { + "t":4, + "x":105, + "y":95 + }, + { + "t":4, + "x":105, + "y":94 + }, + { + "t":4, + "x":105, + "y":93 + }, + { + "t":4, + "x":105, + "y":92 + }, + { + "t":4, + "x":105, + "y":90 + }, + { + "t":4, + "x":105, + "y":89 + }, + { + "t":4, + "x":105, + "y":88 + }, + { + "t":4, + "x":105, + "y":87 + }, + { + "t":4, + "x":105, + "y":86 + }, + { + "t":4, + "x":105, + "y":85 + }, + { + "t":4, + "x":105, + "y":83 + }, + { + "t":4, + "x":105, + "y":82 + }, + { + "t":4, + "x":105, + "y":81 + }, + { + "t":4, + "x":105, + "y":80 + }, + { + "t":4, + "x":105, + "y":79 + }, + { + "t":4, + "x":105, + "y":78 + }, + { + "t":4, + "x":105, + "y":77 + }, + { + "t":4, + "x":105, + "y":76 + }, + { + "t":4, + "x":105, + "y":75 + }, + { + "t":4, + "x":105, + "y":74 + }, + { + "t":4, + "x":102, + "y":72 + }, + { + "t":4, + "x":102, + "y":71 + }, + { + "t":4, + "x":102, + "y":70 + }, + { + "t":4, + "x":102, + "y":69 + }, + { + "t":4, + "x":102, + "y":68 + }, + { + "t":4, + "x":102, + "y":67 + }, + { + "t":4, + "x":102, + "y":66 + }, + { + "t":4, + "x":96, + "y":66 + }, + { + "t":4, + "x":96, + "y":67 + }, + { + "t":4, + "x":96, + "y":68 + }, + { + "t":4, + "x":96, + "y":69 + }, + { + "t":4, + "x":96, + "y":70 + }, + { + "t":4, + "x":96, + "y":71 + }, + { + "t":4, + "x":96, + "y":72 + }, + { + "t":4, + "x":93, + "y":75 + }, + { + "t":4, + "x":93, + "y":76 + }, + { + "t":4, + "x":93, + "y":77 + }, + { + "t":4, + "x":93, + "y":73 + }, + { + "t":4, + "x":93, + "y":74 + }, + { + "t":4, + "x":93, + "y":78 + }, + { + "t":4, + "x":93, + "y":79 + }, + { + "t":4, + "x":93, + "y":80 + }, + { + "t":4, + "x":93, + "y":81 + }, + { + "t":4, + "x":93, + "y":82 + }, + { + "t":4, + "x":93, + "y":83 + }, + { + "t":2, + "x":93, + "y":73 + }, + { + "t":3, + "x":94, + "y":73 + }, + { + "t":3, + "x":95, + "y":73 + }, + { + "t":3, + "x":97, + "y":65 + }, + { + "t":3, + "x":98, + "y":65 + }, + { + "t":3, + "x":99, + "y":65 + }, + { + "t":3, + "x":100, + "y":65 + }, + { + "t":3, + "x":101, + "y":65 + }, + { + "t":3, + "x":104, + "y":73 + }, + { + "t":3, + "x":103, + "y":73 + }, + { + "t":3, + "x":104, + "y":98 + }, + { + "t":3, + "x":103, + "y":98 + }, + { + "t":3, + "x":102, + "y":98 + }, + { + "t":3, + "x":100, + "y":101 + }, + { + "t":3, + "x":99, + "y":101 + }, + { + "t":3, + "x":98, + "y":101 + }, + { + "t":3, + "x":96, + "y":98 + }, + { + "t":3, + "x":95, + "y":98 + }, + { + "t":3, + "x":94, + "y":98 + }, + { + "t":3, + "x":102, + "y":101 + }, + { + "t":3, + "x":96, + "y":101 + }, + { + "t":2, + "x":95, + "y":101 + }, + { + "t":2, + "x":94, + "y":100 + }, + { + "t":2, + "x":93, + "y":99 + }, + { + "t":2, + "x":103, + "y":101 + }, + { + "t":2, + "x":104, + "y":100 + }, + { + "t":2, + "x":105, + "y":99 + }, + { + "t":13, + "x":95, + "y":99 + }, + { + "t":13, + "x":94, + "y":99 + }, + { + "t":13, + "x":96, + "y":99 + }, + { + "t":13, + "x":96, + "y":100 + }, + { + "t":13, + "x":95, + "y":100 + }, + { + "t":13, + "x":102, + "y":100 + }, + { + "t":13, + "x":103, + "y":100 + }, + { + "t":13, + "x":103, + "y":99 + }, + { + "t":13, + "x":102, + "y":99 + }, + { + "t":13, + "x":104, + "y":99 + }, + { + "t":5, + "x":96, + "y":97 + }, + { + "t":5, + "x":95, + "y":97 + }, + { + "t":5, + "x":94, + "y":97 + }, + { + "t":5, + "x":94, + "y":96 + }, + { + "t":5, + "x":94, + "y":95 + }, + { + "t":5, + "x":94, + "y":94 + }, + { + "t":5, + "x":95, + "y":95 + }, + { + "t":5, + "x":95, + "y":96 + }, + { + "t":5, + "x":102, + "y":97 + }, + { + "t":5, + "x":101, + "y":97 + }, + { + "t":5, + "x":103, + "y":97 + }, + { + "t":5, + "x":104, + "y":97 + }, + { + "t":5, + "x":104, + "y":96 + }, + { + "t":5, + "x":103, + "y":96 + }, + { + "t":2, + "x":106, + "y":84 + }, + { + "t":2, + "x":106, + "y":91 + }, + { + "t":2, + "x":107, + "y":86 + }, + { + "t":2, + "x":107, + "y":85 + }, + { + "t":2, + "x":92, + "y":84 + }, + { + "t":2, + "x":91, + "y":85 + }, + { + "t":2, + "x":91, + "y":86 + }, + { + "t":2, + "x":90, + "y":87 + }, + { + "t":2, + "x":90, + "y":88 + }, + { + "t":2, + "x":89, + "y":89 + }, + { + "t":2, + "x":89, + "y":90 + }, + { + "t":2, + "x":89, + "y":91 + }, + { + "t":2, + "x":90, + "y":91 + }, + { + "t":2, + "x":91, + "y":91 + }, + { + "t":2, + "x":92, + "y":91 + }, + { + "t":2, + "x":107, + "y":91 + }, + { + "t":2, + "x":108, + "y":91 + }, + { + "t":2, + "x":109, + "y":91 + }, + { + "t":2, + "x":109, + "y":90 + }, + { + "t":2, + "x":109, + "y":89 + }, + { + "t":2, + "x":108, + "y":88 + }, + { + "t":2, + "x":108, + "y":87 + }, + { + "t":16, + "x":106, + "y":90 + }, + { + "t":16, + "x":107, + "y":90 + }, + { + "t":16, + "x":108, + "y":90 + }, + { + "t":16, + "x":108, + "y":89 + }, + { + "t":16, + "x":107, + "y":89 + }, + { + "t":16, + "x":107, + "y":88 + }, + { + "t":16, + "x":107, + "y":87 + }, + { + "t":16, + "x":106, + "y":87 + }, + { + "t":16, + "x":106, + "y":86 + }, + { + "t":16, + "x":106, + "y":85 + }, + { + "t":16, + "x":106, + "y":88 + }, + { + "t":16, + "x":106, + "y":89 + }, + { + "t":16, + "x":92, + "y":90 + }, + { + "t":16, + "x":91, + "y":90 + }, + { + "t":16, + "x":90, + "y":90 + }, + { + "t":16, + "x":90, + "y":89 + }, + { + "t":16, + "x":91, + "y":89 + }, + { + "t":16, + "x":92, + "y":89 + }, + { + "t":16, + "x":92, + "y":88 + }, + { + "t":16, + "x":92, + "y":87 + }, + { + "t":16, + "x":92, + "y":86 + }, + { + "t":16, + "x":92, + "y":86 + }, + { + "t":16, + "x":92, + "y":85 + }, + { + "t":16, + "x":91, + "y":88 + }, + { + "t":16, + "x":91, + "y":87 + }, + { + "t":9, + "x":107, + "y":84 + }, + { + "t":2, + "x":105, + "y":70 + }, + { + "t":2, + "x":104, + "y":70 + }, + { + "t":2, + "x":104, + "y":67 + }, + { + "t":2, + "x":103, + "y":67 + }, + { + "t":4, + "x":105, + "y":72 + }, + { + "t":4, + "x":105, + "y":71 + }, + { + "t":4, + "x":104, + "y":69 + }, + { + "t":4, + "x":104, + "y":68 + }, + { + "t":4, + "x":94, + "y":68 + }, + { + "t":4, + "x":94, + "y":69 + }, + { + "t":4, + "x":93, + "y":71 + }, + { + "t":4, + "x":93, + "y":72 + }, + { + "t":2, + "x":93, + "y":70 + }, + { + "t":2, + "x":94, + "y":70 + }, + { + "t":2, + "x":95, + "y":67 + }, + { + "t":2, + "x":94, + "y":67 + }, + { + "t":15, + "x":103, + "y":72 + }, + { + "t":15, + "x":104, + "y":72 + }, + { + "t":15, + "x":104, + "y":71 + }, + { + "t":15, + "x":103, + "y":71 + }, + { + "t":15, + "x":103, + "y":70 + }, + { + "t":15, + "x":103, + "y":69 + }, + { + "t":15, + "x":103, + "y":69 + }, + { + "t":15, + "x":103, + "y":68 + }, + { + "t":15, + "x":95, + "y":68 + }, + { + "t":15, + "x":95, + "y":69 + }, + { + "t":15, + "x":95, + "y":70 + }, + { + "t":15, + "x":95, + "y":71 + }, + { + "t":15, + "x":95, + "y":72 + }, + { + "t":15, + "x":94, + "y":72 + }, + { + "t":15, + "x":94, + "y":71 + } + ] +} \ No newline at end of file diff --git a/Source/data/3. STAR.json b/Source/data/3. STAR.json new file mode 100644 index 0000000..7c9b00d --- /dev/null +++ b/Source/data/3. STAR.json @@ -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 + } + ] +} \ No newline at end of file diff --git a/Source/data/4. SPINNER.json b/Source/data/4. SPINNER.json new file mode 100644 index 0000000..596c600 --- /dev/null +++ b/Source/data/4. SPINNER.json @@ -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 + } + ] +} \ No newline at end of file diff --git a/Source/gfx/Symbols.fnt b/Source/gfx/Symbols.fnt index 473fdbc..eb66a6d 100644 --- a/Source/gfx/Symbols.fnt +++ b/Source/gfx/Symbols.fnt @@ -1,22 +1,23 @@ ---metrics={"baseline":17,"xHeight":1,"capHeight":1,"pairs":{},"left":[],"right":[]} -datalen=1472 -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 -width=18 -height=18 +--metrics={"baseline":34,"xHeight":2,"capHeight":2,"pairs":{},"left":[],"right":[]} +datalen=3256 +data=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 +width=36 +height=36 tracking=1 -space 11 -� 10 -u 17 -p 17 -d 17 -l 17 -r 17 -A 17 -C 17 -B 17 -D 17 -c 12 -O 14 +space 22 +� 20 +u 34 +p 34 +d 34 +l 34 +r 34 +A 34 +C 34 +B 34 +D 34 +c 24 +O 28 +/ 10 diff --git a/Source/launcher/launchImages/1.png b/Source/launcher/launchImages/1.png new file mode 100644 index 0000000000000000000000000000000000000000..23f2599ae849a18189eaf1c85304b2223ac02d6d GIT binary patch literal 2289 zcmXX|dpJ~U7vE+kP zrs$N$^`j)0Ast5}BbRb{Ca3_qU%2%pXS_5U+e+rpwPcS&!&gB()H@ku82}_~Ue_fxUjL1=)5^ z8%@t5LTMzNPiE2;^{gED`HL^kA|&;ghcnv*3mL5v&0jjHmiZx6aQ-gL6k3VJ>kE4g z+6Iha8>=HI04n;4vAPdfxtPm^894}G*z)h?5fV8jA~e(E`dUah$UUR|qUNpQ(8`In zjlfI$g@=W`L(C{&%t6V#;Vq1qZ5#gZLDlL1*m_+73hE(yC26Zc*$MdGOgg%LUTFU( z3PCjX#RbKsCIg>G(@2#&s_LlJv_#yakI6a*ufTS9L_w~^N4hn*KhzkQQ0-WYz*+Z? zYeq~6y9)zWU?(Kvb@#$bilf=o0f2WE-VK24MlxNyH$BjS14#v_l6l00B0Eziv|u8! zj__FFAMgO_nlj0!CJ8;W6}9Zw%u${YWE7@NvXxjou$IJ0x=y;-vlLi{Cz?u%P13t# zw$)sb5w^n+p31|UJu4qpm#A=iM(oVsm0tAxg;GldL-WYX?r=U1`1l}nk7hHH9_$sI z+<~*3mIT9x+At7_H=w>=8oS;s9Xe|W`xUq_NsusGb_)-{N7?Bx`ZHcX7G$Tqx3A+% zeT(JI*>GY)Yi6?prz79#8?OT2@yZva{o*kId?mAeippdi%X`8*<3>ME9|8mraxr5A zBV+wLLJsjN7&zfoIE~QNf{D`NVka^uHb#DvsYoo*O^lJ+DGEIA+71PH!U&J+t6iua z#7eIzD-5bkbT?3Ya$E~vAKm)hN6}?y6UAA@3x=y;0o>j_S}zt>wylX`pqNOw7va5V zL@tf7yYDD)qMBtj(I7qAU!oEE*M*x)-v!RHo#92El2;oAfw6v-E3#xh<}|29pnRX} zW=)8&a&IQIo~s>rqQ5-PS%#mYyeb@WiKr)pJJRHW?Xxys#7y zYen}J3X(*Y?8B=^3;@+uP&Sr4Z)kv#r0<*`*6YSl(NcRY`cPeyQG&R6-39c@4#(m&Tz$@KoU)1vz_hA%uY8`VSoDb$6rpejetzSK5! zvVMESG1-yDEQ3Xh)BWhq33{WdyI3n_UVclO^48M;?!lzCS}>XF+!Lg05brdZL#!(v zEeDjkzaK}jxEg5b#ckm33_&7F<+g{aV%=)#h&z~o|5EYy2f<BSI9-FDDJf&%J#P#ea zry*0r+1RDTrbf)zNgz=J_}+3BTlM`BP<}1tmA$95<~_;7t~g?;*Gn<3bI#bGUYzWR z@B7>A=RqJxy=ZL*nWJj-4 z+YbaHo0!UL*{|;rG5|{xc(WN?GMtRy{0gRUhgE*qLww!4Aphk%m=iw$e5Y24oXSaL z%F?NSR;Jmq;vsN)fhn_$v~*^Tf4BOS9>dsK(Qq$Z_g(J|-L}T8V@fQyNbNzLoMwg9 z82jyRm-)j|igOi5w%C=D`wQ6ogZh~D=55k<@5YIXT+FM-U~wY@C%x1)A2e{i^Gkiz zL4aBJHjy0NiVwf!IGoHbLib$)V`K2b%NWD&x1CE6jFyw1azUs%$}}!Mtnmhy)v6cI zcoIcZ>PFaUAAQOyVpjRFIM7uX8dsm7pC(%kQU;m3l_=EOhl97NBi7?e^huFq5P0>WarJJMsH%{8(-=<%%!F9%h?frB8hw^EE zrddtY)U%%)Sb4YoUS9GAKvs#WlMesASjegNo_3)J!b`4V9ny^zb;@$N=D6hQLYqE) zlmLLttD`(7aza}vGqO}R2!;I?y*GN~I8A`Ln5DrtX4&WgxG8zV217zhC@6 Dy)x2} literal 0 HcmV?d00001 diff --git a/Source/thankyous.txt b/Source/thankyous.txt index a9c2f44..d91ef51 100644 --- a/Source/thankyous.txt +++ b/Source/thankyous.txt @@ -1,4 +1,6 @@ -AndrewDavidJ - compatibility testing -SHiLLySiT (PD discord) - compatibility testing +AndrewDavidJ, SHiLLySiT - compatibility testing 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 \ No newline at end of file