Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koda7/brick-breaker-game
https://github.com/koda7/brick-breaker-game
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/koda7/brick-breaker-game
- Owner: Koda7
- Created: 2023-12-14T16:13:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-07T20:28:25.000Z (about 1 year ago)
- Last Synced: 2024-01-07T21:36:35.983Z (about 1 year ago)
- Language: Python
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brick-Breaker-Game
The game is made using Python and is a normal terminal game that involves breaking all the bricks using the ball and the paddle with lots of power-ups and more.
## Instructions
1. Open the terminal and run
```
pip3 install numpy
pip3 install colorama
```2. In the game folder run
```
python3 main.py
```## Game Instructions
- Use A and D to move the paddle left and right respectively
- Use Space to release the ball from the paddle
- Initially, 2 lives are given to the player
- Hitting the ground will result in the loss of a life
- For every brick destroyed 10 points are added to the score
- Power Ups are dropped when certain bricks are destroyed
- Every power-up lasts 5 seconds
- Type of Bricks1. Green Brick has strength 1
2. Yellow Brick has strength 2
3. Red Brick has strength 3
4. Cyan Brick is the unbreakable brick
5. Blue Brick is the exploding brick that destroys all adjacent bricks- Power Ups include
1. '+' : Expand the paddle by 2 units
2. '-' : Shrink the paddle by 2 units
3. x: Every ball present will be divided into 2
4. F: Increases the speed of the ball
5. G: Paddle grabs the ball and releases at will
6. T: Through ball in which ball destroys every brick in its path