Skip to content

Commit

Permalink
correct suitless logic for quantum moon
Browse files Browse the repository at this point in the history
  • Loading branch information
Ixrec committed May 19, 2024
1 parent 993dcad commit b72e3c5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion worlds/outer_wilds/shared_static_logic/connections.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@
{ "from": "Space", "to": "White Hole Station", "requires": [ { "item": "Spacesuit" } ] },
{ "from": "Space", "to": "Giant's Deep", "requires": [] },
// the only astral body you can't land on without an item
{ "from": "Space", "to": "Quantum Moon", "requires": [ { "item": "Imaging Rule" } ] },
{ "from": "Space", "to": "Quantum Moon", "requires": [
{ "item": "Imaging Rule" },
{ "anyOf": [
{ "item": "Spacesuit" }, // in this case "Spacesuit" implies the Scout Launcher and its Photo Mode
{ "item": "Scout" } // without Photo Mode, the only way to take a photo is launching a Scout from the ship
] }
] },

{ "from": "Quantum Moon", "to": "Quantum Shrine", "requires": [ { "item": "Shrine Door Codes" } ] },
{ "from": "Quantum Shrine", "to": "Sixth Location", "requires": [ { "item": "Entanglement Rule" } ] },
Expand Down

0 comments on commit b72e3c5

Please sign in to comment.