Adding new GUI/CLI option for Parallel Worlds

This commit is contained in:
codemann8
2021-05-04 06:21:06 -05:00
parent 29f6e95e1d
commit 26e3aee96b
10 changed files with 32 additions and 2 deletions

View File

@@ -120,6 +120,10 @@
"action": "store_true",
"type": "bool"
},
"ow_parallel": {
"action": "store_true",
"type": "bool"
},
"shuffle": {
"choices": [
"vanilla",

View File

@@ -203,7 +203,10 @@
" overworld screens from the same world.",
"Crossed: Overworld screen transitions can lead to any other overworld screen."
],
"ow_keepsimilar": [ "This keeps similar edge transitions together. ie. the two west edges on Potion Shop will be paired with another similar pair." ],
"ow_keepsimilar": [
"This keeps similar edge transitions together. ie. the two west edges on",
"Potion Shop will be paired with another similar pair." ],
"ow_parallel": [ "This ensures the layouts of both worlds are the same shape." ],
"door_shuffle": [
"Select Door Shuffling Algorithm. (default: %(default)s)",
"Basic: Doors are mixed within a single dungeon.",

View File

@@ -116,6 +116,7 @@
"randomizer.overworld.overworldshuffle.crossed": "Crossed",
"randomizer.overworld.keepsimilar": "Keep Similar Edges Together",
"randomizer.overworld.parallelworlds": "Parallel Worlds",
"randomizer.entrance.openpyramid": "Pre-open Pyramid Hole",
"randomizer.entrance.shuffleganon": "Include Ganon's Tower and Pyramid Hole in shuffle pool",

View File

@@ -11,6 +11,10 @@
"keepsimilar": {
"type": "checkbox",
"default": true
},
"parallelworlds": {
"type": "checkbox",
"default": true
}
}
}