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 clouds game where the cursor is a [choose-your-own-sprite] collecting speed 4 fruits.
code
#lang clicker-cartoon-collect
 
(start-clouds rand ((fruit 4)))
In Ratchet:
image

3.2 Clicker Collect 006 Kata

read
Code a fantasy game where the cursor is a mushroom collecting knights, dragons, and speed 1 pilots.
code
#lang clicker-cartoon-collect
 
(start-fantasy
  mushroom
  (knight dragon (pilot 1)))
In Ratchet:
image

3.3 Clicker Collect 007 Kata

read
Code a clouds game where the cursor is a [choose-your-own-sprite] collecting speed 1 fruits and speed 5 coins.
code
#lang clicker-cartoon-collect
 
(start-clouds rand ((fruit 1) (coin 5)))
In Ratchet:
image

3.4 Clicker Collect 008 Kata

read
Code a fantasy game where the cursor is a bird collecting birds, birds, and birds.
code
#lang clicker-cartoon-collect
 
(start-fantasy bird (bird bird bird))
In Ratchet:
image

3.5 Clicker Collect 009 Kata

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