Shivers: Renaming for clarity and consistency (#2869)

* Moves plaque location to front for better tracker referencing.

* Tiki should be Shaman.

* Hanging should be Gallows.

* Merrick spelling.

* Clarity change.
This commit is contained in:
Kory Dondzila 2024-03-12 17:17:18 -05:00 committed by GitHub
parent ecd84fd1ca
commit d953927b3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 155 additions and 146 deletions

View File

@ -47,7 +47,7 @@ item_table = {
"Key for Generator Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 29, "key"), "Key for Generator Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 29, "key"),
"Key for Egypt Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 30, "key"), "Key for Egypt Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 30, "key"),
"Key for Library Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 31, "key"), "Key for Library Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 31, "key"),
"Key for Tiki Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 32, "key"), "Key for Shaman Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 32, "key"),
"Key for UFO Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 33, "key"), "Key for UFO Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 33, "key"),
"Key for Torture Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 34, "key"), "Key for Torture Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 34, "key"),
"Key for Puzzle Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 35, "key"), "Key for Puzzle Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 35, "key"),
@ -90,7 +90,7 @@ item_table = {
"Water Always Available in Lobby": ItemData(SHIVERS_ITEM_ID_OFFSET + 92, "filler2", ItemClassification.filler), "Water Always Available in Lobby": ItemData(SHIVERS_ITEM_ID_OFFSET + 92, "filler2", ItemClassification.filler),
"Wax Always Available in Library": ItemData(SHIVERS_ITEM_ID_OFFSET + 93, "filler2", ItemClassification.filler), "Wax Always Available in Library": ItemData(SHIVERS_ITEM_ID_OFFSET + 93, "filler2", ItemClassification.filler),
"Wax Always Available in Anansi Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 94, "filler2", ItemClassification.filler), "Wax Always Available in Anansi Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 94, "filler2", ItemClassification.filler),
"Wax Always Available in Tiki Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 95, "filler2", ItemClassification.filler), "Wax Always Available in Shaman Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 95, "filler2", ItemClassification.filler),
"Ash Always Available in Office": ItemData(SHIVERS_ITEM_ID_OFFSET + 96, "filler2", ItemClassification.filler), "Ash Always Available in Office": ItemData(SHIVERS_ITEM_ID_OFFSET + 96, "filler2", ItemClassification.filler),
"Ash Always Available in Burial Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 97, "filler2", ItemClassification.filler), "Ash Always Available in Burial Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 97, "filler2", ItemClassification.filler),
"Oil Always Available in Prehistoric Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 98, "filler2", ItemClassification.filler), "Oil Always Available in Prehistoric Room": ItemData(SHIVERS_ITEM_ID_OFFSET + 98, "filler2", ItemClassification.filler),

View File

@ -13,13 +13,16 @@ class LobbyAccess(Choice):
option_local = 2 option_local = 2
class PuzzleHintsRequired(DefaultOnToggle): class PuzzleHintsRequired(DefaultOnToggle):
"""If turned on puzzle hints will be available before the corresponding puzzle is required. For example: The Tiki """If turned on puzzle hints will be available before the corresponding puzzle is required. For example: The Shaman
Drums puzzle will be placed after access to the security cameras which give you the solution. Turning this off Drums puzzle will be placed after access to the security cameras which give you the solution. Turning this off
allows for greater randomization.""" allows for greater randomization."""
display_name = "Puzzle Hints Required" display_name = "Puzzle Hints Required"
class InformationPlaques(Toggle): class InformationPlaques(Toggle):
"""Adds Information Plaques as checks.""" """
Adds Information Plaques as checks.
(40 Locations)
"""
display_name = "Include Information Plaques" display_name = "Include Information Plaques"
class FrontDoorUsable(Toggle): class FrontDoorUsable(Toggle):
@ -27,7 +30,10 @@ class FrontDoorUsable(Toggle):
display_name = "Front Door Usable" display_name = "Front Door Usable"
class ElevatorsStaySolved(DefaultOnToggle): class ElevatorsStaySolved(DefaultOnToggle):
"""Adds elevators as checks and will remain open upon solving them.""" """
Adds elevators as checks and will remain open upon solving them.
(3 Locations)
"""
display_name = "Elevators Stay Solved" display_name = "Elevators Stay Solved"
class EarlyBeth(DefaultOnToggle): class EarlyBeth(DefaultOnToggle):
@ -35,7 +41,10 @@ class EarlyBeth(DefaultOnToggle):
display_name = "Early Beth" display_name = "Early Beth"
class EarlyLightning(Toggle): class EarlyLightning(Toggle):
"""Allows lightning to be captured at any point in the game. You will still need to capture all ten Ixupi for victory.""" """
Allows lightning to be captured at any point in the game. You will still need to capture all ten Ixupi for victory.
(1 Location)
"""
display_name = "Early Lightning" display_name = "Early Lightning"

