1
00:00:00,330 --> 00:00:05,100
Hey guys, welcome to Day 23 of 100 Days of Code. Now,

2
00:00:05,100 --> 00:00:09,450
today we're going to be building towards our second capstone project,

3
00:00:10,050 --> 00:00:13,170
and this is going to be a turtle crossing game.

4
00:00:13,680 --> 00:00:17,190
You might've played Crossy Road. So this is a similar concept.

5
00:00:17,280 --> 00:00:22,050
We have a whole bunch of cars going across a super busy multi-lane highway

6
00:00:22,350 --> 00:00:25,890
and our turtle is the player who has to cross the road.

7
00:00:26,580 --> 00:00:30,990
This is what the gameplay looks like. The player controls the turtle

8
00:00:31,290 --> 00:00:33,240
which can only go forwards, and

9
00:00:33,900 --> 00:00:36,960
there's a whole bunch of randomly generated cars

10
00:00:37,200 --> 00:00:41,370
which are going horizontally across the screen. Now, once a player

11
00:00:41,370 --> 00:00:44,340
reaches the other side of the screen, the cars speed up,

12
00:00:44,550 --> 00:00:46,920
but the player goes back to the starting position,

13
00:00:47,190 --> 00:00:49,980
ready to cross the screen again. Now,

14
00:00:50,040 --> 00:00:53,610
at some point when the player turtle hits a car,

15
00:00:54,000 --> 00:00:57,720
then that is game over. It's a pretty simple game,

16
00:00:57,870 --> 00:01:01,710
but it's going to test you on a lot of things that you've learned so far,

17
00:01:02,040 --> 00:01:05,730
including how to great classes, how to inherit classes,

18
00:01:06,000 --> 00:01:11,000
how do you use the objects created from those classes and also your knowledge of

19
00:01:11,070 --> 00:01:14,430
the turtle coordinate system and the turtle game engine.

20
00:01:15,360 --> 00:01:19,050
Once you are ready, head over to the next lesson where you'll find the starting

21
00:01:19,050 --> 00:01:24,030
code for this project, and also you'll be able to choose your difficulty level.

22
00:01:24,720 --> 00:01:26,670
So head over there and get started now.

