2D Python game developed using PyGame package and Python 3.6
All images and background design were custom made using Gimp 2.8
- Character selection
- Background Music
- Shoot oil drop bullets to destroy rocks
- Clone repo to local machine
- Run OO_MikeMain.py
- Arrow Keys to control the player [up/down/left/right]
- Intro Screen mouse click to either play or quit the game
Dodge rocks and collect olive oil containers.
- Sound clip triggers
- High Score module for keeping track of past achievements
- Player health bar/multiple lives for continued gameplay
- Player powerups and discrete levels
- Standalone Windows .exe file
https://www.pygame.org/wiki/GettingStarted
Start by creating a virtualenv so that you can develop without worrying about conflicting system packages:
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
You can now run the game with:
python OOMike_Main.py
Run deactivate
to exit the virtualenv.