Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

No no, the game is made with Pico8 virtual console. This system has a lot a restriction, 128x128 pixels, 4 audio channels, 16 colours... and 8192 "Tokens" to simulate program memory. One of the challenge when programming on this system is to make a maximum of feature fit in those 8192 tokens. When hitting the limit, the only way to add feature is to optimize the ones that already exists. At a moment optimization also hit a limit and you have the best that pico8 can offer :)

The other way to go further is to port the game on a real platform where there is no such limit, such as unity or anything else. But that is another story

(+1)

Oh very interesting the constraints. In that sense it's like a NES of some sorts. Is Pico-8 written in Lua?

pico8 expose LUA so it is very accessible. You have a kind of NES or SNES, with a little studio for sprite,map,sound fix and music. One big advantage is that you focus directly on the game and you don't lose time in details 😃