A downloadable game for Windows

This game is about a slime blob who is stuck in a computer controlled by a malicious ai who doesn't let him escape. The blob uses his trusty shotgun and morphing abilities to try to get out and dodge the walls. 

This game was made for the pygame jam and just for recreational purposes which is why I do not want the giftcard and am not going to link my discord.

Run this game by opening python IDLE and then run it. if not working check if you have python IDLE and pygame downloaded.

Download

Download
practiceRequiringGame.zip 63 kB

Install instructions

Run this game by opening python IDLE and then run it. if not working check if you have python IDLE and pygame downloaded.

Comments

Log in with itch.io to leave a comment.

(7 edits)

I had to edit main.py to be able to play the game.

What to do:

Add this line on the top of the file:

from pathlib import Path

repleace all

pygame.image.load("path")

with

pygame.image.load(Path("path")) 

and rename file "Hard.png" in Assets folder to "hard.png"

After all of this changes, the code should run.

I know am a bit late but Thanks for the advice and will get around to implementing it.