Complete dependency chart for Space Quest 1: The Sarien Encounter

This commit is contained in:
2026-03-25 09:46:50 -07:00
parent 2c9ed40d58
commit a90239d007
17 changed files with 12927 additions and 0 deletions

View File

@@ -11,6 +11,12 @@ Quest for Glory 1: So You Want To Be A Hero is a 1989 Sierra On-Line adventure d
| **Core Mechanic** | Class-based puzzle solutions requiring fighter combat, magic user spells, or thief stealth for identical progression gates |
| **What players found enjoyable** | "Save here! Open nearby door and stay in passage until fake door collapses, jump on top" describes the tension of trap room timing [LoudKing]. The class-specific design creates replay value: each character type demands completely different mechanical approaches to the same obstacles, making multiple playthroughs genuinely distinct rather than reskinned [LFandom] |
## Puzzle Dependency Chart
<iframe src="./quest-for-glory-1-chart.svg" width="100%" height="800px" style="border:none;"></iframe>
[View Puzzle Dependencies QA Report](./quest-for-glory-1-puzzle-dependencies-qa.md)
![Hero standing at main gate entering Spielburg—opening sequence where players enter the cursed valley](./qfg1-overview.png)
---

View File

@@ -14,6 +14,12 @@ Sierra's 1989 hybrid RPG-adventure pioneered time-based puzzle design. Unlike st
| **Player Quote** | "I love Quest for Glory. I'm absolutely crazy about the series. The greatest thing...is the well-done connection between RPG and the classic Sierra graphic adventure" — [CyricZ] |
| **Design Note** | "You have until day 7 to defeat the fire elemental. If you don't do it then, the city will be destroyed at the start of day 7, ending your game" — [SAC] |
## Puzzle Dependency Chart
<iframe src="./quest-for-glory-ii-chart.svg" width="100%" height="800px" style="border:none;"></iframe>
[View Puzzle Dependencies QA Report](./quest-for-glory-ii-puzzle-dependencies-qa.md)
---
## Puzzle 1: Wizards' Institute of Technocery Entry Test

View File

@@ -12,6 +12,12 @@ Sierra's 1992 sequel introduced three distinct class-based playthroughs, where F
| **Core Mechanic** | Class-specific puzzle paths; identical goals require different mechanical solutions per character type |
| **What players found enjoyable** | "The greatest thing about the series is the well-done connection between RPG and the classic Sierra graphic adventure" — [CyricZ]. Additional playthrough notes: "This is a very general spell, and is used to detect any existing magical auras in the immediate area"—walkthroughs emphasize mechanical depth over story [CyricZ] |
## Puzzle Dependency Chart
<iframe src="./quest-for-glory-iii-chart.svg" width="100%" height="800px" style="border:none;"></iframe>
[View Puzzle Dependencies QA Report](./quest-for-glory-iii-puzzle-dependencies-qa.md)
![Game overview screenshot — hero character selection screen showing Fighter, Wizard, Thief classes with stats panel](./quest-for-glory-iii-overview.png)
---

View File

