A core mechanic is the repeating action players take to move a game toward its end condition. Most tabletop games are built from a small number of these actions arranged into a loop. Before adding theme or artwork, it helps to describe that loop in one or two sentences, because everything else in the design either supports it or competes with it.

The three parts of a loop

A workable loop usually answers three questions: what does a player do on their turn, what changes as a result, and how does that change move someone closer to winning. When any of the three is unclear, players tend to stall during a session and ask what they are supposed to do.

  • Turn structure: the fixed order of phases a player goes through, such as draw, act, then resolve.
  • Resource flow: what enters and leaves a player's control, whether cards, tokens, position or actions.
  • Player interaction: how one player's choices affect the options available to others.

Writing the loop down

A short pseudo-rule helps you see whether the loop is complete. The example below describes a worker-placement style turn without any theme attached.

turn:
  1. place 1 worker on an open space
  2. take that space's action (gain or spend resources)
  3. if no workers remain, end your turn
round_end:
  - return all workers
  - advance the round marker
end_condition:
  - after round 8, highest score wins

Reading it back, you can check for gaps: is there ever a turn where a player has no legal move, and does the end condition always trigger. Catching these on paper is far cheaper than catching them mid-session.

Common loop families

Loop familyCore actionWhat players weigh
Worker placementClaim limited action spacesWhich space to take before an opponent does
Hand managementPlay cards from a managed handWhen to spend a strong card versus hold it
Set collectionGather matching itemsCompleting a set versus denying one
Area controlPlace pieces to hold regionsSpreading out versus defending a position
Practical note

Start with one loop family and resist stacking several at once. A single clear loop is easier to balance and to teach than a hybrid that combines three half-explored ideas.

Keeping the loop teachable

If you cannot explain a turn in about a minute, the loop is likely carrying more than it needs. Hobbyist groups and public library game nights in Canada often welcome new local designs, and a loop you can teach quickly is far more likely to get a second play at those tables. Aim for rules that a new player can hold in their head after the first round.

For broader background on how designers describe these structures, the Wikipedia overview of game design and the community database at BoardGameGeek are useful public starting points.