Fireball is a python game using pygame where a player has to avoid a fireball. The longer the player stays alive, the more points the player gets.
-
Player starts the game and there will be the player and a fireball initially.
-
Player will dodge the ball using the keyboard arrow keys, while the fireball will change positions randomly to try to follow the player.
-
After a specific time according to the levels (Easy|Medium|Hard) more fireballs will be added to the game.
-
If the player collides with any of the fireballs, the game ends and it displays the total score.
Contributions are welcome!
Please carefully read this page to make the code review process go as smoothly as possible and to maximize the likelihood of your contribution being merged.
Please check twice if your PR data exist before.
For bug reports or requests submit an issue.
The preferred way to contribute is to fork the main repository on GitHub.
-
Fork the main repository. Click on the 'Fork' button near the top of the page. This creates a copy of the code under your account on the GitHub server.
-
Clone this copy to your local disk:
$ git clone [email protected]:YourLogin/fireball.git $ cd fireball
-
Create a branch to hold your changes and start making changes. Don't work in the
master
branch!$ git checkout -b my-feature
-
Work on this copy on your computer using Git to do the version control. When you're done editing, run the following to record your changes in Git:
$ git add modified_files $ git commit
-
Push your changes to GitHub with:
$ git push -u origin my-feature
-
Finally, go to the web page of your fork of the
fireball
repo and click 'Pull Request' to send your changes for review.
If you are not familiar with pull requests, review the pull request docs.