From a597a3341b258dcf3e1ec15696a4315946d29ecc Mon Sep 17 00:00:00 2001 From: MarleenGilsing <80678586+MarleenGilsing@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:17:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9CChanges=20the=20word=20'tab'=20to?= =?UTF-8?q?=20'adventure'=20for=20new=20design=20(#6018)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes #6016 in Dutch and English --- content/adventures/en.yaml | 58 +++++++++++++++++++------------------- content/adventures/nl.yaml | 40 +++++++++++++------------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/content/adventures/en.yaml b/content/adventures/en.yaml index f28d71a6df7..ebf5ff7ca23 100644 --- a/content/adventures/en.yaml +++ b/content/adventures/en.yaml @@ -369,11 +369,11 @@ adventures: ``` story_text_2: | ### Exercise - In the previous tab you have practised with setting variables with the `{is}` command. + In the previous adventure you have practised with setting variables with the `{is}` command. You have created at least 3 variables and used them with a print command. Now, instead of setting the variables we want you to make the variables interactive, like we did in our example. - Copy your code from the previous tab and make the variables interactive by using `{ask}` commands. + Copy your code from the previous adventure and make the variables interactive by using `{ask}` commands. example_code_2: | ``` favorite_animal {is} {ask} What is your favorite animal? @@ -413,7 +413,7 @@ adventures: ***Test the function*** Test if your function is working properly. Finish the first print command by filling in which card you've drawn. Then finish the second line by calling the function with card_1. - Run the code a couple of times. Are you happy with the results? Great! Then you can remove the testing part and move on the the next tab! + Run the code a couple of times. Are you happy with the results? Great! Then you can remove the testing part and move on the the next adventure! example_code: | ``` {print} 'BLACKJACK' @@ -463,8 +463,8 @@ adventures: ***Show the score*** Lastly, you want to tell the program to tell you which cards you have drawn and how many points that is. Then show which cards the dealer has and how many points they have. - ***Continue in the next tab*** - Great! You have finished this part of the game! Copy your code and go to the next tab to learn how to ask for an extra card and to declare a winner. + ***Continue in the next adventure*** + Great! You have finished this part of the game! Copy your code and go to the next adventure to learn how to ask for an extra card and to declare a winner. example_code: | ``` # Paste your code from the previous adventure here @@ -501,11 +501,11 @@ adventures: levels: 17: story_text: | - In the previous tabs you have learned how to draw 2 random cards for yourself and for the dealer and to calculate how many points you both got. + In the previous adventures you have learned how to draw 2 random cards for yourself and for the dealer and to calculate how many points you both got. In this adventure we add the option to ask for an extra card for both you and the dealer. ### Exercise - ***Paste your code from the previous adventure*** Firstly, copy your code from the previous tab and paste it here. + ***Paste your code from the previous adventure*** Firstly, copy your code from the previous adventure and paste it here. ***Extra card for you*** If you want, you can get an extra card to get your total as close to 21 as possible. First ask the player if they want an extra card. If they do, pick a random card and print what they have drawn. If the card is not an Ace, you can call the function and add the points to your total. @@ -728,7 +728,7 @@ adventures: * Then we get to set the return value. We want to return the mean, so the total devided by the amount of tests (4). * Lastly we finish the code by calling the function in line 8. - Did you get it? Awesome! Would you like to add even more to your calculator? **This adventure continues in the next tab!** + Did you get it? Awesome! Would you like to add even more to your calculator? **This adventure continues in the next adventure!** example_code: | ``` {define} calculate_mean_grade @@ -775,7 +775,7 @@ adventures: 14: story_text: | ### Exercise 2 - **This is the second part of this adventure.** The adventure starts in the previous tab. + **This is the second part of this adventure.** The adventure starts in the previous adventure. Of course, you don't always want to calculate the mean of 4 tests. You might want to calculate the mean of 10 tests or only 2... We can fix this problem by adding the argument and variable 'amount_of_tests'. * Start a new line on line 3. Set the amount_of_tests argument by asking the student how many tests they have made. @@ -1260,7 +1260,7 @@ adventures: Try the code yourself! The yellow button copies the example code to your programming field. Then push the green 'Run code' button under the programming field to run the code. - Ready? Then go to the next tab to learn how to make your own codes! + Ready? Then go to the next adventure to learn how to make your own codes! example_code: | ``` {print} Hello world! @@ -1272,7 +1272,7 @@ adventures: For example in the restaurant adventure, you could echo what the costumer wanted to eat, or what they wanted to drink, but not both in one sentence. That changes in level 2. In level 2 you'll learn to work with variables, that allow you to save multiple pieces of information and print them in any place you want. - So let's go to the next tab! + So let's go to the next adventure! example_code: | **Warning! This code does not work!** In Hedy commands will change sometimes. `{echo}` for example only works in level 1. In this level you'll learn a better way to echo answers back. @@ -1288,7 +1288,7 @@ adventures: In the previous level you've learned what a variable is and how you can use it to make your adventures more interactive. But... that's not the only thing you can do with variables! You can also use variables to make lists. And you can even let Hedy pick a random word out of a list, which allows you to make real games! - Take a quick look at the next tab! + Take a quick look at the next adventure! 4: story_text: | In the previous levels you've been practising with variables, but you may have come across this problem. @@ -1314,7 +1314,7 @@ adventures: But it's not really interactive, the player doesn't have any influence on what happens in the game. In this level you'll learn the `{if}` command, that allows you to give different responses in your program. This way you can program a secret password for your computer for example. - So let's go to next tab for the new command! + So let's go to next adventure for the new command! example_code: | ``` password {is} {ask} 'What is the correct password?' @@ -1347,7 +1347,7 @@ adventures: Great job! You've reached the next level, which means you have practiced with `{if}` and `{else}`. You have probably noticed that your codes are getting longer and longer. For example if you want to program 'Happy Birthday'. - That's a lot of code for mainly the same words over and over again. Luckily in the next tab you'll learn a solution with the `{repeat}` command, that allows you to repeat a line of code multiple times. + That's a lot of code for mainly the same words over and over again. Luckily in the next adventure you'll learn a solution with the `{repeat}` command, that allows you to repeat a line of code multiple times. example_code: | ``` {print} 'happy birthday to you' @@ -1361,7 +1361,7 @@ adventures: This level allows you to group a couple of lines of code, and repeat that little group of lines all at once! example_code: | ``` - {repeat} 5 {times} {print} 'In the next tab you can repeat multiple lines of code at once!' + {repeat} 5 {times} {print} 'In the next adventure you can repeat multiple lines of code at once!' ``` 9: story_text: | @@ -1480,7 +1480,7 @@ adventures: {for} sound {in} sounds {print} 'A ' animal ' says ' sound ``` - Note: These codes will not work like this in this level. Head to the next tab to see which parts you need to correct. + Note: These codes will not work like this in this level. Head to the next adventure to see which parts you need to correct. 17: story_text: | Now we are going to change indentation a little bit. Every time that we need an indentation, we need `:` at the line before the indentation. @@ -2127,7 +2127,7 @@ adventures: ***Player 2's turn*** Tell Player 2 its their turn. Then tell Player 2 how many letters there are in the answer. Finally, print the list of `guessed_letters`. - ***Go to the next tab*** Now that all the starting variables are set, we can start programming the game itself. Check out the next tab to learn how! + ***Go to the next adventure*** Now that all the starting variables are set, we can start programming the game itself. Check out the next tab to learn how! example_code: | ``` print 'Hangman!' @@ -2161,7 +2161,7 @@ adventures: ### Exercise - ***Paste your code*** Copy your code from the previous tab and paste the code in the programming field. + ***Paste your code*** Copy your code from the previous adventure and paste the code in the programming field. ***The game*** This games continues playing until Player 2 is game over. Fill in the while command accordingly. Now, Player 2 is allowed to guess a letter, so ask Player 2 to guess a letter. We need to check if their answer is correct, so check if their `guess` is (somewhere) in the (list) `answer`. Then we let the computer figure out which of the letter(s) is the guess. We have already programmed that part for you. @@ -2174,7 +2174,7 @@ adventures: For the last part we'll program what happens when Player 2 has made 10 mistakes. We'll print that Player 1 has won the game. Then we'll print the correct answer. And finally, we'll set our `game_over` variable to `True`, so the game stops. - ***Go to the next tab*** Amazing work! Your game is playable, but wouldn't it be fun if the hangman was actually drawn when Player 2 makes a mistake..? + ***Go to the next adventure*** Amazing work! Your game is playable, but wouldn't it be fun if the hangman was actually drawn when Player 2 makes a mistake..? example_code: | ``` # Paste your code here @@ -2213,7 +2213,7 @@ adventures: ***Test the function*** Test the function by calling the function with 10. If you are happy with the function, remove the line that calls the function for now. We will call the function when the player makes a mistake. - ***Paste your hangman game under your function*** Go back to the previous tab and copy your hangman game. Paste the game underneath your function. + ***Paste your hangman game under your function*** Go back to the previous adventure and copy your hangman game. Paste the game underneath your function. ***Call the function when the player makes a mistake*** Under the line `mistakes_made = mistakes_made + 1` we will call the function. We want the turtle to take the same amount of steps as the player has made mistakes, so we call the function with `mistakes_made` as argument. @@ -3948,7 +3948,7 @@ adventures: In this level you can practise using the variables, so that you can make the rock, paper, scissors game in the next level! ### Exercise Finish the code by filling in the **variable** on the blank. - This game is not very interactive, but no worries! In the next tab you'll learn how to use variables with the `{ask}` command to make your game interactive! + This game is not very interactive, but no worries! In the next adventure you'll learn how to use variables with the `{ask}` command to make your game interactive! example_code: |- ``` choice {is} rock @@ -4163,7 +4163,7 @@ adventures: So we repeat `level` times, to print the `simon_sequence[i]`. Each time a color is shown, wait for 1 second and then clear the screen. ***Test your program*** Before you go to the next level, test if the functions are working by calling both of the functions. If they're working you should see a random color in your output screen. - Remove this testing part of your code, copy the code and continue to the next tab to learn more about the simon says game! + Remove this testing part of your code, copy the code and continue to the next adventure to learn more about the simon says game! example_code: | ``` # Make 2 lists @@ -4203,10 +4203,10 @@ adventures: ***Create a function that creates the player_sequence*** The list `player_sequence` is used to capture the answers of the player. First we define the function with the argument level. Next, we ask level times what the color is that they choose. We call that variable `answer`. Then we add the variable `answer` to the list player_sequence. - ***Setting up the game*** Before we program the game in the next tab, we'll need some starting variables. First, we'll set the variable `level` to 1 and the variable `game_over` to False. + ***Setting up the game*** Before we program the game in the next adventure, we'll need some starting variables. First, we'll set the variable `level` to 1 and the variable `game_over` to False. Then we make an introduction for the game. We'll print 'Welcome to Simon Says!' and clear the screen after 1 second. - ***Continue to the next tab to finish the game!**** Don't forget to copy your code and take it with you to the next tab. + ***Continue to the next adventure to finish the game!**** Don't forget to copy your code and take it with you to the next adventure. example_code: | ``` # Paste your code here @@ -4232,10 +4232,10 @@ adventures: levels: 16: story_text: | - In this tab we'll program the game of Simon Says! + In this adventure we'll program the game of Simon Says! ### Exercise - ***Paste your code*** Copy your code from the previous tab and paste it here. + ***Paste your code*** Copy your code from the previous adventure and paste it here. ***Program the game*** We start by making sure the game goes on while the game isn't over. Then we print what level the player is on, we use the variable level for that. We only show that for 1 second and then we clear the screen again. Now, we have to create the empty list player_sequence. We've already programmed how to fill the list, with our function `player_sequence`, but we never made the list itself. To create the list we use the same trick as we did in the previous tab. @@ -4548,7 +4548,7 @@ adventures: Run the code. Your output should look like this: - ***Continue in the next tab*** In the next tab you'll learn how to program the game itself. + ***Continue in the next adventure*** In the next adventure you'll learn how to program the game itself. example_code: | ``` # Create a list called field @@ -4619,7 +4619,7 @@ adventures: ***Test your game*** Does your game work? Great, have fun playing the game! If not, use the ladybug button to debug your code. You might have noticed one mistake in the code though, you can steal the other player's spot! If the other person chose spot 1, you could simply enter 1 after them and steal their spot. - That's not fair! Go to the next tab to learn how to fix this problem. + That's not fair! Go to the next adventure to learn how to fix this problem. example_code: | ``` # Paste your code from the previous adventure here @@ -4647,7 +4647,7 @@ adventures: 16: story_text: | You might have noticed one mistake in the code you've made in the previous adventure. You can steal the other player's spot! If the other person chose spot 1, you could simply enter 1 after them and steal their spot. - That's not fair! In this tab we'll fix that mistake. + That's not fair! In this adventure we'll fix that mistake. ### Exercise ***Paste your code here*** Paste your code from the previous adventure here. diff --git a/content/adventures/nl.yaml b/content/adventures/nl.yaml index d2713a93644..2c3b8ddc95c 100644 --- a/content/adventures/nl.yaml +++ b/content/adventures/nl.yaml @@ -375,7 +375,7 @@ adventures: ***Test de functie*** Test of je functie naar behoren werkt. Maak de eerste regel in dit onderdeel af door in te vullen welke kaart er gepakt is. Maak de volgende regel af door de functie op te roepen met `kaart_1`. - Voer de code een aantal keer uit. Ben je blij met het resultaat? Super! Dan kun je dit testgedeelte weer verwijderen en door naar het volgende onderdeel op het volgende tabje. + Voer de code een aantal keer uit. Ben je blij met het resultaat? Super! Dan kun je dit testgedeelte weer verwijderen en door naar het volgende onderdeel op het volgende avontuur. example_code: | ``` {print} 'BLACKJACK' @@ -407,7 +407,7 @@ adventures: In dit avontuur programmeren we het tweede gedeelte van het Blackjack spel. ***Plak je code van het vorige avontuur*** - In het vorige tabje heb je een lijstje gemaakt met variabelen en heb je een functie gemaakt om te berekenen hoeveel een kaart waard is. Kopieer die code en plak hem hier. Let op! Je hebt ook een stuk code gemaakt om je functie te testen, dat heb je nu niet nodig. Heb je dat gedeelte nog niet verwijderd, verwijder het dan nu. + In het vorige avontuur heb je een lijstje gemaakt met variabelen en heb je een functie gemaakt om te berekenen hoeveel een kaart waard is. Kopieer die code en plak hem hier. Let op! Je hebt ook een stuk code gemaakt om je functie te testen, dat heb je nu niet nodig. Heb je dat gedeelte nog niet verwijderd, verwijder het dan nu. ***Voeg meer variabelen toe*** Je hebt de lijstjes `kaarten` en `plaatjes` gemaakt en de variabele `kaart_1`. Onder deze variabelen, maak je nog 3 variabelen, namelijk: `kaart_2`, `dealer_kaart_1` en `dealer_kaart_2`. Deze kaarten worden ook random getrokken uit het lijstje `kaarten`. @@ -423,7 +423,7 @@ adventures: Tot slot wil je dat het programme je vertelt welke kaarten je hebt getrokken en hoeveel punten dat waard is. Toon ook welke kaarten de dealer heeft en hoeveel punten dat is. ***Ga door naar het volgende avontuur*** - Super! Je hebt dit gedeelte af! Kopieer je spel en ga door naar het volgende tabje om te leren hoe je een extra kaart kunt krijgen en een winnaar kunt uitroepen. + Super! Je hebt dit gedeelte af! Kopieer je spel en ga door naar het volgende avontuur om te leren hoe je een extra kaart kunt krijgen en een winnaar kunt uitroepen. example_code: | ``` # Plak hier je code van het vorige avontuur @@ -683,7 +683,7 @@ adventures: * Daarna zorgen we voor een return value. We willen het gemiddelde als return value, dus het totaal gedeeld door de hoeveelheid toetsen (oftewel gedeeld door 4). * Tot slot roepen we de functie op in regel line 8. - Heb je het voor elkaar gekregen? Geweldig! Wil je nog meer opties bouwen voor de rekenmachine? **Kijk in het volgende tabje, daar gaat het avontuur verder!** + Heb je het voor elkaar gekregen? Geweldig! Wil je nog meer opties bouwen voor de rekenmachine? **Kijk in het volgende avontuur, daar gaat het avontuur verder!** example_code: | ``` {define} bereken_gemiddelde_cijfer @@ -734,7 +734,7 @@ adventures: 14: story_text: | ### Oefening 2 - **Dit is het vervolg op het vorige avontuur.** Het avontuur begint in het vorige tabje. + **Dit is het vervolg op het vorige avontuur.** Het avontuur begint in het vorige avontuur. Natuurlijk wil je niet altijd het gemiddelde berekenen van 4 toetsen. Soms wil je het gemiddelde van wel 10 toetsen, of soms maar 2... We kunnen dit probleem oplossen door het argument en de variabele 'hoeveelheid_toetsen' toe te voegen. * Begin een nieuwe regel op regel 3. Stel daar de variabele hoeveelheid_toetsen in, door te vragen hoeveel toetsen de speler heeft gehad. @@ -1404,7 +1404,7 @@ adventures: {for} geluid {in} geluiden {print} 'Een ' dier ' zegt ' geluid ``` - Let op: Deze code werkt niet in dit level. Ga naar het volgende tabblad en leer hoe je dit moet repareren. + Let op: Deze code werkt niet in dit level. Ga naar het volgende avontuur en leer hoe je dit moet repareren. 17: story_text: | Nu maken we nog een kleine verandering bij het inspringen. Elke keer als we moeten inspringen, gebruiken we een `:` bij de regel erboven. @@ -2027,7 +2027,7 @@ adventures: ***De beurt van Speler 2*** Zeg dat Speler 2 aan de beurt is. Vertel Speler 2 dan hoeveel letters er in het antwoord zitten. Print daarna de lijst `geraden_letters`. - ***Ga naar het volgende tabje*** Nu je alle variabelen hebt ingesteld kun je het spelletje zelf gaan programmeren. Kijk snel in het volgende tabje om te leren hoe dat moet! + ***Ga naar het volgende avontuur*** Nu je alle variabelen hebt ingesteld kun je het spelletje zelf gaan programmeren. Kijk snel in het volgende avontuur om te leren hoe dat moet! example_code: | ``` print 'Galgje!' @@ -2058,7 +2058,7 @@ adventures: Tijd om het spelletje te programmeren! ### Opdracht - ***Plak je code*** Kopieer je code vanuit het vorige tabje en plak het in het invoerscherm. + ***Plak je code*** Kopieer je code vanuit het vorige avontuur en plak het in het invoerscherm. ***Het spel*** Het spel blijft doorgaan totdat je game over bent. Vul het `{while}` commando in. Speler 2 mag nu een letter raden, dus vraag aan Speler 2 welke letter die wil raden. We moeten nu checken of hun geraden letter ergens in het (lijstje) `antwoord` zit. Is dat zo, dan moeten de computer nog checken waar in het antwoord de letter zich bevindt. Dat stukje code hebben wij alvast voor je gemaakt. @@ -2071,7 +2071,7 @@ adventures: Als laatste programmeren we wat er gebeurt als Speler 2 10 fouten heeft gemaakt en dus verliest. We printen dat Speler 1 gewonnen heeft. Daarna printen we het juiste antwoord. Tot slot zetten we de `game_over` variabele op `True` (waar) om het spel te stoppen. - ***Ga naar het volgende tabje*** Fantastisch! Je hebt een speelbaar spelletje gemaakt! Maar zou het niet veel leuker zijn als de galg ook daadwerkelijk getekend wordt als Speler 2 een fout maakt...? + ***Ga naar het volgende avontuur*** Fantastisch! Je hebt een speelbaar spelletje gemaakt! Maar zou het niet veel leuker zijn als de galg ook daadwerkelijk getekend wordt als Speler 2 een fout maakt...? example_code: | ``` # Plak je code hier @@ -2108,7 +2108,7 @@ adventures: ***Test je functie*** Voordat je verder gaat, is het slim om je functie even te testen met 10. Ben je blij met de functie, verwijder dan de regel die de functie oproept weer. We zullen de functie later oproepen als de speler een fout maakt. - ***Plak je galgje spel onder de functie*** Ga terug naar het vorige tabje en kopieer het spel dat je gemakat hebt. plak je spel onder de functie. + ***Plak je galgje spel onder de functie*** Ga terug naar het vorige avontuur en kopieer het spel dat je gemakat hebt. plak je spel onder de functie. ***Roep de functie op als de speler een fout maakt*** Onder de regel `aantal_fouten = aantal_fouten + 1` roepen we de functie op. We willen dat de turtle zoveel stapjes tekent als de hoeveelheid fouten die de speler gemaakt heeft, dus roepen we de functie op met `aantal_fouten` als argument. @@ -3803,7 +3803,7 @@ adventures: In dit level kun je variabelen gebruiken om alvast een stukje van het spelletje te programmeren. In het volgende level leer je het spelletje maken. ### Opdracht Maak de code af door de **variabele** in te vullen op de lege plek. - Dit spel is nog niet echt interactief, maar wees gerust, in het volgende tabblad leer je `{ask}` gebruiken met variabelen. + Dit spel is nog niet echt interactief, maar wees gerust, in het volgende avontuur leer je `{ask}` gebruiken met variabelen. example_code: |- ``` keuze {is} steen @@ -4013,8 +4013,8 @@ adventures: ***Maak een functie die de simon_reeks toont*** Noem de nieuwe functie `toon_simon_reeks` met `level` als argument. Nu willen we zoveel kleuren laten zien als het level waar we inzitten (in level 1, dus 1 kleur en in level 2, 2 kleuren etc). Dus `simon_reeks[i]` moet `level` keer worden geprint. Elke keer als er een kleur wordt geprint, moet de code even 1 seconde wachten en het scherm daarna wissen. - ***Test het programma*** Voordat je doorgaat naar het volgende tabblad, kun je even testen of je functies het wel goed doen. Als de functies werken, zou je een willekeurige kleur in beeld moeten krijgen. - Verwijder dit testgedeelte van je code zodra je tevreden bent en kopieer de rest van je code om verde te gaan in het volgende tabje. + ***Test het programma*** Voordat je doorgaat naar het volgende avontuur, kun je even testen of je functies het wel goed doen. Als de functies werken, zou je een willekeurige kleur in beeld moeten krijgen. + Verwijder dit testgedeelte van je code zodra je tevreden bent en kopieer de rest van je code om verde te gaan in het volgende avontuur. example_code: | ``` # Maak 2 lijstjes @@ -4046,15 +4046,15 @@ adventures: We werken verder aan de Simon Says game! ### Opdracht - ***Plak je code hier*** Plak hier je code vanuit het voorgaande tabje. Vergeet niet om het testgedeelte te verwijderen, dat heb je nu namelijk niet nodig. + ***Plak je code hier*** Plak hier je code vanuit het voorgaande avontuur. Vergeet niet om het testgedeelte te verwijderen, dat heb je nu namelijk niet nodig. ***Maak een functie voor de speler_reeks*** De lijst `speler_reeks` gebruiken we om de antwoorden van de speler in op te slaan. Allereerst definieren we de functie met het argument level. Daarna vragen we level keer welke kleur de speler wil kiezen. Die variabele noemen we `antwoord`. Vervolgens voegen we de variabele `antwoord` toe aan het lijstje speler_reeks. - ***Voorbereidingen voor het spel*** Voordat we het spel programmeren in het volgende tabblad, moeten we nog wat startvariabelen maken. Eerst zetten we de variabele `level` op 1 en game_over op False (false betekent niet waar). + ***Voorbereidingen voor het spel*** Voordat we het spel programmeren in het volgende avontuur, moeten we nog wat startvariabelen maken. Eerst zetten we de variabele `level` op 1 en game_over op False (false betekent niet waar). Daarna introduceren we ons spelletje. We printen 'Welkom bij Simon Says' en wissen het scherm weer na 1 seconde. - ***Ga door naar het volgende tabje om het spel af te maken!*** Vergeet niet eerst je code te kopiëren. + ***Ga door naar het volgende avontuur om het spel af te maken!*** Vergeet niet eerst je code te kopiëren. example_code: | ``` # Plak je code hier @@ -4076,10 +4076,10 @@ adventures: levels: 16: story_text: | - In dit tabje maken we het spel af! + In dit avontuur maken we het spel af! ### Opdracht - ***Plak je code hier*** Kopieer je code van het vorige tabblad en plak het hier. + ***Plak je code hier*** Kopieer je code van het vorige avontuur en plak het hier. ***Programmeer het spel*** Eerst programmeren we dat het spel door blijft gaan zolang je niet game over bent. Daarna printen we op welk level de speler nu is, waarvoor we de variabele level natuurlijk gebruiken. Na één seconde wissen we het scherm weer. Nu moeten we de lijst speler_reeks maken. We hebben net al een functie gemaakt om die lijst te vullen, maar we hadden het lijstje zelf nog niet gemaakt. @@ -4384,7 +4384,7 @@ adventures: Voer de code uit. Je uitvoer zou er zo uit moeten zien (al staat er bij jou boter-kaas-en-eieren in plaats van het Engelse TIC TAC TOE): - ***Ga door naar het volgende tabje*** In het volgende avontuur leer je de logica van het spelletje programmeren. + ***Ga door naar het volgende avontuur*** In het volgende avontuur leer je de logica van het spelletje programmeren. example_code: | ``` # Maak een lijst genaamd veld @@ -4423,7 +4423,7 @@ adventures: ***Test je spel*** Werkt alles? Geweldig, veel speelplezier! Is er nog iets mis? Gebruik dan de knop met het lieveheersbeestje om je code te debuggen. Je hebt misschien ook wel gemerkt dat je er een fout in het spel zit: Je mag namelijk het plekje van de andere speler stelen! Als de ene speler plek 1 heeft gekozen, mag de tweede speler daarna ook gewoon plekje 1 inpikken. - Dat is natuurlijk niet eerlijk! Wil je dit oplossen, ga dan naar het volgende tabblad. + Dat is natuurlijk niet eerlijk! Wil je dit oplossen, ga dan naar het volgende avontuur. example_code: | ``` # Plak je code hier