Action packed 2D platformer starring Chocoro the Bouncy Cat. Made in 1 week for the Raylib 9 YEARS gamejam. Play it in your browser on itch.io.
The game can be controlled entirely with the mouse or with a touchscreen. If you want to try the level editor you will need to use the keyboard.
Key | Function |
---|---|
Mouse | Aim |
Left Click | Dash |
Hold Left click, R | Restart |
Esc, Space | Pause |
~, / | Level editor |
Key | Function |
---|---|
Left Click | Place tile / Select object |
Drag | Move object |
F | Toggle free form placement |
G | Toggle align to grid |
H | Toggle align to half grid |
D | Deselect |
1 .. 5 | Cycle through tiles |
The coding and level design was done by Blat Blatnik. The art was made by Olga Ważny.
This is what is stored in the binary level files. Mostly here so I don't forget.
int version; // always 1
uint8_t tiles[32][32][2]; // [0] = tile, [1] = tile variant.
float chocoroX;
float chocoroY;
int numBalloons;
float ballonPos[numBalloons][2];
int numGasers;
float gaserPos[numGasers][2];
int numGunners;
float gunnerPos[numGunners][2];