NEW
Font size
Worksheetscourse1 lesson12
Total questions: 10
Worksheet time: 5mins
Choose the right code to spawn a “fence”
hero.spawnXY(“fence”, 10, 10)
hero.spawn(“fence”, 10, 10)
Game.spawnXY(“fence”,10,10)
game.spawnXY(“fence”,10,10)
The person who plays the game and controls the game piece is?
player
student
hero
captain
A game must have a goal. What is a goal?
the rules that govern how a player
interacts with the game.
the task the player must perform to win
(or progress) in a game.
the game piece that the student can
"spawn".
the specific elements that make up a
game
The rules that govern how a player interacts with a game, and how the game interacts with the player are ?
spawnable
piece
goal
mechanic
Choose the code to add a goal to gather all the items in the game?
Game.addcollectGoal()
game.AddCollectGoal()
game.addCollectItem()
game.addCollectGoal()
Which code spawns an ally?
game.spawnXY("archer", 28,32)
game.SpawnXY("munchkin", 15, 15)
ame.spawnPlayerXY("thrower", 30, 50)
game.spawnXY("guardian", 4, 10)
generator= game.spawnXY(“generator” , 54, 68)
How to change the type of enemy the generator could spawn to “munchkin”?
spawnType=“munchkin”
generator.spawnType=“munchkin”
generator.spawnType==“munchkin”
Game.spawntype=“munchkin”
munchkin= game.spawnXY(“munchkin”, 10,10)
Change the behavior of the munchkin to move randomly around the map
munchkin.behavior=“Defends”
munchkin.behavior=“RunsAway”
munchkin.Behavior=“AttacksNearest”
munchkin.behavior=“Scampers”
Choose the right code to spawn a player
game.spawnPlayerXY(“knight”, 10,10)
game.SpawnXY(“knight”, 10,10)
game.SpawnPlayerXY(“knight”, 10,10)
Game.spawnPlayerXY(“knight”, 10,10)
In which direction by default the fire spewer releases the fire balls?
diagonal
Vertical
Horizontal
