6 Special Katas
6.1 Clicker Special 001 Kata
read
Code a forest game where the cursor is a charizard collecting fire stones, and is avoiding james, and can get special ice powers.
code
#lang clicker-pokemon-special (start-forest charizard (fire-stone) (james) (ice-power))
In Ratchet:
6.2 Clicker Special 002 Kata
read
Code a desert game where the cursor is a blastoise collecting fire stones and purple sun stones, and is avoiding red pokeballs, and can get special turtle powers.
code
#lang clicker-pokemon-special (start-desert blastoise (fire-stone (sun-stone purple)) ((pokeball red)) (turtle-power))
In Ratchet:
6.3 Clicker Special 003 Kata
read
Code a snow game where the cursor is a trainer girl collecting venasaurs and mewtwos, and is avoiding speed 3 red venasaurs and speed 1 orange mewtwos, and can get special light powers.
code
#lang clicker-pokemon-special (start-snow trainer-girl (venasaur mewtwo) ((venasaur 3 red) (mewtwo 1 orange)) (light-power))
In Ratchet:
6.4 Clicker Special 004 Kata
read
Code a desert game where the cursor is a mewtwo collecting green james and blue fire stones, and is avoiding pokeballs, and can get special 200-point sun stones.
code
#lang clicker-pokemon-special (start-desert mewtwo ((james green) (fire-stone blue)) (pokeball) ((sun-stone 200)))
In Ratchet:
6.5 Clicker Special 005 Kata
read
Code a forest game where the cursor is a blastoise collecting red sun stones and speed 4 trainer girls, and is avoiding speed 1 yellow venasaurs and charizards, and can get special 200-point purple fire stones.
code
#lang clicker-pokemon-special (start-forest blastoise ((sun-stone red) (trainer-girl 4)) ((venasaur 1 yellow) charizard) ((fire-stone 200 purple)))
In Ratchet: