diff --git a/README.md b/README.md index 5eb15aea..bfd37cb6 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,8 @@ OW Transitions are shuffled within each world separately. This allows OW connections to be shuffled cross-world. +'None (Allowed)' allows entrance connectors and whirlpools to result in cross-world behavior, but edge transitions will not. This isn't a recommended option. + Polar and Grouped both are guaranteed to result in two separated planes of tiles. To navigate to the other plane, you have the following methods: 1) Normal portals 2) Mirroring on DW tiles 3) Fluting to a LW tile that was previously unreachable Limited and Chaos are not bound to follow a two-plane framework. This means that it could be possible to travel on foot to every tile without entering a normal portal. diff --git a/resources/app/cli/args.json b/resources/app/cli/args.json index 365e40e6..8e10afde 100644 --- a/resources/app/cli/args.json +++ b/resources/app/cli/args.json @@ -119,6 +119,7 @@ "ow_crossed": { "choices": [ "none", + "allowed", "polar", "grouped", "limited", diff --git a/resources/app/cli/lang/en.json b/resources/app/cli/lang/en.json index 59d9a9f3..2f5d962d 100644 --- a/resources/app/cli/lang/en.json +++ b/resources/app/cli/lang/en.json @@ -208,6 +208,7 @@ "ow_crossed": [ "This allows cross-world connections to occur on the overworld.", "None: No transitions are cross-world connections.", + "Allowed: Only entrances/whirlpools can end up cross-world.", "Polar: Only used when Mixed is enabled. This retains original", " connections even when overworld tiles are swapped.", "Limited: Exactly nine transitions are randomly chosen as", diff --git a/resources/app/gui/lang/en.json b/resources/app/gui/lang/en.json index 2e69ba8e..a057e5ab 100644 --- a/resources/app/gui/lang/en.json +++ b/resources/app/gui/lang/en.json @@ -119,6 +119,7 @@ "randomizer.overworld.crossed": "Crossed", "randomizer.overworld.crossed.none": "None", + "randomizer.overworld.crossed.allowed": "None (Allowed)", "randomizer.overworld.crossed.polar": "Polar", "randomizer.overworld.crossed.grouped": "Grouped", "randomizer.overworld.crossed.limited": "Limited", diff --git a/resources/app/gui/randomize/overworld/widgets.json b/resources/app/gui/randomize/overworld/widgets.json index f6751bc2..43dc9394 100644 --- a/resources/app/gui/randomize/overworld/widgets.json +++ b/resources/app/gui/randomize/overworld/widgets.json @@ -14,6 +14,7 @@ "default": "vanilla", "options": [ "none", + "allowed", "polar", "grouped", "limited",