Add ow_layout and ow_parallel settings
This commit is contained in:
@@ -173,6 +173,22 @@
|
||||
"full"
|
||||
]
|
||||
},
|
||||
"ow_layout": {
|
||||
"choices": [
|
||||
"vanilla",
|
||||
"grid",
|
||||
"wild"
|
||||
]
|
||||
},
|
||||
"ow_parallel": {
|
||||
"action": "store_true",
|
||||
"help": "suppress",
|
||||
"type": "bool"
|
||||
},
|
||||
"ow_unparallel": {
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
},
|
||||
"ow_terrain": {
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
|
||||
@@ -234,14 +234,18 @@
|
||||
"the entrances vanilla."
|
||||
],
|
||||
"ow_shuffle": [
|
||||
"Deprecated, use ow_layout and ow_unparallel instead."
|
||||
],
|
||||
"ow_layout": [
|
||||
"This shuffles the layout of the overworld.",
|
||||
"Vanilla: All overworld transitions are connected the same",
|
||||
" way they were in the base game.",
|
||||
"Parallel: Overworld transitions are shuffled, but both worlds",
|
||||
" will have the same pattern/shape.",
|
||||
"Full: Overworld transitions are shuffled, but both worlds",
|
||||
" will have an independent map shape."
|
||||
"Grid: OW Screens are arranged on 8x8 grids and OW Transitions",
|
||||
" work according to this arrangement.",
|
||||
"Wild: OW Transitions are shuffled with no respect to geometric coherence."
|
||||
],
|
||||
"ow_unparallel": [
|
||||
"With OW Layout Shuffle, this no longer forces both worlds to have a matching layout." ],
|
||||
"ow_terrain": [
|
||||
"With OW Layout Shuffle, this allows land and water edges to be connected." ],
|
||||
"ow_crossed": [
|
||||
|
||||
@@ -157,10 +157,12 @@
|
||||
"randomizer.enemizer.enemylogic.allow_all": "Allow special enemies anywhere",
|
||||
|
||||
|
||||
"randomizer.overworld.overworldshuffle": "Layout Shuffle",
|
||||
"randomizer.overworld.overworldshuffle.vanilla": "Vanilla",
|
||||
"randomizer.overworld.overworldshuffle.parallel": "Parallel",
|
||||
"randomizer.overworld.overworldshuffle.full": "Full",
|
||||
"randomizer.overworld.layout": "Layout Shuffle",
|
||||
"randomizer.overworld.layout.vanilla": "Vanilla",
|
||||
"randomizer.overworld.layout.grid": "Grid",
|
||||
"randomizer.overworld.layout.wild": "Wild",
|
||||
|
||||
"randomizer.overworld.parallel": "Keep Worlds Parallel",
|
||||
|
||||
"randomizer.overworld.terrain": "Free Terrain",
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"topOverworldFrame": {},
|
||||
"leftOverworldFrame": {
|
||||
"overworldshuffle": {
|
||||
"layout": {
|
||||
"type": "selectbox",
|
||||
"default": "vanilla",
|
||||
"options": [
|
||||
"vanilla",
|
||||
"parallel",
|
||||
"full"
|
||||
"grid",
|
||||
"wild"
|
||||
]
|
||||
},
|
||||
"crossed": {
|
||||
@@ -18,7 +18,10 @@
|
||||
"grouped",
|
||||
"polar",
|
||||
"unrestricted"
|
||||
]
|
||||
],
|
||||
"config": {
|
||||
"pady": [16,0]
|
||||
}
|
||||
},
|
||||
"mixed": {
|
||||
"type": "checkbox",
|
||||
@@ -48,19 +51,17 @@
|
||||
}
|
||||
},
|
||||
"rightOverworldFrame": {
|
||||
"parallel": {
|
||||
"type": "checkbox",
|
||||
"default": true
|
||||
},
|
||||
"terrain": {
|
||||
"type": "checkbox",
|
||||
"default": false,
|
||||
"config": {
|
||||
"pady": [3,0]
|
||||
}
|
||||
"default": false
|
||||
},
|
||||
"keepsimilar": {
|
||||
"type": "checkbox",
|
||||
"default": false,
|
||||
"config": {
|
||||
"pady": [6,0]
|
||||
}
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user