Welcome to our festive Christmas game! In this lesson, we will create a fun Scratch game where you control a reindeer to catch falling snowflakes.
Letβs get started and make it snow! This project will teach you important coding skills like using events, motion blocks, sensing blocks, and control blocks.
By the end of the lesson, youβll have a working game and understand how clones work in Scratch to create multiple snowflakes.
Have fun coding your Christmas game!
Go to Scratch and click on Create to start a new project. This will open a blank Scratch stage with a default cat sprite.
Click on the cat sprite in the sprites pane to select it. Then, click the trash can icon in the grey area around the sprite thumbnail to delete the cat sprite. Your project is now ready for the Christmas game!
Go to the Scratch website using the link below and click on the 'Create' link in the blue bar at the top.
By default, each new project starts with the cat sprite already added. To delete the cat click on the x in the blue circle beside the cat in the sprite list.
To add a backdrop from the backdrop library follow these steps:
You can use search box or the filter links (Fantasy, Music, Sports etc) to locate your backdrop.
In the game we will move the Reindeer left and right at the bottom of the stage to try and catch falling Snowflakes.
Add the Reindeer sprite from the sprite library and give it the following code.
when green flag clicked
go to x (0) y (-140) // place it at the middle bottom
forever
if < key (left arrow v) pressed? > then
change x by (-10) // move left
end
if < key (right arrow v) pressed? > then
change x by (10) // move right
end
end
To add a sprite from the sprite library follow these steps:
You can use search box or the filter links (Animals, People, Fantasy etc) to locate your sprite.
To add a sprite from the sprite library follow these steps:
You can use search box or the filter links (Animals, People, Fantasy etc) to locate your sprite.