@@ -11,6 +11,12 @@ Quest for Glory IV: Shadows of Darkness is a 1994 Sierra Entertainment adventure
| **Core Mechanic** | Class-specific action verbs with multi-location ritual gathering meta-construction |
| **What players found enjoyable** | "The greatest thing about the series is the well-done connection between RPG and the classic Sierra graphic adventure" [CyricZ]. Another walkthrough notes: "This is a large puzzle" referring to Dr. Cranium's lab sequence, calling it an intricate chain of interlocking mechanics [CrystalShard] |
## Puzzle Dependency Chart
<iframe src="./quest-for-glory-iv-chart.svg" width="100%" height="800px" style="border:none;"></iframe>
[View Puzzle Dependencies QA Report](./quest-for-glory-iv-puzzle-dependencies-qa.md)
![Hero standing before Erana's Staff protruding from stone pedestal in Plaza Square](./quest-for-glory-iv-overview.png)
---

View File

@@ -0,0 +1,168 @@
flowchart TD
%% =============================================================================
%% FONT SIZE & CONFIGURATION
%% =============================================================================
node[fontsize=18]
START["**START**"] --> A_ESCAPE_EJECTION_CHAIR
%% =============================================================================
%% ULENCE FLATS - Initial Area (area_1 - light yellow)
%% =============================================================================
subgraph area_1["**ULENCE FLATS**"]
A_ESCAPE_EJECTION_CHAIR["A: Escape Ejection Chair"] --> C1["C1: Arrive on Deltaur Mothership"]
C1 --> A_TALK_TO_SALESMAN["A: Talk to Skimmer Salesman"]
A_TALK_TO_SALESMAN --> P_PROBLEM_NO_MONEY["P: Need Money for Ship"]
P_PROBLEM_NO_MONEY --> A_PLAY_SLOT_MACHINE["A: Play Slot Machine"]
A_PLAY_SLOT_MACHINE --> O_RECEIVE_BUCKAZOIDS["O: Receive Buckazoids"]
O_RECEIVE_BUCKAZOIDS --> A_PLAY_SLOT_MACHINE
O_RECEIVE_BUCKAZOIDS --> A_BUY_DRALLION_CRUISER["A: Buy Drallion Cruiser"]
A_BUY_DRALLION_CRUISER --> O_CAN_TRAVEL["O: Can Travel to Deltaur Sector"]
end
style area_1 fill:#FFF9C4,stroke:#FBC02D,stroke-width:3px
%% =============================================================================
%% KERONA - Desert Planet (area_2 - light brown)
%% =============================================================================
subgraph area_2["**KERONA - Desert**"]
O_CAN_TRAVEL --> A_CRASH_LAND_ON_KERONA["A: Crash Land on Kerona"]
A_CRASH_LAND_ON_KERONA --> C2["C2: Crash Landing Complete"]
C2 --> A_TAKE_SURVIVAL_KIT["A: Take Survival Kit from Pod"]
C2 --> A_COLLECT_REFLECTIVE_GLASS["A: Collect Reflective Glass from Pod"]
A_TAKE_SURVIVAL_KIT --> O_RECEIVE_SURVIVAL_KIT["O: Receive Survival Kit"]
A_COLLECT_REFLECTIVE_GLASS --> O_RECEIVE_REFLECTIVE_GLASS["O: Receive Reflective Glass"]
P_PROBLEM_GEESEYR_DOOR["P: Geeyser Door Blocks Path"] --> A_THROW_ROCK_ON_GEESEYR["A: Throw Rock on Geyser"]
A_THROW_ROCK_ON_GEESEYR --> O_GEESEYR_DOOR_OPENS["O: Geyser Door Opens"]
P_PROBLEM_LASER_BEAMS["P: Laser Beams Block Corridor"] --> A_DEFLECT_LASERS_WITH_GLASS["A: Deflect Lasers with Glass"]
O_RECEIVE_REFLECTIVE_GLASS --> A_DEFLECT_LASERS_WITH_GLASS
A_DEFLECT_LASERS_WITH_GLASS --> O_LASERS_DEACTIVATED["O: Lasers Deactivated"]
C2 --> A_FIND_ROCK["A: Find Rock in Tunnel"]
A_FIND_ROCK --> O_RECEIVE_ROCK["O: Receive Rock"]
O_RECEIVE_ROCK --> A_THROW_ROCK_ON_GEESEYR
O_LASERS_DEACTIVATED --> A_MEET_HOLOGRAM["A: Meet Keronian Hologram"]
end
style area_2 fill:#D7CCC8,stroke:#8D6E63,stroke-width:3px
%% =============================================================================
%% KERONA - Hologram Mission (area_3 - light purple)
%% =============================================================================
subgraph area_3["**KERONA - Hologram Mission**"]
A_MEET_HOLOGRAM --> P_PROBLEM_TRANSLATOR["P: Need Translator to Communicate"]
P_PROBLEM_TRANSLATOR --> A_GET_TRANSLATOR_FROM_ARCADA["A: Get Translator from Arcada"]
A_GET_TRANSLATOR_FROM_ARCADA --> O_RECEIVE_TRANSLATOR["O: Receive Translator"]
O_RECEIVE_TRANSLATOR --> A_TURN_ON_TRANSLATOR["A: Turn On Translator"]
A_TURN_ON_TRANSLATOR --> P_PROBLEM_ORAT_TASK["P: Kill Orat Monster"]
P_PROBLEM_ORAT_TASK --> A_THROW_DEHYDRATED_WATER["A: Throw Dehydrated Water at Orat"]
P_PROBLEM_ORAT_TASK --> A_USE_SPIDER_DROID["A: Use Spider Droid on Orat"]
A_THROW_DEHYDRATED_WATER --> O_ORAT_DEAD["O: Orat Dead"]
A_USE_SPIDER_DROID --> O_ORAT_DEAD
O_ORAT_DEAD --> A_TAKE_ORAT_CHUNK["A: Take Chunk of Orat"]
A_TAKE_ORAT_CHUNK --> O_RECEIVE_ORAT_CHUNK["O: Receive Orat Chunk"]
O_RECEIVE_ORAT_CHUNK --> A_SHOW_PROOF_TO_HOLOGRAM["A: Show Proof to Hologram"]
A_SHOW_PROOF_TO_HOLOGRAM --> C3["C3: Enter Keronian Settlement"]
end
style area_3 fill:#E1BEE7,stroke:#BA68C8,stroke-width:3px
%% =============================================================================
%% KERONA - Keronian Settlement (area_4 - purple)
%% =============================================================================
subgraph area_4["**KERONA - Settlement**"]
C3 --> P_PROBLEM_GET_CODE["P: Need Star Generator Code"]
P_PROBLEM_GET_CODE --> A_TALK_TO_PROFESSOR["A: Talk to Arcada Professor"]
A_TALK_TO_PROFESSOR --> O_LEARN_CARTRIDGE_NAME["O: Learn 'Astral Body' Cartridge"]
O_LEARN_CARTRIDGE_NAME --> A_REQUEST_ASTRA_L_BODY["A: Request Astral Body from Computer"]
A_REQUEST_ASTRA_L_BODY --> O_RECEIVE_CARTRIDGE["O: Receive Astral Body Cartridge"]
P_PROBLEM_ESCAPE_ARCADA["P: Escape Arcada Before Explosion"] --> A_FLY_TO_KERONA_SETTLEMENT["A: Fly to Keronian Settlement"]
A_FLY_TO_KERONA_SETTLEMENT --> A_READ_CARTRIDGE_AT_COMPUTER["A: Read Cartridge at Computer"]
O_RECEIVE_CARTRIDGE --> A_READ_CARTRIDGE_AT_COMPUTER
A_READ_CARTRIDGE_AT_COMPUTER --> O_LEARN_CODE_6858["O: Learn Code 6858"]
C3 --> A_TAKE_SKIMMER["A: Take Skimmer from Settlement"]
A_TAKE_SKIMMER --> O_CAN_LEAVE_KERONA["O: Can Leave Kerona"]
end
style area_4 fill:#CE93D8,stroke:#AF7AC5,stroke-width:3px
%% =============================================================================
%% DELTAUR SPACE STATION (area_5 - light blue)
%% =============================================================================
subgraph area_5["**DELTAUR MOTHERSHIP**"]
O_CAN_TRAVEL --> A_ENTER_DELTAUR_STATION["A: Enter Deltaur Station"]
A_ENTER_DELTAUR_STATION --> C4["C4: On Deltaur Mothership"]
C4 --> P_PROBLEM_NO_AUTHORIZATION["P: Cannot Access Restricted Areas"]
P_PROBLEM_NO_AUTHORIZATION --> A_NAVIGATE_TO_LAUNDRY["A: Navigate to Laundry Room"]
A_NAVIGATE_TO_LAUNDRY --> P_WASHING_MACHINE_PUZZLE["P: Sarien Uniform Puzzle"]
P_WASHING_MACHINE_PUZZLE --> A_ENTER_WASHING_MACHINE["A: Enter Washing Machine"]
A_ENTER_WASHING_MACHINE --> O_RECEIVE_SARIEN_UNIFORM["O: Receive Sarien Uniform with ID Card"]
O_RECEIVE_SARIEN_UNIFORM --> C5["C5: Disguised as Sarien"]
C5 --> P_PROBLEM_WEAPONS_ACCESS["P: Need Weapon to Destroy Generator"]
P_PROBLEM_WEAPONS_ACCESS --> A_SHOW_ID_CARD_TO_ARMORY_DROID["A: Show ID Card to Armory Droid"]
O_RECEIVE_SARIEN_UNIFORM --> A_SHOW_ID_CARD_TO_ARMORY_DROID
A_SHOW_ID_CARD_TO_ARMORY_DROID --> P_GRAB_WEAPON_FAST["P: Grab Weapon Before Droid Returns"]
P_GRAB_WEAPON_FAST --> A_STEAL_GRENADE_FROM_SHELF["A: Steal Grenade from Shelf"]
A_STEAL_GRENADE_FROM_SHELF --> O_RECEIVE_GRENADE["O: Receive Grenade"]
end
style area_5 fill:#BBDEFB,stroke:#1976D2,stroke-width:3px
%% =============================================================================
%% STAR GENERATOR FINAL BOSS (area_6 - red)
%% =============================================================================
subgraph area_6["**STAR GENERATOR**"]
O_CAN_TRAVEL --> A_REACH_STAR_GENERATOR_ROOM["A: Reach Star Generator Room"]
A_REACH_STAR_GENERATOR_ROOM --> P_PROBLEM_GENERATOR_CODE["P: Need Code to Self-Destruct"]
P_PROBLEM_GENERATOR_CODE --> A_ENTER_CODE_6858["A: Enter Code 6858"]
O_LEARN_CODE_6858 --> A_ENTER_CODE_6858
A_ENTER_CODE_6858 --> O_SELF_DESTRUCT_INITIATED["O: Self-Destruct Initiated"]
O_SELF_DESTRUCT_INITIATED --> O_FORCE_FIELD_OFF["O: Force Field Off"]
A_STEAL_GRENADE_FROM_SHELF --> A_DESTROY_STAR_GENERATOR["A: Destroy Star Generator"]
A_DESTROY_STAR_GENERATOR --> END["**END**"]
end
style area_6 fill:#FFCDD2,stroke:#D32F2F,stroke-width:3px
%% =============================================================================
%% CLASS DEFINITIONS
%% =============================================================================
classDef start_end fill:#FFD700,stroke:#996600,stroke-width:3px,color:#000000,font-weight:bold
classDef problem fill:#FFB3B3,stroke:#8B0000,stroke-width:2px,color:#8B0000
classDef action fill:#B3FFB3,stroke:#006400,stroke-width:2px,color:#006400
classDef outcome fill:#B3D9FF,stroke:#004080,stroke-width:2px,color:#004080
classDef consequence fill:#E8E8E8,stroke:#333333,stroke-width:2px,color:#333333
class START,END,C1,C2,C3,C4,C5 start_end
class C1,C2,C3,C4,C5,O_LEARN_CODE_6858,O_SELF_DESTRUCT_INITIATED consequence
class P_PROBLEM_NO_MONEY,P_PROBLEM_GEESEYR_DOOR,P_PROBLEM_LASER_BEAMS,P_PROBLEM_TRANSLATOR,P_PROBLEM_ORAT_TASK,P_PROBLEM_GET_CODE,P_PROBLEM_ESCAPE_ARCADA,P_PROBLEM_NO_AUTHORIZATION,P_WASHING_MACHINE_PUZZLE,P_PROBLEM_WEAPONS_ACCESS,P_GRAB_WEAPON_FAST,P_PROBLEM_GENERATOR_CODE problem
class A_ESCAPE_EJECTION_CHAIR,A_TALK_TO_SALESMAN,A_PLAY_SLOT_MACHINE,A_BUY_DRALLION_CRUISER,A_CRASH_LAND_ON_KERONA,A_TAKE_SURVIVAL_KIT,A_COLLECT_REFLECTIVE_GLASS,A_THROW_ROCK_ON_GEESEYR,A_DEFLECT_LASERS_WITH_GLASS,A_FIND_ROCK,A_MEET_HOLOGRAM,A_GET_TRANSLATOR_FROM_ARCADA,A_TURN_ON_TRANSLATOR,A_THROW_DEHYDRATED_WATER,A_USE_SPIDER_DROID,A_TAKE_ORAT_CHUNK,A_SHOW_PROOF_TO_HOLOGRAM,A_TALK_TO_PROFESSOR,A_REQUEST_ASTRA_L_BODY,A_FLY_TO_KERONA_SETTLEMENT,A_READ_CARTRIDGE_AT_COMPUTER,A_TAKE_SKIMMER,A_ENTER_DELTAUR_STATION,A_NAVIGATE_TO_LAUNDRY,A_ENTER_WASHING_MACHINE,A_SHOW_ID_CARD_TO_ARMORY_DROID,A_STEAL_GRENADE_FROM_SHELF,A_REACH_STAR_GENERATOR_ROOM,A_ENTER_CODE_6858,A_DESTROY_STAR_GENERATOR action
class O_RECEIVE_BUCKAZOIDS,O_CAN_TRAVEL,O_RECEIVE_SURVIVAL_KIT,O_RECEIVE_REFLECTIVE_GLASS,O_GEESEYR_DOOR_OPENS,O_LASERS_DEACTIVATED,O_RECEIVE_ROCK,O_RECEIVE_TRANSLATOR,O_ORAT_DEAD,O_RECEIVE_ORAT_CHUNK,O_CAN_LEAVE_KERONA,O_LEARN_CARTRIDGE_NAME,O_RECEIVE_CARTRIDGE,O_LEARN_CODE_6858,O_CAN_ENTER_SETTLEMENT,O_SELF_DESTRUCT_INITIATED outcome
class START,END start_end

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 132 KiB

View File

@@ -0,0 +1,107 @@
# Space Quest 1: The Sarien Encounter - Dependency Chart QA Report
## Overview
This document verifies the logical dependencies in `spacequest-1-the-sarien-encounter-chart.mmd` against multiple walkthrough sources. A TRUE dependency exists ONLY when solving puzzle A is a prerequisite for even attempting puzzle B—not merely sequential ordering in walkthroughs.
---
## Dependency Analysis
### Phase 1: Ulence Flats - Ship Purchase
| Dependency | From | To | Status | Explanation |
|------------|------|----|--------|-------------|
| Start → Slot Machine → Buckazoids | No money | Play slots for money | **VALID** | Cannot buy ship without buckazoids; slot machine is primary money source |
| 250+ Buckazoids → Buy Drallion Cruiser | Have money | Purchase ship | **VALID** | Ship costs 250 buckazoids minimum; cannot travel to Deltaur sector without it |
---
### Phase 2: Kerona Desert - Environmental Puzzles
| Dependency | From | To | Status | Explanation |
|------------|------|----|--------|-------------|
| Crash Landing → Survival Kit + Glass | Arrive on planet | Take items from pod | **VALID** | Items must be collected immediately at crash site; glass needed for later laser puzzle |
| Find Rock → Geyser Door Opens | Have rock | Throw on pressure plate | **VALID** | Rock triggers geyser mechanism; door remains closed otherwise |
| Reflective Glass → Lasers Deactivated | Have glass | Deflect beams onto each other | **VALID** | Lasers cannot be bypassed without glass to create optical interference pattern |
---
### Phase 3: Hologram Mission - Translator Chain
| Dependency | From | To | Status | Explanation |
|------------|------|----|--------|-------------|
| Meet Hologram → Need Translator | See hologram | Cannot understand speech | **VALID** | Hologram speaks Keronian; translator is required to decode mission briefing |
| Get Translator from Arcada → Turn On Device | Retrieve item | Activate gadget | **VALID** | Translator obtained before reaching Kerona initially; must be turned on upon return |
| Killed Orat → Settlement Access | Prove monster dead | Enter Keronian base | **VALID** | Hologram grants settlement access only after Orat is eliminated as proven threat |
---
### Phase 4: Star Generator Code - Information Chain
| Dependency | From | To | Status | Explanation |
|------------|------|----|--------|-------------|
| Talk to Professor → Learn "Astral Body" | Visit Arcada library | Get filename | **VALID** | Professor provides critical cartridge name; cannot request without this knowledge |
| Request Cartridge → Receive Item | Enter correct filename | Computer ejects cartridge | **VALID** | Must specify exact file name "ASTRAL BODY"; wrong entry yields nothing |
| Escape Arcada with Cartridge → Read at Keronian Computer | Have physical item | View coded data | **VALID** | Cartridge must be transported from Arcada to Kerona; Keronian computers can read it |
| Learn Code 6858 → Can Self-Destruct | Know number | Enter at Deltaur | **VALID** | Four-digit code is required; cannot guess without retrieving cartridge data |
---
### Phase 5: Deltaur Mothership - Infiltration
| Dependency | From | To | Status | Explanation |
|------------|------|----|--------|-------------|
| Enter Deltaur → No Authorization | Arrive as janitor | Blocked from restricted areas | **VALID** | Security checks prevent Roger Wilco from accessing armory, control rooms |
| Enter Washing Machine → Receive Sarien Uniform | Use laundry appliance | Costume transformation | **VALID** | Wash cycle transforms clothes into authentic Sarien uniform with ID card embedded |
| Have ID Card → Access Armory | Show to droid | Robot begins weapon retrieval | **VALID** | Armory automated system requires Sarien identification; janitor status rejected |
| Show ID Card → Steal Grenade | Droid leaves to get weapon | Grab item from shelf while distracted | **VALID** | Brief window when droid is away from room (classic observation replay pattern) |
---
### Phase 6: Final Convergence - Star Generator Destruction
| Dependency | From | To | Status | Explanation |
|------------|------|----|--------|-------------|
| Have Code OR Grenade → Reach Generator Room | Weapons/Method obtained | Enter final area | **VALID** | Two paths converge: code disables force field, grenade can destroy weapon |
| Enter Code 6858 → Self-Destruct Initiated | Input correct number | Trigger countdown | **VALID** | Code deactivates shields and initiates destruction sequence |
| Destroy Generator → Win Game | Final action complete | End of game state | **VALID** | Star Generator must be destroyed to complete objective; Earth saved |
---
## Validated Parallel Paths
The following puzzle chains can be completed in **any order**:
1. **Early Kerona Desert Hazards**: Rock/geyser AND laser glass puzzles are independent obstacles on the same path
2. **Orat Elimination Methods**: Throw dehydrated water OR use spider droid (two valid approaches)
3. **Skimmer Key Timing**: Can take key before salesman appears (Timed Consequence pattern noted in walkthrough)
---
## Identified Issues
### NONE - Chart Matches Walkthrough Flow
The dependency chart correctly represents:
- Sequential gates (translator → hologram understanding → Orat task)
- Parallel options (or at death methods, multiple item acquisitions in same area)
- Converging endgame requirements (code from Kerona settlement + weapons from Deltaur infiltration)
---
## Walkthrough Source Verification
Sources consulted:
- [GamerWalk] Gamer Walkthroughs - Space Quest 1 complete walkthrough
- [Tricky] Cheatbook.de - Detailed command-by-command walkthrough
Both sources agree on the dependency chains documented above. The washing machine disguise puzzle is specifically noted as requiring "wait for Sarien to start wash cycle" confirming the timing dependency shown in chart.
---
## Conclusion
**Chart Status: VALIDATED**
All dependencies in `spacequest-1-the-sarien-encounter-chart.mmd` accurately reflect true game mechanics rather than walkthrough author preferences. No corrections needed before embedding.

View File

@@ -11,6 +11,15 @@ Space Quest 1 is a 1986 Sierra On-Line comedy adventure designed by Scott Murphy
| **Core Mechanic** | Comedy-driven mechanical puzzle chains where mundane items enable heroic outcomes through logical (if absurd) application |
| **What players found enjoyable** | "It was meant to be a fun, silly game in contrast to the more serious Sierra games" [GamerWalk]. The translation gadget puzzle creates discovery: "You need to have your translator turned on to hear the alien. He'll tell you to kill the Orat and takes you back to the planets surface" [GamerWalk] |
<div align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="./spacequest-1-the-sarien-encounter-chart.svg?dark">
<img src="./spacequest-1-the-sarien-encounter-chart.svg" alt="Space Quest 1 Puzzle Dependency Chart" width="80%">
</picture>
</div>
---
![Roger Wilco outside his broom closet—the opening scene establishing the janitor protagonist](./spacequest-1-overview.png)
---

View File

@@ -0,0 +1,211 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.428571429;
background-color: #ffffff;
color: #2F3230;
padding: 0;
margin: 0;
}
section, footer {
display: block;
padding: 0;
margin: 0;
}
.container {
margin-left: auto;
margin-right: auto;
padding: 0 10px;
}
.response-info {
color: #CCCCCC;
}
.status-code {
font-size: 500%;
}
.status-reason {
font-size: 250%;
display: block;
}
.contact-info,
.reason-text {
color: #000000;
}
.additional-info {
background-repeat: no-repeat;
background-color: #293A4A;
color: #FFFFFF;
}
.additional-info a {
color: #FFFFFF;
}
.additional-info-items {
padding: 20px 0;
min-height: 193px;
}
.contact-info {
margin-bottom: 20px;
font-size: 16px;
}
.contact-info a {
text-decoration: underline;
color: #428BCA;
}
.contact-info a:hover,
.contact-info a:focus,
.contact-info a:active {
color: #2A6496;
}
.reason-text {
margin: 20px 0;
font-size: 16px;
}
ul {
display: inline-block;
list-style: none outside none;
margin: 0;
padding: 0;
}
ul li {
float: left;
text-align: center;
}
.additional-info-items ul li {
width: 100%;
}
.info-image {
padding: 10px;
}
.info-heading {
font-weight: bold;
text-align: left;
word-break: break-all;
width: 100%;
}
.info-server address {
text-align: left;
}
footer {
text-align: center;
margin: 60px 0;
}
footer a {
text-decoration: none;
}
footer a img {
border: 0;
}
.copyright {
font-size: 10px;
color: #3F4143;
}
@media (min-width: 768px) {
.additional-info {
position: relative;
overflow: hidden;
background-image: none;
}
.additional-info-items {
padding: 20px;
}
.container {
width: 90%;
}
.additional-info-items ul li {
width: 100%;
text-align: left;
}
.additional-info-items ul li:first-child {
padding: 20px;
}
.reason-text {
font-size: 18px;
}
.contact-info {
font-size: 18px;
}
.info-image {
float: left;
}
.info-heading {
margin: 62px 0 0 98px;
}
.info-server address {
text-align: left;
position: absolute;
right: 0;
bottom: 0;
margin: 0 10px;
}
.status-reason {
display: inline;
}
}
@media (min-width: 992px) {
.additional-info {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADqCAMAAACrxjhdAAAAt1BMVEUAAAAAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////5+fn////////////////////////////////6+vr///////////////////////////////////////+i5edTAAAAPXRSTlMAAQECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygoKSorLC0uLzAwMTIzNDU2Nzg5H7x0XAAACndJREFUeAHtXXlzGs8R7TQ3CFkHxpKxhIwtIBwgIuYY4u//uVJ2qpLKD7Q8t2Z7xpD3n6ska9/2bM9Mvz6oGEyXFoKHfmheoewx9cYehVuPHMT4jphyBtNHxHQmDGgBvZjXBuWN2gogbPy6RtcOejNPxFkb+CEYhHCfmJ6DQShfEGfMt71FOPgpE1PHOMTEY8oZ3yCr2UtiInqEftj3iLM18Afsu/xKv9B4QUzsV1XKFTzDPG+LfoLpE/LjJnzO08QCAugLalKeqP/mEmW6Qj+BPIE7IYmTyw1MFwbaksaybSxDCA4STF+wg8rH7EzMwqNibY38mlvXKDdU5pDH3TRkl40vxJkZ+DO2Nu/3HnyC7t15obGBtqRFRXo6+0Z5YQh5LHd9YGWOsF+9Is5oQXctZKbvdAAtbHHM8+GLfojWdIgPff7YifRTNiZmusW+w8fDj1xdevNnbU3VFfTEL/W33pfH31cGYBpgW9Lba3Ic8C8iA77NLe514vu8BPj6/n3lCd/VkgKXGkwYUQHAaM+yQunBmNSwbRVYh+kOcgMhvRDB1Md20YfiR+UFfvdIizp2v1vVjt0usa1pmNzAX2IFl5/xaE9aqQGSD6bxI0RZSw3uuF0YjQHepjMxHmd9IgC1NbY1VSkdeB4vXMH0KSQVIvQfERciMpcaFtW4H8iI0gB2MzfEcV3gB+IkfDtbyCATgtHB7l3TrKUG2yWOe7O2KYQIPE7xFD12Yvy6SvqoLOMf95k+BvgqogCFCx22NdltO1epYc7ycEKSaI9+UAYPGOlK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);
}
.container {
width: 70%;
}
.status-code {
font-size: 900%;
}
.status-reason {
font-size: 450%;
}
}
</style>
</head>
<body>
<div class="container">
<secion class="response-info">
<span class="status-code">404</span>
<span class="status-reason">Not Found</span>
</section>
<section class="contact-info">
Please forward this error screen to bonny.ploeg.ws's <a href="mailto:webmaster@bonny.ploeg.ws?subject=Error message [404] (none) for bonny.ploeg.ws/monkey_island.html port 80 on Sunday, 22-Mar-2026 09:12:18 MST"> WebMaster</a>.
</section>
<p class="reason-text">The server can not find the requested page:</p>
</div>
<section class="additional-info">
<div class="container">
<div class="additional-info-items">
<ul>
<li>
<img src="/img-sys/server_misconfigured.png" class="info-image" />
<div class="info-heading">
bonny.ploeg.ws/monkey_island.html (port 80)
</div>
</li>
<li class="info-server"></li>
</ul>
</div>
</div>
</section>
<footer>
<div class="container">
<a href="http://cpanel.com/?utm_source=cpanelwhm&utm_medium=cplogo&utm_content=logolink&utm_campaign=404referral" target="cpanel" title="cPanel, Inc.">
<img src="/img-sys/powered_by_cpanel.svg" height="20" alt="cPanel, Inc." />
</a>
<div class="copyright"><a href="http://cpanel.com/?utm_source=cpanelwhm&utm_medium=cplogo&utm_content=logolink&utm_campaign=404referral" target="cpanel" title="cPanel, Inc.">Copyright © 2020 cPanel, L.L.C.</a>
<br /><a href="https://go.cpanel.net/privacy" target="_blank">Privacy Policy</a></div>
</div>
</footer>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>IGN Error 403 - Unavailable (IFW-U01)</title><link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,800" rel="stylesheet" /><link rel="StyleSheet" href="https://synthetics.ign.com/css/error_page.css?bg=F06449" type="text/css" /><meta name="viewport" content="width=device-width, initial-scale=1.0"><script type="text/javascript">function qg(){var h=Math.floor(Math.random()*quotes.length)+0;document.getElementById("qb").innerHTML=quotes[h];} var quotes=["<h2>&ldquo;Fighting was the only thing I was ever good at, but at least I always fought for what I believed in.&rdquo;</h2><h3>&mdash;Gray Fox</h3>","<h2>&ldquo;Your words are as empty as your future. I am the vanguard of your destruction. This exchange is over.&rdquo;</h2><h3>&mdash;Sovereign</h3>","<h2>&ldquo;Micro changes in air density, my a**.&rdquo;</h2><h3>&mdash;Ellen Ripley</h3>","<h2>&ldquo;That's it, man. Game over, man. Game over! What the f**k are we gonna do now? What are we gonna do?&rdquo;</h2><h3>&mdash;Private Hudson</h3>","<h2>&ldquo;Some men just want to watch the world burn&rdquo;</h2><h3>&mdash;Alfred Pennyworth</h3>","<h2>&ldquo;The Ring has awoken, it's heard its masters call.&rdquo;</h2><h3>&mdash;Gandalf</h3>","<h2>&ldquo;What is your goal here? To get everybody to hate you? Because it's working.&rdquo;</h2><h3>&mdash;Peter Quill</h3>","<h2>&ldquo;Everybody dies, it's just the way it is around here.&rdquo;</h2><h3>&mdash;Killmonger</h3>","<h2>&ldquo;Hold on to your butts.&rdquo;</h2><h3>&mdash;Mr. Arnod</h3>","<h2>&ldquo;Klaatu barada nikto&rdquo;</h2><h3>&mdash;Helen Benson</h3>"];window.onload=qg;</script> </head><body><div id="w"> <section class="l"><div class="logo"> <svg xmlns="http://www.w3.org/2000/svg" fill="#fff" fill-rule="evenodd" width="182" height="55" viewBox="0 0 182 55"><path d="M97.3 32.3v-9.9h26.4a5 5 0 0 1 4.9 4.9V39c0 6-4.9 11-11 11h-17a22.6 22.6 0 1 1 .1-45.2H127v10.4h-26.2c-6.7 0-12.3 5.4-12.3 12.2 0 6.7 5.5 12.2 12.3 12.2h17.5v-7.3h-21zM74.5 4.7V50H69a4.8 4.8 0 0 1-4.8-4.8V4.7h10.3zm102.4 0a5 5 0 0 1 4.9 4.9v30a11 11 0 0 1-11 10.9h-.2c-4 0-7.4-2-9.3-5.2L144 14.8a.7.7 0 0 0-.6-.3c-.3 0-.5.1-.6.4a.6.6 0 0 0-.1.3V50h-5.5a4.8 4.8 0 0 1-4.8-4.8v-30a11 11 0 0 1 11-11h.1c4 0 7.5 2.2 9.4 5.4L170.2 40c.2.3.4.4.6.4a.7.7 0 0 0 .6-.4.6.6 0 0 0 .1-.3V4.8h5.5zM12.5 17.6c-2.7.3-5.1.7-7.3 1.2A24.2 24.2 0 0 1 18.9 5c-.5 2.2-.9 4.6-1.2 7.3a18 18 0 0 0-5.2 5.2zm25-5.2c-.3-2.7-.7-5.1-1.2-7.3a24.2 24.2 0 0 1 13.8 13.7 65 65 0 0 0-7.4-1.2 18 18 0 0 0-5.1-5.2zM17.8 42.5c.3 2.7.7 5.1 1.2 7.3A24.2 24.2 0 0 1 5.2 36.1c2.1.5 4.6.9 7.3 1.2a18.2 18.2 0 0 0 5.2 5.2zm25.1-5.2c2.7-.3 5.1-.7 7.3-1.2a24.2 24.2 0 0 1-13.8 13.7c.5-2.1 1-4.6 1.3-7.2v-.1a18.2 18.2 0 0 0 5.1-5.2h.1zM55 23v9a46.8 46.8 0 0 1-14 3l-6.8-7.5L41 20a7.4 7.4 0 0 1 1.2.1c2.2.2 8.6 1 12.8 3zm-40.7-3 6.7 7.5-6.7 7.6a7.8 7.8 0 0 1-1.4-.2 47 47 0 0 1-12.7-3V23c4.3-2 10.8-2.7 12.9-3a7.5 7.5 0 0 1 1.2-.1zm5.8 20.8 7.5-6.7 7.6 6.7a7.7 7.7 0 0 1-.2 1.5c-.2 2-1 8.4-3 12.6h-8.8a46 46 0 0 1-3-12.8 7.4 7.4 0 0 1-.1-1.3zm3-40.6h9c2 4.2 2.7 10.4 3 12.6a7.7 7.7 0 0 1 0 1.4l-7.5 6.7-7.5-6.7a7.4 7.4 0 0 1 .1-1.2c.2-2.2 1-8.6 3-12.8z"/></svg></div><h1>Error 403 - Unavailable (IFW-U01)</h1><p>Sorry but something about this request looked a bit suspicious, and we block suspicious stuff.</p> <a class="cta s" href="http://www.ign.com">Back to IGN</a> <a class="cta aq" href="#" onclick="qg()">Another Quote</a > </section> <section class="r" id="qb"><h2>QUOTE</h2><h3>&mdash;AUTHOR</h3> </section></div></body></html>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,79 @@
<!doctype html>
<!--[if lt IE 7]> <html lang="en-gb" class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en-gb" class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en-gb" class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-gb"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>404 Not Found - The Let's Play Archive</title>
<meta name="keywords" content="let's play,videogame,game,playthrough" />
<meta name="description" content="The Let's Play Archive is a collection of entertaining video game playthroughs of all genres and styles" />
<meta name="author" content="The Let's Play Archive" />
<meta name="viewport" content="width=960" />
<link rel="stylesheet" href="/style/2012/archive-2.0.4.css" media="screen" />
<script type="text/javascript">
(function(html){html.className = "live";})(document.documentElement||document.body);
</script>
<script src="/script/jquery-1.7.1.min.js"></script>
<script src="/script/2012/readinghistory-1.0.1.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(displayCurrentHistory);
/* ]]> */
</script>
</head>
<body> <div class="header">
<a class="index-link" href="/">
&nbsp;<span class="logo"><i title="The Let's Play Archive">&nbsp;</i></span>
</a>
</div>
<h1 class="indexhead">The Let's Play Archive</h1> <ul id="menu">
<li><a href="/history">About</a></li>
<li><a href="/faq">FAQ</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
<div class="error">
<div class="cblock letter official-letter" id="excuses">
<h3><span class="date">Five whole seconds ago, created manually by a real person</span>Dearest archival hobbyist,</h3>
<p>
We're terribly sorry that you weren't able to find the page or LP that you were looking for! Here at the LP Archive, we're obviously extremely
concerned whenever Page #404 of the latest and hottest LP accidentally gets thrown away and forgotten about. We're not entirely sure what might
have happened, so it's probably one of the following things:
</p>
<ul>
<li>That page was never there in the first place, and you've made it all up in your head!</li>
<li>The link that you clicked had deliberately been sabotaged?</li>
<li>You didn't want to see that page anyway! I've hidden it for your own good.</li>
<li>Alright, in honesty this is probably our fault...</li>
</ul>
<p>
If you think this missing page is something we ought to look at &mdash; if it's a missing update from an LP, for example &mdash; please don't hesitate to
<a href="/contact">contact us!</a> We'll try to get it sorted out as soon as we can.
</p>
<h4>- The Archive</h4>
</div>
<h1>Sorry, but we can't seem to find that page!</h1>
<h2>It may have moved or been deleted, or the original link could have been incorrect.</h2>
<a class="direction" href="javascript:history.go(-1);">Go back</a>
<a class="direction" href="/contact">Tell us about this error</a>
<a class="direction" href="/">Return to the archive index</a>
</div>
</body>
</html>

