Flappy Parrot

Description

Today we made the parrot Devin avoid the trees for food.

Click on the green flag to start.

Or click Flappy Parrot, and then learn online tutorial on the Scratch official website.

Required Components

  • A Screen

  • Scratch 3 (either online or offline)

You Will Learn

  • Add more costumes to sprites and let them change their appearance

  • Logical Operation

  • Determine if the sprites are touching each other

Lesson Guide

Arrange the parrot and background image

First, we delete the default sprites and add Parrot sprites and Blue Sky backdrop. Change the size of the Parrot sprite to 20.

_images/flappy1.png

Upload the Trees sprite, select the Upload Sprite option, find the “Trees.png” file, and upload it.

Click Costumes, and then click the “Upload Costume” option to upload Trees2.png, Trees3.png, Trees4.png, and Trees5.png.

_images/flappy2.jpg

Copy out the second Trees.

_images/flappy3.png

Let the Parrot sprite fly on the stage

Parrot stayed still, and the Trees and Trees2 sprites kept moving to the left, so it looked like the Parrot sprites were flying on the stage!

Set the initial position and movement of the Trees sprite so that it can reach the far left from the far right of the stage. Then, randomly changing costumes reappear on the far right side of the stage.

_images/flappy4.png

The code of the Trees2 sprite is almost the same as the Trees sprite, the only difference is that it hides for 1.5 seconds at the beginning.

_images/flappy5.png

Now, click on the green flag to see the effect of this flight… Very good, the Parrot sprite seems to be flying to the right side of the stage.

Let the space button control Parrot to fly

When the game starts, Parrot will continue to drop down, that is, the y coordinate will continue to decrease. When we press the space button, the y coordinate of Parrot will increase.

_images/flappy6.png

Constantly increase the speed of Parrot falling through variables

Parrot drop is a bit slow, we add flight variables to make Parrot drop more and more!

_images/flappy7.png

Change the costume so that Parrot has flight animation

When we press the Space button, Parrot’s clothing switches to Parrot-b.

_images/flappy8.png

Calculate the score!

Create a new score variable. When the Trees and Trees2 sprites move to the right side of the Parrot sprite, it means that Parrot has crossed the Trees and Trees2. At this time, we will add score+1. In order to avoid always adding points, we need to add it after score+1 Wait 1 second for the code. (This code is required in both Trees and Trees2 sprites!)

_images/flappy9.png

Game failure mechanism

When the Parrot sprite encounters a tree or falls to the ground during the flight, we judge the game is over, and then we stop all scripts.

_images/flappy10.png

Challenge

I believe that you will be smart enough to program and implement this game soon. Next, we will add some challenges to enrich our game content.

  • When the game fails, it switches to a cursing background screen.

  • Add a countdown screen to the game start screen, let us prepare for the game.