diff --git a/worlds/blasphemous/Rules.py b/worlds/blasphemous/Rules.py index 01d964354209..ee99ecde6357 100644 --- a/worlds/blasphemous/Rules.py +++ b/worlds/blasphemous/Rules.py @@ -143,7 +143,7 @@ def _blasphemous_cherub_21(self, player): return self.has_any({"Debla of the Lights", "Taranto to my Sister", "Cante Jondo of the Three Sisters", \ "Verdiales of the Forsaken Hamlet", "Cloistered Ruby"}, player) or \ (self.has("Tirana of the Celestial Bastion", player) and \ - self.has("Fervour Upgrade"), player, 2) + self.has("Fervour Upgrade", player, 2)) def _blasphemous_cherub_22_23_31_32(self, player): return self.has_any({"Debla of the Lights", "Taranto to my Sister", "Cloistered Ruby"}, player) diff --git a/worlds/blasphemous/__init__.py b/worlds/blasphemous/__init__.py index a7a86826c372..ac6d9b703868 100644 --- a/worlds/blasphemous/__init__.py +++ b/worlds/blasphemous/__init__.py @@ -1,4 +1,4 @@ -from typing import Dict, Set, Any +from typing import Dict, Set, List, Any from collections import Counter from BaseClasses import Region, Entrance, Location, Item, Tutorial, ItemClassification from ..AutoWorld import World, WebWorld @@ -61,7 +61,7 @@ def get_filler_item_name(self) -> str: return self.multiworld.random.choice(tears_set) - def generate_basic(self): + def create_items(self): placed_items = [] placed_items.extend(Vanilla.unrandomized_dict.values()) diff --git a/worlds/blasphemous/docs/setup_en.md b/worlds/blasphemous/docs/setup_en.md index 35b8670f6d84..999765bb69bb 100644 --- a/worlds/blasphemous/docs/setup_en.md +++ b/worlds/blasphemous/docs/setup_en.md @@ -6,6 +6,7 @@ - Blasphemous Modding API from: [GitHub](https://github.com/BrandenEK/Blasphemous-Modding-API) - Blasphemous Randomizer from: [GitHub](https://github.com/BrandenEK/Blasphemous-Randomizer) - Blasphemous Multiworld from: [GitHub](https://github.com/BrandenEK/Blasphemous-Multiworld) +- (*Optional*) PopTracker Pack from: [GitHub](https://github.com/sassyvania/Blasphemous-Randomizer-Maptracker) ## Instructions (Windows) @@ -15,6 +16,8 @@ 3. Start Blasphemous. To verfy that the mods are working, look for a version number for both the Randomizer and Multiworld on the title screen. +4. (*Optional*) Add the Blasphemous pack to PopTracker. In game, open the console by pressing backslash `\` and type `randomizer autotracker on` to automatically connect the game to PopTracker. + ## Connecting To connect to an Archipelago server, open the in-game console by pressing backslash `\` and use the command `multiworld connect [address:port] [name] [password]`. The port and password are both optional - if no port is provided then the default port of 38281 is used.