From 8cfee29fe6500e96c3b8669c12ac944716e9aae4 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 23 Oct 2025 12:13:09 -0400 Subject: Added "Enable Gift Maps" option Only supports The Advanced so far. Also added the mastery to The Advanced. Location listeners are now created after any map edits are made since some locations may require custom nodes (like The Advanced's mastery). --- apworld/options.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'apworld/options.py') diff --git a/apworld/options.py b/apworld/options.py index 600df6a..4d9c3aa 100644 --- a/apworld/options.py +++ b/apworld/options.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from Options import PerGameCommonOptions, Toggle, Choice, DefaultOnToggle, Range +from Options import PerGameCommonOptions, Toggle, Choice, DefaultOnToggle, Range, OptionSet class ShuffleDoors(DefaultOnToggle): @@ -99,6 +99,23 @@ class EnableIcarus(Toggle): display_name = "Enable Icarus" +class EnableGiftMaps(OptionSet): + """ + Controls whether the beta tester gift maps are randomized. By default, these are not accessible at all from within + the randomizer. Enabling at least one gift map will cause a panel to appear in The Entry's Starting Room. Gift maps + can be accessed by taking a player name that would ordinarily cause the game to load into a gift map, and entering + it into this panel. + + In the base game, nothing happens once you complete a gift map. Masteries have been added to the gift maps in the + randomizer so that the player can be rewarded for completing them. + + Note that the gift maps are intended only for specific people, and as a result may be frustrating or require + knowledge of inside jokes. The Crystalline is particularly difficult as it requires completing a parkour course. + """ + display_name = "Enable Gift Maps" + valid_keys = ["The Advanced", "The Charismatic", "The Crystalline", "The Fuzzy", "The Stellar"] + + class DaedalusRoofAccess(Toggle): """ If enabled, the player will be logically expected to be able to go from the castle entrance to any part of Daedalus @@ -178,6 +195,7 @@ class Lingo2Options(PerGameCommonOptions): keyholder_sanity: KeyholderSanity cyan_door_behavior: CyanDoorBehavior enable_icarus: EnableIcarus + enable_gift_maps: EnableGiftMaps daedalus_roof_access: DaedalusRoofAccess strict_purple_ending: StrictPurpleEnding strict_cyan_ending: StrictCyanEnding -- cgit 1.4.1