From b0c690a6cdddecc9f887fdee98f4df431da20e1d Mon Sep 17 00:00:00 2001 From: MisterC Date: Tue, 31 Mar 2026 15:10:54 +0100 Subject: [PATCH] Apply LandingStripper migration --- en/landing.md | 22 +++++----------------- en/meta.yml | 18 +++++++++--------- en/step_1.md | 3 +-- en/step_2.md | 3 +-- en/step_3.md | 3 +-- en/step_4.md | 3 +-- en/step_5.md | 3 +-- en/step_6.md | 3 +-- en/step_7.md | 3 +-- en/step_8.md | 3 +-- 10 files changed, 22 insertions(+), 42 deletions(-) diff --git a/en/landing.md b/en/landing.md index dc57e72..6ed944c 100644 --- a/en/landing.md +++ b/en/landing.md @@ -1,23 +1,11 @@ ## What you will make -Display the word 'Hello' on the screen +Create a turtle race program with four racers, numbered lanes, and random movement across the track. ---- print-only --- +Run the project to watch the turtles race across the screen and see which one reaches the finish line first. -![An archery target with a hit point on the outer circle. The text 'You hit the outer circle, 50 points!' is displayed underneath](images/blue-points.png){:width="640px"} +
---- /print-only --- +![Finished turtle race project](images/step_8.png) -### You will: -- print() text, including emojis 😃, and get input() ⌨️ from the user -- Store text and numbers in variables -- Use functions to organise your code - ---- no-print --- - -Click the **Run** button below to start the game. When the dot appears on the target 🎯, click the mouse (or tap on your tablet) to fire your arrow. - - - ---- /no-print --- \ No newline at end of file +
diff --git a/en/meta.yml b/en/meta.yml index c312860..b7e3ed9 100644 --- a/en/meta.yml +++ b/en/meta.yml @@ -7,17 +7,17 @@ copyedit: false last_tested: "2025-01-01" landing: true steps: - - title: Step 1 - - title: Step 2 + - title: Add a turtle + - title: Add another turtle completion: - engaged - - title: Step 3 - - title: Step 4 - - title: Step 5 - - title: Step 6 - - title: Step 7 - - title: Step 8 + - title: Add a third turtle + - title: Add the fourth turtle + - title: Get the track pen ready + - title: Number the track completion: - internal + - title: Draw the race markers + - title: Start the race + completion: - external - diff --git a/en/step_1.md b/en/step_1.md index ac492f9..d9de44a 100644 --- a/en/step_1.md +++ b/en/step_1.md @@ -4,7 +4,7 @@ Create your first racing turtle and get it ready at the starting line.

Say hello to Ada! 🐢

---- task --- +### Step 1 Start by adding one turtle to the screen. @@ -12,7 +12,6 @@ You can name the turtle anything you like. Here, it is called `ada`. This turtle gets a colour and shape, then moves to its starting position on the track. ---- /task ---
--- code --- diff --git a/en/step_2.md b/en/step_2.md index dea9e54..c837d4a 100644 --- a/en/step_2.md +++ b/en/step_2.md @@ -4,7 +4,7 @@ Give your race a second speedy turtle.

Meet Bob! 🐢

---- task --- +### Step 1 Create a new turtle called `bob`. @@ -12,7 +12,6 @@ Set Bob’s colour and shape, then move him to the next starting spot. Bob is almost the same as Ada. Just the colour and position change. The important lines that make Bob different are highlighted. ---- /task ---
--- code --- diff --git a/en/step_3.md b/en/step_3.md index 7cd9eb9..730db3b 100644 --- a/en/step_3.md +++ b/en/step_3.md @@ -4,13 +4,12 @@ Now your race needs a third turtle.

Hello, Eve! 🐢

---- task --- +### Step 1 Create a turtle named `eve`. Give Eve a [colour](https://www.tcl-lang.org/man/tcl8.5/TkCmd/colors.htm) and shape, then move her to the starting line below Bob. ---- /task ---
--- code --- diff --git a/en/step_4.md b/en/step_4.md index 5c279c2..3b54e34 100644 --- a/en/step_4.md +++ b/en/step_4.md @@ -4,13 +4,12 @@ Every race needs a full line-up.

Say hi to Kai! 🐢

---- task --- +### Step 1 Create a turtle called `kai`. Set the colour and shape, then move Kai to the last starting spot. ---- /task ---
--- code --- diff --git a/en/step_5.md b/en/step_5.md index c549671..8f1383b 100644 --- a/en/step_5.md +++ b/en/step_5.md @@ -4,13 +4,12 @@ Now set up the turtle that will draw the race track. This will just have the bas

Ready, set, draw! ✏️

---- task --- +### Step 1 Lift the pen so no line is drawn. Move to the top-left corner of the track and make the turtle move fast. ---- /task ---
--- code --- diff --git a/en/step_6.md b/en/step_6.md index 137d3c3..03329a5 100644 --- a/en/step_6.md +++ b/en/step_6.md @@ -4,13 +4,12 @@ Add number markers along the top of the race track.

Count the steps! 🔢

---- task --- +### Step 1 Use a loop to write the numbers `0` to `11`. After writing each number, move forward to the next spot. ---- /task ---
--- code --- diff --git a/en/step_7.md b/en/step_7.md index cb44de3..4a04525 100644 --- a/en/step_7.md +++ b/en/step_7.md @@ -4,13 +4,12 @@ Add the race markers under each number.

Make the track! 🏁

---- task --- +### Step 1 Inside the loop, turn and draw a line down for each marker. Then move back up, face forward again, and write the next number. ---- /task ---
--- code --- diff --git a/en/step_8.md b/en/step_8.md index afc3d74..87432ec 100644 --- a/en/step_8.md +++ b/en/step_8.md @@ -4,13 +4,12 @@ Make the turtles move forward a random amount each turn.

Let them race! 🐢🐢🐢🐢

---- task --- +### Step 1 Use a loop to take 100 turns. On each turn, move every turtle forward by a random number of steps. ---- /task ---
--- code ---