7.4
7 Game Show
Use these questions during Game Show time. You can ask any/all the questions in each day’s section.
7.1 Monday
- What keys make your character move?
WASD keys.
- What is the keyword to add a character to your game?
#:hero
- What is the keyword to change what your character looks like?
#:sprite
- Name 3 available character sprites.
Anything from the Assets Library.
- What is the default speed value?
10.
7.2 Tuesday
- What is the keyword to change the background of the game?
#:planet
- Name 3 of the available background images.
FOREST-BG, SNOW-BG, DESERT-BG, LAVA-BG, PINK-BG
- What are the 2 keyword to change the number of tiles in the game (size of the background)?
#:rows, #:columns.
- What line of code can you add to make objects appear? in your world?
Add this line to your main game function: #:enable-world-objects? #t
- What does HD stand for when referring to images?
High Definition.
7.3 Wednesday
- What is the keyword to add enemies?
#:villain-list
- What does AI stand for?
Artificial Intelligence.
- What is the keyword to change the number of enemies in the game?
#:amount-in-world
- What are the 3 levels of AI?
’easy, ’medium, ’hard.
- What does USB stand for?
Universal Serial Bus.
7.4 Thursday
- What is the keyword to add weapons in the game?
#:power-list
- Name 3 of the 5 rarity levels.
’common, ’uncommon, ’rare, ’epic, ’legendary.
- What is the function to change what the weapon’s pickup crate looks in the game?
(make-icon ... ... ...)
- Name the 4 available powers in the language.
energy-blast, star-bit, magic-orb, and hammer, in extras: lava pit and spike mine
- Name 2 of the fire modes available for the powers.
’normal, ’random, ’spread, ’homing.