forked from ArchipelagoMW/Archipelago
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
define logic helper items for starting locations; grant proper logic …
…helper item to player depending on starting location
- Loading branch information
Showing
5 changed files
with
132 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
from typing import Dict | ||
|
||
from ..enums import ZorkGrandInquisitorItems, ZorkGrandInquisitorStartingLocations | ||
|
||
|
||
starting_location_to_logic_helper_item: Dict[ | ||
ZorkGrandInquisitorStartingLocations, ZorkGrandInquisitorItems | ||
] = { | ||
ZorkGrandInquisitorStartingLocations.PORT_FOOZLE: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_PORT_FOOZLE | ||
), | ||
ZorkGrandInquisitorStartingLocations.CROSSROADS: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_CROSSROADS | ||
), | ||
ZorkGrandInquisitorStartingLocations.DM_LAIR: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_DM_LAIR | ||
), | ||
ZorkGrandInquisitorStartingLocations.DM_LAIR_HOUSE: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_DM_LAIR_HOUSE | ||
), | ||
ZorkGrandInquisitorStartingLocations.GUE_TECH: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_GUE_TECH | ||
), | ||
ZorkGrandInquisitorStartingLocations.SPELL_LAB: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_SPELL_LAB | ||
), | ||
ZorkGrandInquisitorStartingLocations.HADES_SHORE: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_HADES_SHORE | ||
), | ||
ZorkGrandInquisitorStartingLocations.FLOOD_CONTROL_DAM_3: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_FLOOD_CONTROL_DAM_3 | ||
), | ||
ZorkGrandInquisitorStartingLocations.MONASTERY_TOTEMIZER: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_MONASTERY_TOTEMIZER | ||
), | ||
ZorkGrandInquisitorStartingLocations.MONASTERY_EXHIBIT: ( | ||
ZorkGrandInquisitorItems.LOGIC_HELPER_STARTING_LOCATION_MONASTERY_EXHIBIT | ||
), | ||
} |
This file contains 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
This file contains 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
This file contains 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