Feature/11167: Randomizer mode for Adventure - #11525
Open
BramTeurlings wants to merge 4 commits into
Open
Conversation
Todo: Test the game fully Todo: Fix the randomized shops to always have the same stock in the same order (make the stock stored as an ArrayList instead of a Set)
tool4ever
reviewed
Aug 5, 2026
tool4ever
reviewed
Aug 5, 2026
| return this.rules.getAllFaces().stream().map(this::getVariantForFace).collect(Collectors.toList()); | ||
| } | ||
|
|
||
| public boolean isLocked() { |
Contributor
There was a problem hiding this comment.
game mode data can't pollute low-level engine objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Split off from: Archipelago PR
Builds further on the groundwork laid in this PR
Randomizer Mode for Adventure
The randomizer mode changes up the gameplay loop of the base adventure mode by restricting the user more at the start of a playthrough and giving them randomized rewards as they play. They will need to be more creative in their usage of the cards and items they unlock as many of the established strategies will likely be unusable until much later in the playthrough.
This PR attempts the bridge the gap between the Archipelago PR, while this is still a fairly big diff, it was the cleanest split I could make whilst still being completely independent from the aforementioned PR. Some names might still reference "Archipelago", I decided not to change these as would have to rename them back again anyway once we start merging the Archipelago code.
An overview of features for this new randomizer mode:
NewGameScenethat lets the player enable the Randomizer mode.