[Timespinner] New seed options and new locations checks (#140)

This commit is contained in:
Jarno Westhof
2021-11-28 22:59:34 +01:00
committed by GitHub
parent b3ae4b86e4
commit 8363d1749b
8 changed files with 100 additions and 56 deletions

View File

@@ -42,6 +42,14 @@ class Inverted(Toggle):
# "Require gasmask for Maw"
# display_name = "Stinky Maw"
class GyreArchives(Toggle):
"Gyre locations are in logic. New warps are gated by Merchant Crow and Kobo"
display_name = "Gyre Archives"
class Cantoran(Toggle):
"Cantoran's fight and check are available upon revisiting his room"
display_name = "Cantoran"
# Some options that are available in the timespinner randomizer arent currently implemented
timespinner_options: Dict[str, Toggle] = {
"StartWithJewelryBox": StartWithJewelryBox,
@@ -54,6 +62,8 @@ timespinner_options: Dict[str, Toggle] = {
"SpecificKeycards": SpecificKeycards,
"Inverted": Inverted,
#"StinkyMaw": StinkyMaw,
"GyreArchives": GyreArchives,
"Cantoran": Cantoran,
"DeathLink": DeathLink,
}