Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Very good game without engine! It's always risky to create a game for jam that has many levels, but this game is fun with good optimizing and fun factor! 
A small advice for pygame, when you quit pygame, you don't leave the main loop and it will throw an error for the terminated pygame instance. You have to quit from the application too:

if event.type == pygame.QUIT:

            pygame.quit()

            sys.exit()     # thats the neat part

Good work after all!

Thank you for your feedback ! We had difficulties to create many levels, but we are glad to hear that you liked them ! As for the pygame advice, thank you very much ! I didn't know why the game bugged every time I would close the game and I tried several methods without success :)