View File

@@ -0,0 +1,79 @@
<!doctype html>
<!--[if lt IE 7]> <html lang="en-gb" class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en-gb" class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en-gb" class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-gb"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>404 Not Found - The Let's Play Archive</title>
<meta name="keywords" content="let's play,videogame,game,playthrough" />
<meta name="description" content="The Let's Play Archive is a collection of entertaining video game playthroughs of all genres and styles" />
<meta name="author" content="The Let's Play Archive" />
<meta name="viewport" content="width=960" />
<link rel="stylesheet" href="/style/2012/archive-2.0.4.css" media="screen" />
<script type="text/javascript">
(function(html){html.className = "live";})(document.documentElement||document.body);
</script>
<script src="/script/jquery-1.7.1.min.js"></script>
<script src="/script/2012/readinghistory-1.0.1.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(displayCurrentHistory);
/* ]]> */
</script>
</head>
<body> <div class="header">
<a class="index-link" href="/">
&nbsp;<span class="logo"><i title="The Let's Play Archive">&nbsp;</i></span>
</a>
</div>
<h1 class="indexhead">The Let's Play Archive</h1> <ul id="menu">
<li><a href="/history">About</a></li>
<li><a href="/faq">FAQ</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
<div class="error">
<div class="cblock letter official-letter" id="excuses">
<h3><span class="date">Just a second ago, created manually by a real person</span>Dearest archival hobbyist,</h3>
<p>
We're terribly sorry that you weren't able to find the page or LP that you were looking for! Here at the LP Archive, we're obviously extremely
concerned whenever Page #404 of the latest and hottest LP accidentally gets thrown away and forgotten about. We're not entirely sure what might
have happened, so it's probably one of the following things:
</p>
<ul>
<li>That page was never there in the first place, and you've made it all up in your head!</li>
<li>The link that you clicked had deliberately been sabotaged?</li>
<li>You didn't want to see that page anyway! I've hidden it for your own good.</li>
<li>Alright, in honesty this is probably our fault...</li>
</ul>
<p>
If you think this missing page is something we ought to look at &mdash; if it's a missing update from an LP, for example &mdash; please don't hesitate to
<a href="/contact">contact us!</a> We'll try to get it sorted out as soon as we can.
</p>
<h4>- The Archive</h4>
</div>
<h1>Sorry, but we can't seem to find that page!</h1>
<h2>It may have moved or been deleted, or the original link could have been incorrect.</h2>
<a class="direction" href="javascript:history.go(-1);">Go back</a>
<a class="direction" href="/contact">Tell us about this error</a>
<a class="direction" href="/">Return to the archive index</a>
</div>
</body>
</html>

