On this page:
2.1 Clicker Collect 001 Kata
2.2 Clicker Collect 002 Kata
2.3 Clicker Collect 003 Kata
2.4 Clicker Collect 004 Kata

2 Collect Katas

2.1 Clicker Collect 001 Kata

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

2.2 Clicker Collect 002 Kata

read
Code a snow game where the cursor is a squirtle collecting fire stones.
code
#lang clicker-pokemon-collect
 
(start-snow squirtle (fire-stone))
In Ratchet:
image

2.3 Clicker Collect 003 Kata

read
Code a snow game where the cursor is a pikachu collecting fire stones and water stones.
code
#lang clicker-pokemon-collect
 
(start-snow pikachu (fire-stone water-stone))
In Ratchet:
image

2.4 Clicker Collect 004 Kata

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