Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Cool to see another pico8 submission :P This is definitely one of the most polished submissions!
Can't really say anything bad about it, just a little stressful for a genre thats usually more relaxed. Now I kind of want to make a tower defense game too :D

Haha, good luck 😉 I also enjoyed your game, tho, I would give a tiny tip for better outlines (well, they look better to me):

function ospr(s, x, y)

 all_black()

 for xx=-1,1 do for yy=-1,1 do if (abs(xx)+abs(yy)==1) spr(s,x,y)

 end end

 pal()

 spr(s,x,y)

end

I hope this helps ;)

(+1)

Thank you! And oh man, I feel really stupid now... I did all the outlines per hand on the sprites xD

Hehe, I did that too, to be true. They just look like in-code ones. Sprite ones save us some CPU 😉 This game runs on 60 fps, for example.