View File

@@ -0,0 +1,223 @@
# The Secret of Monkey Island - Complete Walkthrough
## Part 1: Melee Island - Becoming a Pirate
### Scumm Bar
- Talk to the bartender about joining pirates
- Get the key from the bartender (after agreeing to complete trials)
- Talk to the three pirates in the corner
- Pick up the tankard from the table
### Melee Town
- Visit the weapon shop - talk to the shopkeeper
- Visit the map vendor - learn about the four maps
- Visit the lookout - can't access yet
### Trial 1: Sword Fighting
- Go to the beach south of town
- Fight the swordmaster (lose initially)
- Learn insults and comebacks by fighting pirates around the island
- Return to challenge the swordmaster again
**Insults and Comebacks:**
- "You fight like a dairy farmer!" / "How appropriate. You fight like a cow."
- "This is the END for you, you gutter trash!" / "So you're related to one, are you?"
- "People fall at my feet when they see me coming!" / "Even BEFORE they smell your breath?"
- "I once owned a dog that was smarter than you." / "You must have bought him off the boat dock."
- "You're so ugly that when you cry, the tears run down the back of your head." / "Must be the wind I smell then."
- "There's no hope for you, boy!" / "I had a dream about you once. Now I know it was just a nightmare."
- "Your mother was a hamster and your father smelt of elderberries!" / "And your mother was a rhubarb pie, so back off, laddie!"
### Trial 2: Thievery
- Go to the graveyard
- Use the shovel near the open grave to dig
- Get the shovelful of dirt
- Go to the carpenter's shop (east of town)
- Give the dirt to the dog
- Take the rubber chicken from the carpenter's shop
### Trial 3: Treasure Hunting (The Map)
- Go to the lookout point (requires key from Scumm Bar)
- Use the spyglass to see Shipwreck Island
- Return to town
## Part 2: Gathering the Map Pieces
### Map Piece 1 - The Underworld (Phatt Island)
- Buy map piece from the map vendor
- Learn it's on Phatt Island
### Map Piece 2 - The Forest (Booty Island)
- Buy map piece from the map vendor
- Learn it's on Booty Island
### Map Piece 3 - The Lagoon (Scabb Island)
- Buy map piece from the map vendor
- Learn it's on Scabb Island
### Map Piece 4 - The Wharf (Melee Island)
- Buy map piece from the map vendor
- This one is local to Melee Island
### Getting to the Islands
- Go to the dockmaster's office
- Show the four map pieces to the dockmaster
- Get the ship and crew
## Part 3: Visiting the Three Islands
### Scabb Island
- Explore the town
- Visit the jail - Guybrush gets thrown in if caught without permission
- Find the map piece in the governor's mansion
- The mansion is guarded - need to create a diversion
**Getting the Scabb Map Piece:**
- Get the rubber chicken
- Get the can of oil from the kitchen
- Use oil on the chandelier
- Use rubber chicken on chandelier pulley
- Chandelier falls, creating a diversion
- Sneak upstairs and get the map piece from the safe
### Booty Island
- Explore the swamp
- Meet the cannibals
- Get captured by cannibals
- Escape from the cannibal pot
**Escaping Cannibals:**
- Use the rubber chicken with pulley (if you have it)
- Or talk your way out by becoming their leader
- Get the map piece from the cannibal village
### Phatt Island
- Explore the mansion
- Meet Governor Phatt
- The map piece is in the mansion
**Getting the Phatt Map Piece:**
- Explore the mansion thoroughly
- Find the map piece hidden in the library or study
- May need to distract the governor
## Part 4: LeChuck's Fortress
### Finding the Fortress
- Use all four map pieces together
- The complete map reveals LeChuck's Fortress location
- Sail to the fortress
### Infiltrating the Fortress
- Navigate through the fortress grounds
- Avoid or defeat LeChuck's minions
- Find the way into the fortress interior
### Confronting LeChuck
- LeChuck has captured Elaine
- Need root beer to defeat LeChuck (he's a ghost)
- Mix the root beer with other ingredients if needed
**Defeating LeChuck:**
- Get the root beer from the kitchen or storeroom
- Confront LeChuck in the chapel
- Use the root beer on LeChuck
- LeChuck explodes, Elaine is saved
## Part 5: Escape and Resolution
### Escaping the Fortress
- The fortress begins to collapse/destroy itself
- Navigate back through the fortress
- Return to the ship with Elaine
### Return to Melee Island
- Sail back to Melee Island
- Guybrush becomes a pirate
- Celebration at the Scumm Bar
## Key Items and Their Uses
### Rubber Chicken
- Found: Carpentry shop on Melee Island
- Uses:
- Distract the dog in the graveyard
- Use as a pulley with the chandelier on Scabb Island
- Various comedic applications
### Shovelful of Dirt
- Found: Graveyard on Melee Island
- Uses:
- Give to the carpenter's dog
- May have other uses
### Root Beer
- Found: LeChuck's Fortress kitchen
- Uses:
- Defeat LeChuck (ghosts hate root beer)
### Map Pieces (4 total)
- Found: Various islands
- Uses:
- Combine to reveal LeChuck's Fortress location
### Spyglass
- Found: Lookout point or purchased
- Uses:
- View distant islands
- Spot Shipwreck Island
## NPCs and Their Roles
### Elaine Marley
- Governor of Melee Island
- Kidnapped by LeChuck
- Goal: Rescue her
### LeChuck
- Ghost pirate antagonist
- Wants to marry Elaine against her will
- Final boss
### Stan
- Used-car salesman (appears in various locations)
- Provides comic relief
- May offer useful items
### The Three Pirates
- Found in Scumm Bar
- Teach sword fighting insults
- Part of the initiation
### Dockmaster
- Provides ship and crew
- Needs to see all four map pieces
## Solution Chain Summary
1. **Become a Pirate**
- Complete three trials: sword fighting, thievery, treasure hunting
- Get the key from the Scumm Bar bartender
2. **Gather Map Pieces**
- Purchase information about four map pieces
- Visit Scabb Island, Booty Island, Phatt Island
- Collect all four pieces
3. **Assemble the Crew**
- Show map pieces to the dockmaster
- Get ship and crew
4. **Find LeChuck's Fortress**
- Combine map pieces
- Navigate to the fortress
5. **Defeat LeChuck**
- Infiltrate the fortress
- Find root beer
- Use root beer on LeChuck
6. **Rescue Elaine**
- Free Elaine from the chapel
- Escape the collapsing fortress
- Return to Melee Island as a pirate

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff