Summary

A design pattern in which three or more actions or options form a cyclic dominance relationship — every option beats at least one other option and loses to at least one other, so no single option dominates all others (Björk & Holopainen 2004, see source-patterns-in-game-design).

This is the game-design implementation of intransitive balance — the preferred structure for competitive multiplayer systems where transitive balance (a clear hierarchy) would produce a dominant strategy and eliminate meaningful choice. See game-balance.

Implementation

Minimum structure: Three options in a cycle: A beats B, B beats C, C beats A. The player’s optimal choice at any moment depends on what the opponent is likely to do — creating permanent uncertainty even with full information.

Immediate vs. long-term forms:

  • Immediate (the original game): choices resolve instantly; the game is repeated so players build meta-knowledge of opponents. Produces tension at the moment of choice.
  • Long-term (strategic): players invest in asymmetric abilities over time (units, tech trees, character builds), creating a strategic layer where the Paper-Rock-Scissors relationship plays out over many interactions. Players use reconnaissance and public information to read opponent composition before committing.

Scaling up:

  • More than three options extends the cycle but can create confusion if players cannot track all relationships
  • Partial cycles (some options beat many, some beat few) produce a mixed transitive/intransitive structure
  • Asymmetric cycling (A hard-counters B but B only soft-counters C) produces a more nuanced strategic landscape

In practice:

  • Weapon vs. enemy type systems (Quake: different weapons optimal for different monsters)
  • Unit type systems in RTS (infantry/cavalry/archers; tank/anti-tank/aircraft)
  • Character class or ability systems in fighting games and MOBAs
  • Terrain types affecting unit performance in strategy games

Trade-offs

FactorEffect
Immediate cyclesSimple tension; requires repetition for meta-game to develop
Long-term cyclesStrategic depth; requires investment → risk/reward engagement
Transparent cyclePlayers can make informed decisions; dominant meta may emerge
Hidden cycleExploration and experimentation required; may feel arbitrary
Perfect symmetryFairness; may feel shallow if players cannot differentiate

Key tension: Paper-Rock-Scissors introduces a form of Randomness — without knowledge of what opponents will do, choices are partially blind. This limits Predictable Consequences but also prevents dominant strategies from ossifying. The pattern generates game-balance at the cost of full predictability.

Examples

  • Pokémon — type chart as an extended Paper-Rock-Scissors system (18 types, complex partial cycles)
  • StarCraft — marine/medic vs. zealots vs. zerglings as a classic intransitive unit triangle
  • Quake — weapon-enemy counters (Björk’s own example)
  • Fire Emblem — weapon triangle (sword/axe/lance) as explicit three-way cycle
  • Rock Paper Scissors Lizard Spock (from The Big Bang Theory / Sam Kass) — extension to 5 options maintaining intransitivity

game-balance | meaningful-decisions | risk-reward | systemic-depth-elegance | randomness-in-games | source-patterns-in-game-design