Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Thank you! I was planning on doing more and better level crafting, but just ran out of time. I actually managed to clear level 9, but level 10 is pretty much impossible without spending like an hour on it lol

There are 3 different brick sizes (64,32,16) (but they all have to be the same in a level). For example, level 10 is basically impossible but I wanted to drop the 16px bricks for anyone who got that far. Here's level 10 config:

{
    size:16,
    map:'1'.repeat(50)+
        '2'.repeat(50)+
        '3'.repeat(50)+
        '4'.repeat(50)+
        '5'.repeat(50)+
        '6'.repeat(50)+
        '7'.repeat(50)+
        '8'.repeat(50)+
        '9'.repeat(50)+
        'a'.repeat(50)+
        '9'.repeat(50)+
        '8'.repeat(50)+
        '7'.repeat(50)+
        '6'.repeat(50)+
        '5'.repeat(50)+
        '1'.repeat(50)+
        '2'.repeat(50)+
        '3'.repeat(50)+
        '4'.repeat(50)+
        '5'.repeat(50)+
        '6'.repeat(50)+
        '7'.repeat(50)+
        '8'.repeat(50)+
        '9'.repeat(50)+
        'a'.repeat(50)+
        '9'.repeat(50)+
        '8'.repeat(50)+
        '7'.repeat(50)+
        '6'.repeat(50)+
        '5'.repeat(50)
    }


And a screenshot 😬