Expanded and restructured OW Shuffle to include more Crossed options
This commit is contained in:
@@ -117,8 +117,13 @@
|
||||
]
|
||||
},
|
||||
"ow_crossed": {
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
"choices": [
|
||||
"none",
|
||||
"polar",
|
||||
"grouped",
|
||||
"limited",
|
||||
"chaos"
|
||||
]
|
||||
},
|
||||
"ow_keepsimilar": {
|
||||
"action": "store_true",
|
||||
|
||||
@@ -202,7 +202,15 @@
|
||||
" will have an independent map shape."
|
||||
],
|
||||
"ow_crossed": [
|
||||
"This allows cross-world connections to occur on the overworld." ],
|
||||
"This allows cross-world connections to occur on the overworld.",
|
||||
"None: No transitions are cross-world connections.",
|
||||
"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",
|
||||
" cross-world connections (to emulate the nine portals).",
|
||||
"Chaos: Every transition has a 50/50 chance to become a",
|
||||
" crossworld connection."
|
||||
],
|
||||
"ow_keepsimilar": [
|
||||
"This keeps similar edge transitions together. ie. the two west edges on",
|
||||
"Potion Shop will be paired with another similar pair." ],
|
||||
|
||||
@@ -118,6 +118,11 @@
|
||||
"randomizer.overworld.overworldshuffle.full": "Full",
|
||||
|
||||
"randomizer.overworld.crossed": "Crossed",
|
||||
"randomizer.overworld.crossed.none": "None",
|
||||
"randomizer.overworld.crossed.polar": "Polar",
|
||||
"randomizer.overworld.crossed.grouped": "Grouped",
|
||||
"randomizer.overworld.crossed.limited": "Limited",
|
||||
"randomizer.overworld.crossed.chaos": "Chaos",
|
||||
"randomizer.overworld.keepsimilar": "Keep Similar Edges Together",
|
||||
"randomizer.overworld.mixed": "Mixed",
|
||||
|
||||
|
||||
@@ -21,8 +21,15 @@
|
||||
},
|
||||
"rightOverworldFrame": {
|
||||
"crossed": {
|
||||
"type": "checkbox",
|
||||
"default": false
|
||||
"type": "selectbox",
|
||||
"default": "vanilla",
|
||||
"options": [
|
||||
"none",
|
||||
"polar",
|
||||
"grouped",
|
||||
"limited",
|
||||
"chaos"
|
||||
]
|
||||
},
|
||||
"mixed": {
|
||||
"type": "checkbox",
|
||||
|
||||
Reference in New Issue
Block a user