View File

@ -96,8 +96,8 @@ def get_rules_lookup(player: int):
"To Lobby From Egypt": lambda state: state.has("Key for Egypt Room", player), "To Lobby From Egypt": lambda state: state.has("Key for Egypt Room", player),
"To Egypt From Lobby": lambda state: state.has("Key for Egypt Room", player), "To Egypt From Lobby": lambda state: state.has("Key for Egypt Room", player),
"To Janitor Closet": lambda state: state.has("Key for Janitor Closet", player), "To Janitor Closet": lambda state: state.has("Key for Janitor Closet", player),
"To Tiki From Burial": lambda state: state.has("Key for Tiki Room", player), "To Shaman From Burial": lambda state: state.has("Key for Shaman Room", player),
"To Burial From Tiki": lambda state: state.has("Key for Tiki Room", player), "To Burial From Shaman": lambda state: state.has("Key for Shaman Room", player),
"To Inventions From UFO": lambda state: state.has("Key for UFO Room", player), "To Inventions From UFO": lambda state: state.has("Key for UFO Room", player),
"To UFO From Inventions": lambda state: state.has("Key for UFO Room", player), "To UFO From Inventions": lambda state: state.has("Key for UFO Room", player),
"To Torture From Inventions": lambda state: state.has("Key for Torture Room", player), "To Torture From Inventions": lambda state: state.has("Key for Torture Room", player),
@ -145,7 +145,7 @@ def get_rules_lookup(player: int):
"locations_puzzle_hints": { "locations_puzzle_hints": {
"Puzzle Solved Clock Tower Door": lambda state: state.can_reach("Three Floor Elevator", "Region", player), "Puzzle Solved Clock Tower Door": lambda state: state.can_reach("Three Floor Elevator", "Region", player),
"Puzzle Solved Clock Chains": lambda state: state.can_reach("Bedroom", "Region", player), "Puzzle Solved Clock Chains": lambda state: state.can_reach("Bedroom", "Region", player),
"Puzzle Solved Tiki Drums": lambda state: state.can_reach("Clock Tower", "Region", player), "Puzzle Solved Shaman Drums": lambda state: state.can_reach("Clock Tower", "Region", player),
"Puzzle Solved Red Door": lambda state: state.can_reach("Maintenance Tunnels", "Region", player), "Puzzle Solved Red Door": lambda state: state.can_reach("Maintenance Tunnels", "Region", player),
"Puzzle Solved UFO Symbols": lambda state: state.can_reach("Library", "Region", player), "Puzzle Solved UFO Symbols": lambda state: state.can_reach("Library", "Region", player),
"Puzzle Solved Maze Door": lambda state: state.can_reach("Projector Room", "Region", player), "Puzzle Solved Maze Door": lambda state: state.can_reach("Projector Room", "Region", player),
@ -202,7 +202,7 @@ def set_rules(world: "ShiversWorld") -> None:
forbid_item(multiworld.get_location("Ixupi Captured Water", player), "Water Always Available in Lobby", player) forbid_item(multiworld.get_location("Ixupi Captured Water", player), "Water Always Available in Lobby", player)
forbid_item(multiworld.get_location("Ixupi Captured Wax", player), "Wax Always Available in Library", player) forbid_item(multiworld.get_location("Ixupi Captured Wax", player), "Wax Always Available in Library", player)
forbid_item(multiworld.get_location("Ixupi Captured Wax", player), "Wax Always Available in Anansi Room", player) forbid_item(multiworld.get_location("Ixupi Captured Wax", player), "Wax Always Available in Anansi Room", player)
forbid_item(multiworld.get_location("Ixupi Captured Wax", player), "Wax Always Available in Tiki Room", player) forbid_item(multiworld.get_location("Ixupi Captured Wax", player), "Wax Always Available in Shaman Room", player)
forbid_item(multiworld.get_location("Ixupi Captured Ash", player), "Ash Always Available in Office", player) forbid_item(multiworld.get_location("Ixupi Captured Ash", player), "Ash Always Available in Office", player)
forbid_item(multiworld.get_location("Ixupi Captured Ash", player), "Ash Always Available in Burial Room", player) forbid_item(multiworld.get_location("Ixupi Captured Ash", player), "Ash Always Available in Burial Room", player)
forbid_item(multiworld.get_location("Ixupi Captured Oil", player), "Oil Always Available in Prehistoric Room", player) forbid_item(multiworld.get_location("Ixupi Captured Oil", player), "Oil Always Available in Prehistoric Room", player)

View File

@ -1,45 +1,45 @@
{ {
"plaques": [ "plaques": [
"Information Plaque: Transforming Masks (Lobby)", "Information Plaque: (Lobby) Transforming Masks",
"Information Plaque: Jade Skull (Lobby)", "Information Plaque: (Lobby) Jade Skull",
"Information Plaque: Bronze Unicorn (Prehistoric)", "Information Plaque: (Prehistoric) Bronze Unicorn",
"Information Plaque: Griffin (Prehistoric)", "Information Plaque: (Prehistoric) Griffin",
"Information Plaque: Eagles Nest (Prehistoric)", "Information Plaque: (Prehistoric) Eagles Nest",
"Information Plaque: Large Spider (Prehistoric)", "Information Plaque: (Prehistoric) Large Spider",
"Information Plaque: Starfish (Prehistoric)", "Information Plaque: (Prehistoric) Starfish",
"Information Plaque: Quartz Crystal (Ocean)", "Information Plaque: (Ocean) Quartz Crystal",
"Information Plaque: Poseidon (Ocean)", "Information Plaque: (Ocean) Poseidon",
"Information Plaque: Colossus of Rhodes (Ocean)", "Information Plaque: (Ocean) Colossus of Rhodes",
"Information Plaque: Poseidon's Temple (Ocean)", "Information Plaque: (Ocean) Poseidon's Temple",
"Information Plaque: Subterranean World (Underground Maze)", "Information Plaque: (Underground Maze) Subterranean World",
"Information Plaque: Dero (Underground Maze)", "Information Plaque: (Underground Maze) Dero",
"Information Plaque: Tomb of the Ixupi (Egypt)", "Information Plaque: (Egypt) Tomb of the Ixupi",
"Information Plaque: The Sphinx (Egypt)", "Information Plaque: (Egypt) The Sphinx",
"Information Plaque: Curse of Anubis (Egypt)", "Information Plaque: (Egypt) Curse of Anubis",
"Information Plaque: Norse Burial Ship (Burial)", "Information Plaque: (Burial) Norse Burial Ship",
"Information Plaque: Paracas Burial Bundles (Burial)", "Information Plaque: (Burial) Paracas Burial Bundles",
"Information Plaque: Spectacular Coffins of Ghana (Burial)", "Information Plaque: (Burial) Spectacular Coffins of Ghana",
"Information Plaque: Cremation (Burial)", "Information Plaque: (Burial) Cremation",
"Information Plaque: Animal Crematorium (Burial)", "Information Plaque: (Burial) Animal Crematorium",
"Information Plaque: Witch Doctors of the Congo (Tiki)", "Information Plaque: (Shaman) Witch Doctors of the Congo",
"Information Plaque: Sarombe doctor of Mozambique (Tiki)", "Information Plaque: (Shaman) Sarombe doctor of Mozambique",
"Information Plaque: Fisherman's Canoe God (Gods)", "Information Plaque: (Gods) Fisherman's Canoe God",
"Information Plaque: Mayan Gods (Gods)", "Information Plaque: (Gods) Mayan Gods",
"Information Plaque: Thor (Gods)", "Information Plaque: (Gods) Thor",
"Information Plaque: Celtic Janus Sculpture (Gods)", "Information Plaque: (Gods) Celtic Janus Sculpture",
"Information Plaque: Sumerian Bull God - An (Gods)", "Information Plaque: (Gods) Sumerian Bull God - An",
"Information Plaque: Sumerian Lyre (Gods)", "Information Plaque: (Gods) Sumerian Lyre",
"Information Plaque: Chuen (Gods)", "Information Plaque: (Gods) Chuen",
"Information Plaque: African Creation Myth (Anansi)", "Information Plaque: (Anansi) African Creation Myth",
"Information Plaque: Apophis the Serpent (Anansi)", "Information Plaque: (Anansi) Apophis the Serpent",
"Information Plaque: Death (Anansi)", "Information Plaque: (Anansi) Death",
"Information Plaque: Cyclops (Pegasus)", "Information Plaque: (Pegasus) Cyclops",
"Information Plaque: Lycanthropy (Werewolf)", "Information Plaque: (Werewolf) Lycanthropy",
"Information Plaque: Coincidence or Extraterrestrial Visits? (UFO)", "Information Plaque: (UFO) Coincidence or Extraterrestrial Visits?",
"Information Plaque: Planets (UFO)", "Information Plaque: (UFO) Planets",
"Information Plaque: Astronomical Construction (UFO)", "Information Plaque: (UFO) Astronomical Construction",
"Information Plaque: Guillotine (Torture)", "Information Plaque: (Torture) Guillotine",
"Information Plaque: Aliens (UFO)" "Information Plaque: (UFO) Aliens"
], ],
"elevators": [ "elevators": [
"Puzzle Solved Office Elevator", "Puzzle Solved Office Elevator",

View File

@ -13,7 +13,7 @@
"Puzzle Solved Columns of RA", "Puzzle Solved Columns of RA",
"Puzzle Solved Burial Door", "Puzzle Solved Burial Door",
"Puzzle Solved Chinese Solitaire", "Puzzle Solved Chinese Solitaire",
"Puzzle Solved Tiki Drums", "Puzzle Solved Shaman Drums",
"Puzzle Solved Lyre", "Puzzle Solved Lyre",
"Puzzle Solved Red Door", "Puzzle Solved Red Door",
"Puzzle Solved Fortune Teller Door", "Puzzle Solved Fortune Teller Door",
@ -38,7 +38,7 @@
"Flashback Memory Obtained Theater Movie", "Flashback Memory Obtained Theater Movie",
"Flashback Memory Obtained Museum Blueprints", "Flashback Memory Obtained Museum Blueprints",
"Flashback Memory Obtained Beth's Address Book", "Flashback Memory Obtained Beth's Address Book",
"Flashback Memory Obtained Merick's Notebook", "Flashback Memory Obtained Merrick's Notebook",
"Flashback Memory Obtained Professor Windlenot's Diary", "Flashback Memory Obtained Professor Windlenot's Diary",
"Ixupi Captured Water", "Ixupi Captured Water",
"Ixupi Captured Wax", "Ixupi Captured Wax",
@ -68,48 +68,48 @@
"Puzzle Hint Found: Gallows Information Plaque", "Puzzle Hint Found: Gallows Information Plaque",
"Puzzle Hint Found: Mastermind Information Plaque", "Puzzle Hint Found: Mastermind Information Plaque",
"Puzzle Hint Found: Elevator Writing", "Puzzle Hint Found: Elevator Writing",
"Puzzle Hint Found: Tiki Security Camera", "Puzzle Hint Found: Shaman Security Camera",
"Puzzle Hint Found: Tape Recorder Heard", "Puzzle Hint Found: Tape Recorder Heard",
"Information Plaque: Transforming Masks (Lobby)", "Information Plaque: (Lobby) Transforming Masks",
"Information Plaque: Jade Skull (Lobby)", "Information Plaque: (Lobby) Jade Skull",
"Information Plaque: Bronze Unicorn (Prehistoric)", "Information Plaque: (Prehistoric) Bronze Unicorn",
"Information Plaque: Griffin (Prehistoric)", "Information Plaque: (Prehistoric) Griffin",
"Information Plaque: Eagles Nest (Prehistoric)", "Information Plaque: (Prehistoric) Eagles Nest",
"Information Plaque: Large Spider (Prehistoric)", "Information Plaque: (Prehistoric) Large Spider",
"Information Plaque: Starfish (Prehistoric)", "Information Plaque: (Prehistoric) Starfish",
"Information Plaque: Quartz Crystal (Ocean)", "Information Plaque: (Ocean) Quartz Crystal",
"Information Plaque: Poseidon (Ocean)", "Information Plaque: (Ocean) Poseidon",
"Information Plaque: Colossus of Rhodes (Ocean)", "Information Plaque: (Ocean) Colossus of Rhodes",
"Information Plaque: Poseidon's Temple (Ocean)", "Information Plaque: (Ocean) Poseidon's Temple",
"Information Plaque: Subterranean World (Underground Maze)", "Information Plaque: (Underground Maze) Subterranean World",
"Information Plaque: Dero (Underground Maze)", "Information Plaque: (Underground Maze) Dero",
"Information Plaque: Tomb of the Ixupi (Egypt)", "Information Plaque: (Egypt) Tomb of the Ixupi",
"Information Plaque: The Sphinx (Egypt)", "Information Plaque: (Egypt) The Sphinx",
"Information Plaque: Curse of Anubis (Egypt)", "Information Plaque: (Egypt) Curse of Anubis",
"Information Plaque: Norse Burial Ship (Burial)", "Information Plaque: (Burial) Norse Burial Ship",
"Information Plaque: Paracas Burial Bundles (Burial)", "Information Plaque: (Burial) Paracas Burial Bundles",
"Information Plaque: Spectacular Coffins of Ghana (Burial)", "Information Plaque: (Burial) Spectacular Coffins of Ghana",
"Information Plaque: Cremation (Burial)", "Information Plaque: (Burial) Cremation",
"Information Plaque: Animal Crematorium (Burial)", "Information Plaque: (Burial) Animal Crematorium",
"Information Plaque: Witch Doctors of the Congo (Tiki)", "Information Plaque: (Shaman) Witch Doctors of the Congo",
"Information Plaque: Sarombe doctor of Mozambique (Tiki)", "Information Plaque: (Shaman) Sarombe doctor of Mozambique",
"Information Plaque: Fisherman's Canoe God (Gods)", "Information Plaque: (Gods) Fisherman's Canoe God",
"Information Plaque: Mayan Gods (Gods)", "Information Plaque: (Gods) Mayan Gods",
"Information Plaque: Thor (Gods)", "Information Plaque: (Gods) Thor",
"Information Plaque: Celtic Janus Sculpture (Gods)", "Information Plaque: (Gods) Celtic Janus Sculpture",
"Information Plaque: Sumerian Bull God - An (Gods)", "Information Plaque: (Gods) Sumerian Bull God - An",
"Information Plaque: Sumerian Lyre (Gods)", "Information Plaque: (Gods) Sumerian Lyre",
"Information Plaque: Chuen (Gods)", "Information Plaque: (Gods) Chuen",
"Information Plaque: African Creation Myth (Anansi)", "Information Plaque: (Anansi) African Creation Myth",
"Information Plaque: Apophis the Serpent (Anansi)", "Information Plaque: (Anansi) Apophis the Serpent",
"Information Plaque: Death (Anansi)", "Information Plaque: (Anansi) Death",
"Information Plaque: Cyclops (Pegasus)", "Information Plaque: (Pegasus) Cyclops",
"Information Plaque: Lycanthropy (Werewolf)", "Information Plaque: (Werewolf) Lycanthropy",
"Information Plaque: Coincidence or Extraterrestrial Visits? (UFO)", "Information Plaque: (UFO) Coincidence or Extraterrestrial Visits?",
"Information Plaque: Planets (UFO)", "Information Plaque: (UFO) Planets",
"Information Plaque: Astronomical Construction (UFO)", "Information Plaque: (UFO) Astronomical Construction",
"Information Plaque: Guillotine (Torture)", "Information Plaque: (Torture) Guillotine",
"Information Plaque: Aliens (UFO)", "Information Plaque: (UFO) Aliens",
"Puzzle Solved Office Elevator", "Puzzle Solved Office Elevator",
"Puzzle Solved Bedroom Elevator", "Puzzle Solved Bedroom Elevator",
"Puzzle Solved Three Floor Elevator", "Puzzle Solved Three Floor Elevator",
@ -176,10 +176,10 @@
"Lobby": [ "Lobby": [
"Puzzle Solved Theater Door", "Puzzle Solved Theater Door",
"Flashback Memory Obtained Museum Brochure", "Flashback Memory Obtained Museum Brochure",
"Information Plaque: Jade Skull (Lobby)", "Information Plaque: (Lobby) Jade Skull",
"Information Plaque: Transforming Masks (Lobby)", "Information Plaque: (Lobby) Transforming Masks",
"Accessible: Storage: Slide", "Accessible: Storage: Slide",
"Accessible: Storage: Eagles Head" "Accessible: Storage: Transforming Mask"
], ],
"Generator": [ "Generator": [
"Final Riddle: Beth's Body Page 17" "Final Riddle: Beth's Body Page 17"
@ -193,7 +193,7 @@
"Clock Tower": [ "Clock Tower": [
"Flashback Memory Obtained Beth's Ghost", "Flashback Memory Obtained Beth's Ghost",
"Accessible: Storage: Clock Tower", "Accessible: Storage: Clock Tower",
"Puzzle Hint Found: Tiki Security Camera" "Puzzle Hint Found: Shaman Security Camera"
], ],
"Projector Room": [ "Projector Room": [
"Flashback Memory Obtained Theater Movie" "Flashback Memory Obtained Theater Movie"
@ -204,10 +204,10 @@
"Flashback Memory Obtained Museum Blueprints", "Flashback Memory Obtained Museum Blueprints",
"Accessible: Storage: Ocean", "Accessible: Storage: Ocean",
"Puzzle Hint Found: Sirens Song Heard", "Puzzle Hint Found: Sirens Song Heard",
"Information Plaque: Quartz Crystal (Ocean)", "Information Plaque: (Ocean) Quartz Crystal",
"Information Plaque: Poseidon (Ocean)", "Information Plaque: (Ocean) Poseidon",
"Information Plaque: Colossus of Rhodes (Ocean)", "Information Plaque: (Ocean) Colossus of Rhodes",
"Information Plaque: Poseidon's Temple (Ocean)" "Information Plaque: (Ocean) Poseidon's Temple"
], ],
"Maze Staircase": [ "Maze Staircase": [
"Puzzle Solved Maze Door" "Puzzle Solved Maze Door"
@ -217,38 +217,38 @@
"Puzzle Solved Burial Door", "Puzzle Solved Burial Door",
"Accessible: Storage: Egypt", "Accessible: Storage: Egypt",
"Puzzle Hint Found: Egyptian Sphinx Heard", "Puzzle Hint Found: Egyptian Sphinx Heard",
"Information Plaque: Tomb of the Ixupi (Egypt)", "Information Plaque: (Egypt) Tomb of the Ixupi",
"Information Plaque: The Sphinx (Egypt)", "Information Plaque: (Egypt) The Sphinx",
"Information Plaque: Curse of Anubis (Egypt)" "Information Plaque: (Egypt) Curse of Anubis"
], ],
"Burial": [ "Burial": [
"Puzzle Solved Chinese Solitaire", "Puzzle Solved Chinese Solitaire",
"Flashback Memory Obtained Merick's Notebook", "Flashback Memory Obtained Merrick's Notebook",
"Accessible: Storage: Chinese Solitaire", "Accessible: Storage: Chinese Solitaire",
"Information Plaque: Norse Burial Ship (Burial)", "Information Plaque: (Burial) Norse Burial Ship",
"Information Plaque: Paracas Burial Bundles (Burial)", "Information Plaque: (Burial) Paracas Burial Bundles",
"Information Plaque: Spectacular Coffins of Ghana (Burial)", "Information Plaque: (Burial) Spectacular Coffins of Ghana",
"Information Plaque: Animal Crematorium (Burial)", "Information Plaque: (Burial) Animal Crematorium",
"Information Plaque: Cremation (Burial)" "Information Plaque: (Burial) Cremation"
], ],
"Tiki": [ "Shaman": [
"Puzzle Solved Tiki Drums", "Puzzle Solved Shaman Drums",
"Accessible: Storage: Tiki Hut", "Accessible: Storage: Shaman Hut",
"Information Plaque: Witch Doctors of the Congo (Tiki)", "Information Plaque: (Shaman) Witch Doctors of the Congo",
"Information Plaque: Sarombe doctor of Mozambique (Tiki)" "Information Plaque: (Shaman) Sarombe doctor of Mozambique"
], ],
"Gods Room": [ "Gods Room": [
"Puzzle Solved Lyre", "Puzzle Solved Lyre",
"Puzzle Solved Red Door", "Puzzle Solved Red Door",
"Accessible: Storage: Lyre", "Accessible: Storage: Lyre",
"Final Riddle: Norse God Stone Message", "Final Riddle: Norse God Stone Message",
"Information Plaque: Fisherman's Canoe God (Gods)", "Information Plaque: (Gods) Fisherman's Canoe God",
"Information Plaque: Mayan Gods (Gods)", "Information Plaque: (Gods) Mayan Gods",
"Information Plaque: Thor (Gods)", "Information Plaque: (Gods) Thor",
"Information Plaque: Celtic Janus Sculpture (Gods)", "Information Plaque: (Gods) Celtic Janus Sculpture",
"Information Plaque: Sumerian Bull God - An (Gods)", "Information Plaque: (Gods) Sumerian Bull God - An",
"Information Plaque: Sumerian Lyre (Gods)", "Information Plaque: (Gods) Sumerian Lyre",
"Information Plaque: Chuen (Gods)" "Information Plaque: (Gods) Chuen"
], ],
"Blue Maze": [ "Blue Maze": [
"Puzzle Solved Fortune Teller Door" "Puzzle Solved Fortune Teller Door"
@ -265,28 +265,28 @@
"Puzzle Solved UFO Symbols", "Puzzle Solved UFO Symbols",
"Accessible: Storage: UFO", "Accessible: Storage: UFO",
"Final Riddle: Planets Aligned", "Final Riddle: Planets Aligned",
"Information Plaque: Coincidence or Extraterrestrial Visits? (UFO)", "Information Plaque: (UFO) Coincidence or Extraterrestrial Visits?",
"Information Plaque: Planets (UFO)", "Information Plaque: (UFO) Planets",
"Information Plaque: Astronomical Construction (UFO)", "Information Plaque: (UFO) Astronomical Construction",
"Information Plaque: Aliens (UFO)" "Information Plaque: (UFO) Aliens"
], ],
"Anansi": [ "Anansi": [
"Puzzle Solved Anansi Musicbox", "Puzzle Solved Anansi Musicbox",
"Flashback Memory Obtained Ancient Astrology", "Flashback Memory Obtained Ancient Astrology",
"Accessible: Storage: Skeleton", "Accessible: Storage: Skeleton",
"Accessible: Storage: Anansi", "Accessible: Storage: Anansi",
"Information Plaque: African Creation Myth (Anansi)", "Information Plaque: (Anansi) African Creation Myth",
"Information Plaque: Apophis the Serpent (Anansi)", "Information Plaque: (Anansi) Apophis the Serpent",
"Information Plaque: Death (Anansi)", "Information Plaque: (Anansi) Death",
"Information Plaque: Cyclops (Pegasus)", "Information Plaque: (Pegasus) Cyclops",
"Information Plaque: Lycanthropy (Werewolf)" "Information Plaque: (Werewolf) Lycanthropy"
], ],
"Torture": [ "Torture": [
"Puzzle Solved Gallows", "Puzzle Solved Gallows",
"Accessible: Storage: Hanging", "Accessible: Storage: Gallows",
"Final Riddle: Guillotine Dropped", "Final Riddle: Guillotine Dropped",
"Puzzle Hint Found: Gallows Information Plaque", "Puzzle Hint Found: Gallows Information Plaque",
"Information Plaque: Guillotine (Torture)" "Information Plaque: (Torture) Guillotine"
], ],
"Puzzle Room Mastermind": [ "Puzzle Room Mastermind": [
"Puzzle Solved Mastermind", "Puzzle Solved Mastermind",
@ -296,17 +296,17 @@
"Puzzle Solved Marble Flipper" "Puzzle Solved Marble Flipper"
], ],
"Prehistoric": [ "Prehistoric": [
"Information Plaque: Bronze Unicorn (Prehistoric)", "Information Plaque: (Prehistoric) Bronze Unicorn",
"Information Plaque: Griffin (Prehistoric)", "Information Plaque: (Prehistoric) Griffin",
"Information Plaque: Eagles Nest (Prehistoric)", "Information Plaque: (Prehistoric) Eagles Nest",
"Information Plaque: Large Spider (Prehistoric)", "Information Plaque: (Prehistoric) Large Spider",
"Information Plaque: Starfish (Prehistoric)", "Information Plaque: (Prehistoric) Starfish",
"Accessible: Storage: Eagles Nest" "Accessible: Storage: Eagles Nest"
], ],
"Tar River": [ "Tar River": [
"Accessible: Storage: Tar River", "Accessible: Storage: Tar River",
"Information Plaque: Subterranean World (Underground Maze)", "Information Plaque: (Underground Maze) Subterranean World",
"Information Plaque: Dero (Underground Maze)" "Information Plaque: (Underground Maze) Dero"
], ],
"Theater": [ "Theater": [
"Accessible: Storage: Theater" "Accessible: Storage: Theater"

View File

@ -27,9 +27,9 @@
["Maze", ["To Maze Staircase From Maze", "To Tar River"]], ["Maze", ["To Maze Staircase From Maze", "To Tar River"]],
["Tar River", ["To Maze From Tar River", "To Lobby From Tar River"]], ["Tar River", ["To Maze From Tar River", "To Lobby From Tar River"]],
["Egypt", ["To Lobby From Egypt", "To Burial From Egypt", "To Blue Maze From Egypt"]], ["Egypt", ["To Lobby From Egypt", "To Burial From Egypt", "To Blue Maze From Egypt"]],
["Burial", ["To Egypt From Burial", "To Tiki From Burial"]], ["Burial", ["To Egypt From Burial", "To Shaman From Burial"]],
["Tiki", ["To Burial From Tiki", "To Gods Room"]], ["Shaman", ["To Burial From Shaman", "To Gods Room"]],
["Gods Room", ["To Tiki From Gods Room", "To Anansi From Gods Room"]], ["Gods Room", ["To Shaman From Gods Room", "To Anansi From Gods Room"]],
["Anansi", ["To Gods Room From Anansi", "To Werewolf From Anansi"]], ["Anansi", ["To Gods Room From Anansi", "To Werewolf From Anansi"]],
["Werewolf", ["To Anansi From Werewolf", "To Night Staircase From Werewolf"]], ["Werewolf", ["To Anansi From Werewolf", "To Night Staircase From Werewolf"]],
["Night Staircase", ["To Werewolf From Night Staircase", "To Janitor Closet", "To UFO"]], ["Night Staircase", ["To Werewolf From Night Staircase", "To Janitor Closet", "To UFO"]],
@ -109,13 +109,13 @@
["To Tar River", "Tar River"], ["To Tar River", "Tar River"],
["To Tar River From Lobby", "Tar River"], ["To Tar River From Lobby", "Tar River"],
["To Burial From Egypt", "Burial"], ["To Burial From Egypt", "Burial"],
["To Burial From Tiki", "Burial"], ["To Burial From Shaman", "Burial"],
["To Blue Maze From Three Floor Elevator", "Blue Maze"], ["To Blue Maze From Three Floor Elevator", "Blue Maze"],
["To Blue Maze From Fortune Teller", "Blue Maze"], ["To Blue Maze From Fortune Teller", "Blue Maze"],
["To Blue Maze From Inventions", "Blue Maze"], ["To Blue Maze From Inventions", "Blue Maze"],
["To Blue Maze From Egypt", "Blue Maze"], ["To Blue Maze From Egypt", "Blue Maze"],
["To Tiki From Burial", "Tiki"], ["To Shaman From Burial", "Shaman"],
["To Tiki From Gods Room", "Tiki"], ["To Shaman From Gods Room", "Shaman"],
["To Gods Room", "Gods Room" ], ["To Gods Room", "Gods Room" ],
["To Gods Room From Anansi", "Gods Room"], ["To Gods Room From Anansi", "Gods Room"],
["To Anansi From Gods Room", "Anansi"], ["To Anansi From Gods Room", "Anansi"],