13 puzzle types derived from King's Quest VI and Monkey Island I/II: Existing (KQVI): Multi-Faceted Plan, Sensory Exploitation, Metaphor-to-Literal, Information Brokerage, Timed Consequence, Environmental Storytelling Discovery, Cross-Realm Logistics, Truth Revelation New (MI1/II): Observation Replay, Pattern Learning/Knowledge Transfer, Memo Chain, Distraction Physics, Meta-Puzzle Construction Each document includes: - Information Architecture (how info is conveyed) - Player Action Pattern (what player does with info) - Core Mechanic (underlying puzzle logic) - Variations and game examples - Related types for cross-reference
4.7 KiB
Meta-Puzzle Construction / Sequential Interdependence
Information Architecture: Puzzle components are chained linearly where Step N's OUTPUT becomes Step N+1's INPUT. Unlike Multi-Faceted Plan's parallel requirement gathering (A AND B AND C independently found), Meta-Construction requires sequential execution—each action creates the resource needed for the next action. Cannot reorder steps; cannot pre-gather all components.
Player Action Pattern:
- Complete Step 1 → receive Output Item A
- Use Item A in context of Step 2 → produce Output Item B
- Repeat until final step produces Target Solution
- Backtracking required if wrong interpretation leads to dead-end output
Core Mechanic: The puzzle is a production line where the player crafts their way through. Each action's product is only valuable within the specific chain—it has no other use. This creates "no-branch" progression: exactly one valid sequence exists.
Variations
| Type | Interdependence | Branching Allowed? | Example |
|---|---|---|---|
| Linear Chain | N's output = N+1's sole input | No | Dinky Island Water Filtration |
| Branched Assembly | Multiple paths to same output item | Yes, converges later | Some crafting puzzles |
| Conditional Branching | Output determines which branch unlocks | Depends on output value | Code-cracking sequences |
| Resource Accumulation | Each step produces partial completion | No, accumulative | Multi-stage recipes requiring mixing |
Game Examples
Monkey Island II: Dinky Island Water Filtration System
Complete Chain:
- Pick up Bottle (empty, capped)
- Use Bottle on Rock → Broken Bottle + Crowbar
- Use Crowbar on Barrel → Cracker #1 revealed
- Feed Cracker #1 to Parrot → Direction 1 ("East of pond to dinosaur")
- Note: To activate still for distilled water, need more crackers
- Use Broken Bottle as funnel into Still → creates distillation capability
- Obtain Glass O' Water from ocean → use with Still → Distilled Water
- Find empty Box (low-sodium cracker mix) on jungle path
- Use Distilled Water on Box → produces Cracker #2 AND #3
- Feed remaining crackers to Parrot → Directions 2 & 3
Final Synthesis: Three directions from parrot = navigation map to X marks the spot
Why It's Meta-Construction (Not Multi-Faceted Plan):
- Cannot gather all 3 crackers in parallel—must sequence production
- Broken Bottle is only useful for crowbar extraction; crowbar only for barrel opening
- Each intermediate state has exactly one valid forward move
- Back-tracking creates dead-ends ("Can't make more crackers without water, can't get water without still access, still needs broken bottle as funnel")
Monkey Island II: Rat Trap → Job Acquisition Chain (Hard Mode Only)
1. Collect String (Voodoo Lady's skull) + Stick (Beach) + Cheese Squiggles (Inn bowl)
2. Assemble trap at Mad Marty's Laundromat: Box + Sticking on stick + cheese bait
3. Trap activates → Captured Rat in box
4. Enter Bloody Lip kitchen, throw rat into Vichyssoise stew
5. Cook fired for contaminating food (barkeeper dialogue)
6. New job position opens: Kitchen assistant, 420 Pieces of Eight salary advance
7. Money enables chartering Captain Dread's boat
Key Feature: Player creates an opportunity by engineering a job vacancy through cascading consequences.
Distinction from Related Types
| Type | Structure | Why Meta-Construction is Different |
|---|---|---|
| Multi-Faceted Plan | Parallel requirements (A + B + C) | MFP = assemble pieces; MC = sequential assembly line |
| Pattern Learning | Same rules apply to Domain A then B | MC = each step has unique mechanic, no transfer |
| Observation Replay | Watch once, reproduce exactly | MC = create new output at each step, not repeat input |
Design Considerations
Advantages:
- Clear progression—easy for designers to scope difficulty curve
- Player feels like "master craftsman" building solution piece by piece
- Satisfying when chain completes after multiple steps
Risks:
- Backtracking frustration if player misses a step's output
- Feels like "fetch quest lite" if intermediate items have no flavor/usefulness
- Can become tedious without narrative justification for the sequence
Best Practice: Each intermediate output should be thematically meaningful (bottle → crowbar makes sense physically; cracker mix + water = crackers follows real-world logic) rather than arbitrary ("Magic Stone #3" → "Magic Portal Key").
Related Types
- Multi-Faceted Plan: When requirements discovered in parallel, not sequence
- Recipe Discovery: When puzzle is learning the correct combination formula, not executing fixed steps