Space Invaders tribute game built with python and the pygame engine
This is a Python implementation of the classic arcade game, Space Invaders, using the Pygame library. The player controls a spaceship at the bottom of the screen that can move left or right and shoot bullets upwards to destroy the enemies. The game ends if an enemy reaches the player or if all enemies are destroyed.
- Player movement and shooting
- Enemy movement and collision detection
- Scoring system
- Game over conditions
- Sound effects
- Download the game files from the repository.
- Install Python from the official website: https://www.python.org/downloads/.
- Install Pygame by running
pip install pygame
in your terminal. - Run the game by navigating to the directory where you extracted the game files and typing
python space_invaders.py
in the terminal.
- Use the left and right arrow keys to move the player.
- Press the space bar to shoot bullets.