Files
puzzle-design-kb/README.md
Bryce 67bf25f8cc Analyze Maniac Mansion: Added Multi-Character Coordination puzzle type; documented pool reactor meltdown (Timed Consequence), arcade code observation (Observation Replay), music room demo chain & envelope steam puzzle (Meta-Puzzle Construction)
Puzzles documented:
- Pool Reactor Meltdown: Two-character timed sequence with narrative urgency
- Meteor Mess Arcade: Observation replay of cutscene high score
- Music Room Demo Tape → Contract: Sequential meta-construction chain for Syd/Razor ending
- Envelope Steam Extraction: Resource transformation puzzle with temporal separation

New puzzle type created: Multi-Character Coordination (exploits party system for actions spanning separated locations)

Files updated: timed-consequence.md, observation-replay.md, meta-puzzle-construction.md, README.md
Walkthroughs collected: syntax2000 walkthrough + wikipedia game overview
2026-03-17 23:55:40 -07:00

4.0 KiB

Puzzle Types in Adventure Games

A taxonomy of puzzle design patterns derived from analysis of classic Sierra and LucasArts adventure games (King's Quest VI, Maniac Mansion, Secret of Monkey Island, Simon the Sorcerer, Legend of Kyrandia), focusing on mechanics of information conveyance and player action.

Table of Contents

# Puzzle Type Core Mechanic Game Source
1 Multi-Faceted Plan Puzzle Requirements discovered incrementally; player synthesizes complete mental model KQVI
2 Sensory Exploitation Puzzle Character perceptual vulnerabilities exploited through item matching KQVI/MI
3 Metaphor-to-Literal Translation Abstract language interpreted as literal game mechanics MI
4 Information Brokerage Chain Implicit NPC exchange network mapped through incremental interaction KQVI/MI
5 Timed Consequence Puzzle Narrative urgency without mechanical deadline; consequence is permanent story change KQVI/MM/SIMON
6 Environmental Storytelling Discovery Information hidden in environment; discovered through examination, observation KQVI
7 Cross-Realm Logistics Puzzle Inventory management across multiple locations/realms; rewards forward planning KQVI
8 Truth Revelation Mechanic Items reveal hidden truth; truth itself is the solution KQVI
9 Observation Replay Puzzle Single viewing of sequence, must reproduce exactly when opportunity arises MI/MM/SIMON
10 Pattern Learning / Knowledge Transfer Learn rule set in low-stakes domain; apply exhaustively under consequences MI
11 Environmental Memo Chain Scattered written fragments across locations; synthesize narrative to reveal solution MI
12 NPC Distraction Physics Manipulate environment to break NPC blocking pattern without confrontation MI
13 Meta-Puzzle Construction Sequential interdependence; each step's output becomes next step's input MI/MM
14 Multi-Character Coordination Puzzle Multiple characters required for separated location actions; single character physically impossible MM

Core Principles

These puzzle types share common characteristics that define adventure game puzzle design:

Limited Actions, Unlimited Combinations

The standard adventure game action set (LOOK, TALK, USE, WALK, TAKE) is applied in novel ways. The puzzle emerges from the combination of actions, not from complex input systems.

Information as Puzzle Element

The puzzle is often "what does the game know that I need to find out?" rather than "what do I need to do?" Information discovery is the primary mechanic.

Failure as Feedback

Failed attempts reveal information about what's missing or wrong. The puzzle teaches through consequences, not explicit instruction.

Synthesis Over Collection

The solution often requires combining information from multiple sources. No single action completes the puzzle—player must synthesize.


Documentation Structure

Each puzzle type document contains:

  • Information Architecture: How information is conveyed to the player
  • Player Action Pattern: What the player does with that information
  • Core Mechanic: The underlying puzzle logic
  • Variations: Different ways this type can manifest
  • Adventure Game Implementation: How limited actions (LOOK, TALK, USE, WALK) map to the puzzle
  • Example Structure: Generic template showing how the puzzle works
  • Game Examples: Concrete instances from walkthroughs (KQVI or MI)
  • Related Types: Cross-references to similar puzzle mechanics