Skip to content

Commit

Permalink
Blasphemous: Update docs, item creation (ArchipelagoMW#1670)
Browse files Browse the repository at this point in the history
* Blasphemous: Update docs, item creation

* Blasphemous: Remove get_pre_fill_items
  • Loading branch information
TRPG0 authored Apr 8, 2023
1 parent 8fc5051 commit 8e6ec85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion worlds/blasphemous/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions worlds/blasphemous/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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())
Expand Down
3 changes: 3 additions & 0 deletions worlds/blasphemous/docs/setup_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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.
Expand Down

0 comments on commit 8e6ec85

Please sign in to comment.