Skip to content

Commit

Permalink
try randomizing only 2 connections
Browse files Browse the repository at this point in the history
  • Loading branch information
Ixrec committed May 20, 2024
1 parent b6b6df8 commit 4d1a116
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion worlds/outer_wilds/LocationsAndRegions.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ def create_regions(world: "OuterWildsWorld") -> None:
e.randomization_type = EntranceType.TWO_WAY
disconnect_entrance_for_randomization(e)

randomize_entrances(world, True, lambda _: [])
state = randomize_entrances(world, True, lambda _: [])

x = 2 # breakpoint goes here
15 changes: 1 addition & 14 deletions worlds/outer_wilds/shared_static_logic/connections.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@

// you can simply fall into the black hole inside BH, which requires the suit to get into WHS
{ "from": "Brittle Hollow", "to": "White Hole Station", "requires": [ { "item": "Spacesuit" } ] },
// or use the warp pad to go directly inside
{ "from": "Brittle Hollow", "to": "White Hole Station", "requires": [ { "item": "Nomai Warp Codes" } ] },

// you can simply jump off/out and fall to the rest of the Hanging City
{ "from": "Hanging City Ceiling", "to": "Brittle Hollow", "requires": [ { "item": "Spacesuit" } ] },
Expand Down Expand Up @@ -104,17 +102,6 @@
] },

// these will become dynamic after we implement warp pad randomization
{ "from": "Hourglass Twins", "to": "Sun Station", "requires": [ { "item": "Nomai Warp Codes" }, { "item": "Spacesuit" } ] },
{ "from": "Hourglass Twins", "to": "Ash Twin Interior", "requires": [ { "item": "Nomai Warp Codes" } ] },
{ "from": "Hourglass Twins", "to": "Timber Hearth", "requires": [ { "item": "Nomai Warp Codes" } ] },
{ "from": "Hourglass Twins", "to": "Hanging City Ceiling", "requires": [ { "item": "Nomai Warp Codes" } ] },
{ "from": "Hourglass Twins", "to": "Giant's Deep", "requires": [ { "item": "Nomai Warp Codes" } ] },

{ "from": "Sun Station", "to": "Hourglass Twins", "requires": [ { "item": "Nomai Warp Codes" }, { "item": "Spacesuit" } ] },
{ "from": "Ash Twin Interior", "to": "Hourglass Twins", "requires": [ { "item": "Nomai Warp Codes" } ] },
{ "from": "Timber Hearth", "to": "Hourglass Twins", "requires": [ { "item": "Nomai Warp Codes" } ] },
{ "from": "Hanging City Ceiling", "to": "Hourglass Twins", "requires": [ { "item": "Nomai Warp Codes" } ] },
{ "from": "Giant's Deep", "to": "Hourglass Twins", "requires": [ { "item": "Nomai Warp Codes" } ] },

{ "from": "White Hole Station", "to": "Brittle Hollow", "requires": [ { "item": "Nomai Warp Codes" } ] }
{ "from": "Hourglass Twins", "to": "Timber Hearth", "requires": [ { "item": "Nomai Warp Codes" } ] }
]

0 comments on commit 4d1a116

Please sign in to comment.