Implemented District/Nearby Dungeon Item Shuffle

This commit is contained in:
codemann8
2024-12-24 11:49:24 -06:00
parent e3e227f3d5
commit 1247716e92
21 changed files with 295 additions and 148 deletions

View File

@@ -369,12 +369,18 @@
"type": "bool"
},
"mapshuffle": {
"action": "store_true",
"type": "bool"
"choices": [
"none",
"district",
"wild"
]
},
"compassshuffle": {
"action": "store_true",
"type": "bool"
"choices": [
"none",
"district",
"wild"
]
},
"keyshuffle": {
"choices": [
@@ -384,13 +390,17 @@
]
},
"bigkeyshuffle": {
"action": "store_true",
"type": "bool"
"choices": [
"none",
"district",
"wild"
]
},
"prizeshuffle": {
"choices": [
"none",
"dungeon",
"district",
"wild"
]
},

View File

@@ -53,15 +53,26 @@
"randomizer.dungeon.keysanity": "Shuffle: ",
"randomizer.dungeon.mapshuffle": "Maps",
"randomizer.dungeon.mapshuffle.none": "In Dungeon",
"randomizer.dungeon.mapshuffle.district": "Nearby",
"randomizer.dungeon.mapshuffle.wild": "Randomized",
"randomizer.dungeon.compassshuffle": "Compasses",
"randomizer.dungeon.compassshuffle.none": "In Dungeon",
"randomizer.dungeon.compassshuffle.district": "Nearby",
"randomizer.dungeon.compassshuffle.wild": "Randomized",
"randomizer.dungeon.smallkeyshuffle": "Small Keys",
"randomizer.dungeon.smallkeyshuffle.none": "In Dungeon",
"randomizer.dungeon.smallkeyshuffle.district": "Nearby",
"randomizer.dungeon.smallkeyshuffle.wild": "Randomized",
"randomizer.dungeon.smallkeyshuffle.universal": "Universal",
"randomizer.dungeon.bigkeyshuffle": "Big Keys",
"randomizer.dungeon.bigkeyshuffle.none": "In Dungeon",
"randomizer.dungeon.bigkeyshuffle.district": "Nearby",
"randomizer.dungeon.bigkeyshuffle.wild": "Randomized",
"randomizer.dungeon.prizeshuffle": "Prizes",
"randomizer.dungeon.prizeshuffle.none": "On Boss",
"randomizer.dungeon.prizeshuffle.dungeon": "In Dungeon",
"randomizer.dungeon.prizeshuffle.district": "Nearby",
"randomizer.dungeon.prizeshuffle.wild": "Randomized",
"randomizer.dungeon.decoupledoors": "Decouple Doors",
"randomizer.dungeon.door_self_loops": "Allow Self-Looping Spiral Stairs",

View File

@@ -1,9 +1,32 @@
{
"keysanity": {
"mapshuffle": {
"type": "selectbox",
"options": [
"none",
"district",
"wild"
],
"config": {
"padx": [20,0]
}
},
"compassshuffle": {
"type": "selectbox",
"options": [
"none",
"district",
"wild"
],
"config": {
"padx": [20,0]
}
},
"smallkeyshuffle": {
"type": "selectbox",
"options": [
"none",
"district",
"wild",
"universal"
],
@@ -11,8 +34,16 @@
"padx": [20,0]
}
},
"mapshuffle": { "type": "checkbox" },
"compassshuffle": { "type": "checkbox" },
"bigkeyshuffle": { "type": "checkbox" }
"bigkeyshuffle": {
"type": "selectbox",
"options": [
"none",
"district",
"wild"
],
"config": {
"padx": [20,0]
}
}
}
}

View File

@@ -6,6 +6,7 @@
"options": [
"none",
"dungeon",
"district",
"wild"
],
"config": {