On this page:
4.1 Clicker Avoid 001 Kata
4.2 Clicker Avoid 002 Kata
4.3 Clicker Avoid 003 Kata
4.4 Clicker Avoid 004 Kata
4.5 Clicker Avoid 005 Kata

4 Avoid Katas

4.1 Clicker Avoid 001 Kata

read
Code a space game where the cursor is a ufo collecting cows, and is avoiding meteors.
code
#lang clicker-cartoon-avoid
 
(start-space ufo (cow) (meteor))
In Ratchet:
image

4.2 Clicker Avoid 002 Kata

read
Code a clouds game where the cursor is a pilot collecting aliens, and is avoiding zombies and humans.
code
#lang clicker-cartoon-avoid
 
(start-clouds pilot (alien) (zombie human))
In Ratchet:
image

4.3 Clicker Avoid 003 Kata

read
Code a space game where the cursor is a dragon collecting fruits, and is avoiding speed 1 fruits.
code
#lang clicker-cartoon-avoid
 
(start-space dragon (fruit) ((fruit 1)))
In Ratchet:
image

4.4 Clicker Avoid 004 Kata

read
Code a fantasy game where the cursor is a goblin collecting knights and speed 5 ufos, and is avoiding aliens and speed 5 pilots.
code
#lang clicker-cartoon-avoid
 
(start-fantasy
  goblin
  (knight (ufo 5))
  (alien (pilot 5)))
In Ratchet:
image

4.5 Clicker Avoid 005 Kata

read
Code a fantasy game where the cursor is a meteor collecting meteors, and is avoiding speed 1 meteors.
code
#lang clicker-cartoon-avoid
 
(start-fantasy meteor (meteor) ((meteor 1)))
In Ratchet:
image