Added Overworld Shuffle parameter to CLI and Gui

This commit is contained in:
codemann8
2021-02-10 22:11:50 -06:00
parent 965b886c2d
commit b11054e6bf
12 changed files with 90 additions and 3 deletions

View File

@@ -104,6 +104,14 @@
"vt26"
]
},
"ow_shuffle": {
"choices": [
"vanilla",
"simple",
"full",
"crossed"
]
},
"shuffle": {
"choices": [
"vanilla",

View File

@@ -6,6 +6,7 @@
"version": "Version",
"seed": "Seed",
"player": "Player",
"shuffling.overworld": "Shuffling overworld",
"shuffling.world": "Shuffling the World about",
"shuffling.dungeons": "Shuffling dungeons",
"shuffling.pots": "Shuffling pots",
@@ -192,6 +193,16 @@
"The dungeon variants only mix up dungeons and keep the rest of",
"the overworld vanilla."
],
"ow_shuffle": [
"Select Overworld Shuffling Algorithm. (default: %(default)s)",
"Vanilla: All overworld transitions are connected the same",
" way they were in the base game.",
"Simple: Overworld retains the same vanilla shape, but some overworld",
" screens will be swapped with their opposite world version.",
"Full: Overworld screen transitions will lead to other",
" overworld screens from the same world.",
"Crossed: Overworld screen transitions can lead to any other overworld screen."
],
"door_shuffle": [
"Select Door Shuffling Algorithm. (default: %(default)s)",
"Basic: Doors are mixed within a single dungeon.",

View File

@@ -109,6 +109,12 @@
"randomizer.enemizer.enemizercli.online": "(get online)",
"randomizer.overworld.overworldshuffle": "Overworld Shuffle",
"randomizer.overworld.overworldshuffle.vanilla": "Vanilla",
"randomizer.overworld.overworldshuffle.simple": "Simple",
"randomizer.overworld.overworldshuffle.full": "Full",
"randomizer.overworld.overworldshuffle.crossed": "Crossed",
"randomizer.entrance.openpyramid": "Pre-open Pyramid Hole",
"randomizer.entrance.shuffleganon": "Include Ganon's Tower and Pyramid Hole in shuffle pool",

View File

@@ -0,0 +1,12 @@
{
"widgets": {
"overworldshuffle": {
"type": "selectbox",
"default": "vanilla",
"options": [
"vanilla",
"full"
]
}
}
}