On this page:
6.1 Clicker Special 001 Kata
6.2 Clicker Special 002 Kata
6.3 Clicker Special 003 Kata
6.4 Clicker Special 004 Kata
6.5 Clicker Special 005 Kata

6 Special Katas

6.1 Clicker Special 001 Kata

read
Code a fantasy game where the cursor is a dragon collecting coins, and is avoiding ninjas, and can get special ice powers.
code
#lang clicker-cartoon-special
 
(start-fantasy dragon (coin) (ninja) (ice-power))
In Ratchet:
image

6.2 Clicker Special 002 Kata

read
Code a space game where the cursor is a spaceship collecting coins and purple gems, and is avoiding red meteors, and can get special turtle powers.
code
#lang clicker-cartoon-special
 
(start-space
  spaceship
  (coin (gem purple))
  ((meteor red))
  (turtle-power))
In Ratchet:
image

6.3 Clicker Special 003 Kata

read
Code a clouds game where the cursor is a zombie collecting knights and aliens, and is avoiding speed 3 red knights and speed 1 orange aliens, and can get special light powers.
code
#lang clicker-cartoon-special
 
(start-clouds
  zombie
  (knight alien)
  ((knight 3 red) (alien 1 orange))
  (light-power))
In Ratchet:
image

6.4 Clicker Special 004 Kata

read
Code a space game where the cursor is an alien collecting green ninjas and blue coins, and is avoiding meteors, and can get special 200-point gems.
code
#lang clicker-cartoon-special
 
(start-space
  alien
  ((ninja green) (coin blue))
  (meteor)
  ((gem 200)))
In Ratchet:
image

6.5 Clicker Special 005 Kata

read
Code a fantasy game where the cursor is a spaceship collecting red gems and speed 4 zombies, and is avoiding speed 1 yellow knights and dragons, and can get special 200-point purple coins.
code
#lang clicker-cartoon-special
 
(start-fantasy
  spaceship
  ((gem red) (zombie 4))
  ((knight 1 yellow) dragon)
  ((coin 200 purple)))
In Ratchet:
image