pxt-calliope/olddocs/js/lessons/runaway-pacman/quiz.md

61 lines
1.3 KiB
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# runaway pacman quiz
2016-04-02 01:22:47 +02:00
create a game that is inspired by the classic arcade game Pac Man.
2016-03-26 00:47:20 +01:00
## Name
## Directions
2016-04-13 17:27:45 +02:00
Use this activity document to guide your work in the [runaway pacman tutorial](/lessons/runaway-pacman/tutorial)
2016-03-26 00:47:20 +01:00
Answer the questions while completing the tutorial. Pay attention to the dialogues!
## 1. Write the the method name created that will set up the game board.
<br/>
## 2. Write the the method name created that will draw the player and the monster(s)
<br/>
## 3. Write the code that keeps track of how long a player has been playing. (Don't include any if statements.)
<br/>
## 4. Write the code that will reset the time and continue playing if we have been eaten.
<br/>
## 5. Write 'If statement' that will determine if the player has been playing for more than 5 seconds.
<br/>
## 6. Suspend the game if we are advancing to the next level. (Hint: this requires setting a variable to true.)
<br/>
## 7. Write the code to add a monster. (Hint: look in the function "add monster".)
<br/>
## 8. Write the code that will restart the time to 0 after you begin the next level.
<br/>
## 9. Write the code that makes the player go either North or East when button 'A' is pressed.
<br/>
<br/>
<br/>
## 10. Write the code that makes the player go either South or West when button 'B' is pressed.
<br/>
<br/>
<br/>