On this page:
3.1 Clicker Collect 005 Kata
3.2 Clicker Collect 006 Kata
3.3 Clicker Collect 007 Kata
3.4 Clicker Collect 008 Kata
3.5 Clicker Collect 009 Kata

3 More Collect Katas

3.1 Clicker Collect 005 Kata

read
Code a snow game where the cursor is a [choose-your-own-sprite] collecting speed 4 water stones.
code
#lang clicker-pokemon-collect
 
(start-snow rand ((water-stone 4)))
In Ratchet:
image

3.2 Clicker Collect 006 Kata

read
Code a forest game where the cursor is a leaf stone collecting bulbasaurs, charmanders, and speed 1 squirtles.
code
#lang clicker-pokemon-collect
 
(start-forest
  leaf-stone
  (bulbasaur charmander (squirtle 1)))
In Ratchet:
image

3.3 Clicker Collect 007 Kata

read
Code a snow game where the cursor is a [choose-your-own-sprite] collecting speed 1 water stones and speed 5 fire stones.
code
#lang clicker-pokemon-collect
 
(start-snow
  rand
  ((water-stone 1) (fire-stone 5)))
In Ratchet:
image

3.4 Clicker Collect 008 Kata

read
Code a forest game where the cursor is a pikachu collecting pikachus, pikachus, and pikachus.
code
#lang clicker-pokemon-collect
 
(start-forest pikachu (pikachu pikachu pikachu))
In Ratchet:
image

3.5 Clicker Collect 009 Kata

read
Code a snow game where the cursor is a water stone collecting [choose-your-own-sprite] and speed 5 [choose-your-own-sprite].
code
#lang clicker-pokemon-collect
 
(start-snow water-stone (rand (rand 5)))
In Ratchet:
image