t2 I 85 Catch The Bugs Scratch Worksheet - Ver - 4
t2 I 85 Catch The Bugs Scratch Worksheet - Ver - 4
Challenge 1
Can you make each of the bugs move up and down forever?
Challenge 2
Can you make the Frog follow the mouse-pointer?
Challenge 3
Can you make the bugs disappear when the Frog touches them?
Challenge 4
Can you add messages, sound effects or scoring to improve your game?
I can:
if on edge, bounce
Top Tip
set rotation style don't rotate
Changing the number in the move
block will alter the speed at which
the sprite travels up and down.
move steps
forever go to mouse-pointer
hide
The following algorithms are just one possible solution to each challenge.
Challenge 1 Challenge 3
The following code belongs on the The following code belongs on the
Butterfly 1, Beetle and Ladybug1: Butterfly 1, Beetle and Ladybug1:
forever
set rotation style don't rotate
move 10 steps
Challenge 2
if on edge, bounce
forever
go to mouse-pointer
Challenge 4
The following code belongs on the The following code belongs on the
Butterfly 1, Beetle and Ladybug1: Butterfly 1, Beetle and Ladybug1:
set score to 0
set rotation style don't rotate
show
point in direction 0
point in direction 0
move 10 steps
forever
if on edge, bounce
move 10 steps
if touching Frog ? then
if on edge, bounce
play sound Pop until done
if touching Frog ? then
hide
hide
forever
go to mouse-pointer