Fixed Lessons
The early game is curated on purpose so new players meet one concept at a time instead of random pressure.
ZooBlocks splits its objective system into two phases: fixed onboarding levels and weighted procedural generation. Some goals accumulate over the whole level, while others only count if you hit the threshold in one single scoring resolution.
The first five levels are hand-authored teaching levels rather than random pulls from the procedural generator.
The early game is curated on purpose so new players meet one concept at a time instead of random pressure.
From level 6 onward the game starts pulling from a weighted goal pool and difficulty ramps more flexibly.
Most generated levels run two goals, while later checkpoints can stack three at once.
From level 6 onward, the game chooses goals from a weighted pool. Most levels use 2 simultaneous goals, while some later checkpoints can use 3.
The pool also expands with progression. Score goals, collection goals, line-combo goals, color-specific collection, and one-match-size goals are only added after certain level thresholds.
The most important hidden distinction is whether a goal adds up over time or checks one moment only.
These keep counting upward through the whole level, so steady progress matters more than one explosive turn.
These only care about one scoring resolution. You either hit the threshold in one moment or nothing is banked.
When you retry, the same generated goal set returns, so you can learn and plan around a fixed objective mix.
Goals are updated only after a scoring resolution finishes. The code records points, total unique cleared cells, color-specific cell counts, row totals, column totals, line-combo size, and match-group size.
Because these are separate signals, one move can advance several goals at once if it creates the right combination of clears.
Generated levels are cached. If you retry the same level, the board size and goals stay the same instead of being rerolled.
This is useful for learning. You can adapt strategy to the exact objective mix instead of hoping for an easier redraw.
As level number rises, target values increase and the board grows from 4x4 through 9x9. That means late-game goals ask for bigger numbers while also giving you more room to set up stronger turns.
Once you know which goals accumulate and which must be completed in one scoring window, levels become much easier to read. ZooBlocks rewards adapting your plan to the current objective mix.