Stack: ReactJS, TailwindCSS
This README was made using READMEwizard (it's an app made by me :) Check it out!)
Save the files using ctrl/cmd + s and use them.
- Flappeagen - Prime's a bird. He tries to avoid VSCode... Help him.
- ZachTheBird - Let's remember the issues with the Slack team... (We were at their gunpoint)
- MuskyBird - Richest bird!!
- Space/W/UpArrow to Flap
- Enter to Restart
- Touch to Jump
You can create your own Flappy Bird by creating a JSON file with this schema and then uploading it to the app.
{
"birdSprite": {
"normal": [
// for animation, this is the array of frames (max. 3 items)
"ri>" , // image
"ri>" , // image
"ri>" // image
],
"death": "ri>" // image
},
"pipeSprite": {
"sprite": "ri>" , // image
"fillType": "Stretch",
"distance": 1 // can be 1, 2, or 3 and nothing else
},
"bg": {
"opacity": 0.1, // range 0.1 to 1, Background Opacity
"bgColor": "#000000", // COLOR of Background
"baseColor": "#000000", // COLOR of Base
"bgImg": {
"sprite": "ri>" , // image
"fillType": "Cover"
},
"baseImg": {
"sprite": "ri>" , // image
"fillType": "Stretch"
}
},
"sounds": {
"flap": "ri>" , // audio
"death": "ri>" , // audio
"bgMusic": {
"file": "ri>" , // audio
"volume": 20 // range 20 to 100, if 0 don't add the file field (to save space)
},
"point": "ri>" // audio
},
"name": "rs>" // name of the game
}}Contributions are welcome! Please fork the repository and submit a pull request.
- Fork the project.
- Create a new branch:
git checkout -b feature/YourFeatureName
- Commit your changes:
git commit -m "Add some feature" - Push the branch:
git push origin feature/YourFeatureName
- Open a pull request.
This project is licensed under the MIT License.