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
This commit is contained in:
2026-03-17 23:55:40 -07:00
parent 11781882a5
commit 67bf25f8cc
19 changed files with 13146 additions and 4 deletions

View File

@@ -42,6 +42,75 @@ Return Phase:
---
### Simon the Sorcerer: Mummy Tomb Looting
**Problem**: Wizard's Staff is locked inside mummy's sarcophagus in Rapunzel Castle crypt. Mummy blocks access during its animation—cannot interact with bandage or tomb contents while it's fully animated. Direct theft attempt fails.
<small>
Source: simon1_2.txt, lines 278-281 — "Use the hair to return to the room at the top of the castle. Use the woodworm on the floorboards. Use the ladder on the hole. Down. Open the tomb. Select any option when the mummy appears to exit the castle."
</small>
**Discovery Phase (First Visit)**:
1. Open sarcophagus → mummy rises from tomb with hostile animation
2. Dialogue options available but all fail—mummy is aggressive
3. Only viable action: Run away (exit castle entirely)
4. Critical observation during mummy's animation loop: loose bandage visible at back of body
5. Bandage location memorized; appears briefly during animation cycle
**Return Phase (Second Visit)**:
1. Re-enter Rapunzel Castle via front door (not through floor hole, which no longer exists)
2. Access basement → climb down ladder to crypt again
3. Open sarcophagus second time → mummy rises with identical animation
4. QUICKLY click loose bandage at exact position observed earlier (at mummy's back)
5. Bandage removal animation triggers → mummy collapses harmlessly
6. Sarcophagus now accessible: Wizard's Staff appears
<small>
Source: simon1_3.txt, lines 209-212 — "Enter the castle again (via the door, this time) and climb down the Ladder again. Pick up the Loose Bandage (it's at the butt end of the Mummy and you have to be pretty quick.) Presto! The Staff!"
</small>
**Why It's Observation Replay**:
- **Single Viewing**: Critical information (bandage location + extraction timing) shown ONCE during first encounter
- **Exact Reproduction Required**: Second visit demands same action at same target position within brief animation window
- **No System Learning**: Bandage mechanic is unique to this encounter; does NOT apply to any other puzzle
### Maniac Mansion: Meteor Mess Arcade Code
**Problem**: Secret laboratory door requires 4-digit access code from Meteor Mess arcade high score. Dr. Fred demonstrates the game via cutscene before player can interact. Player must observe and memorize the exact high score value displayed, then input it later when quarter obtained.
<small>
Source: syntax2000_walkthrough.txt, lines 174-180 — "wait until you have seen Dr. FRED play an arcade game, leave room, open door to right, enter games room, walk to machine entitled 'Meteor Mess', use quarter on coin slot - make note of highest score number"
</small>
**Discovery Phase (Forced Cutscene)**:
1. Player reaches medical/exam room area
2. Wait until cutscene triggers automatically: Dr. Fred enters game room
3. Dr. Fred plays Meteor Mess arcade machine → high score appears on screen
4. CUTSCENE ENDS—player cannot interact during this viewing
5. Critical information: The specific 4-digit high score value displayed
**Blocked Conditions**:
- Arcade machine requires quarter (obtained from Edna's sealed envelope—different puzzle branch)
- High score ONLY visible AFTER Dr. Fred sets it; player cannot determine independently
- No rewind/replay option available
**Return Phase (Reproduction)**:
6. Obtain quarter via envelope steam puzzle (microwave + water in jar)
7. Return to Games Room with quarter
8. Insert quarter, play Meteor Mess → previously observed high score now accessible
9. Memorize the code number
10. Proceed to dungeon exit: use Glowing Key on double padlocks
11. Enter numeric keypad with observed code → Secret Laboratory access granted
**Why It's Observation Replay**:
- **Forced Single Viewing**: Code value presented ONLY during NPC cutscene; player has zero interaction ability
- **Deferred Action Window**: Cannot act immediately—requires quarter from entirely separate puzzle branch (telescope → safe → envelope → quarter)
- **Pure Value Memorization**: Not about learning a system or rule; the specific 4 digits must be retained in working memory for extended gameplay period
**Distinction from Pattern Learning**: Code is NOT a transferable system—the arcade game teaches nothing generalizable. It's pure memorization of a specific value, not principle application.
---
## Related Types
- **Multi-Faceted Plan**: Requires synthesis of multiple requirements discovered at different times