From a834180195305fe0be91bd0ced5b75de104b7520 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 15 Jan 2025 15:13:29 -0500 Subject: Lingo: Add speed boost mode (#3989) * Add speed boost mode * Update generated.dat * Modify the actual trap weights option when speed boost mode is on * EOF newline * Update generated.dat --- __init__.py | 12 +++++++++--- data/generated.dat | Bin 149485 -> 149504 bytes data/ids.yaml | 1 + items.py | 1 + options.py | 10 ++++++++++ test/TestOptions.py | 9 ++++++++- utils/assign_ids.rb | 3 +++ 7 files changed, 32 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index 2a61a71..141fca0 100644 --- a/__init__.py +++ b/__init__.py @@ -128,6 +128,9 @@ class LingoWorld(World): pool.append(self.create_item("Puzzle Skip")) if traps: + if self.options.speed_boost_mode: + self.options.trap_weights.value["Slowness Trap"] = 0 + total_weight = sum(self.options.trap_weights.values()) if total_weight == 0: @@ -171,7 +174,7 @@ class LingoWorld(World): "death_link", "victory_condition", "shuffle_colors", "shuffle_doors", "shuffle_paintings", "shuffle_panels", "enable_pilgrimage", "sunwarp_access", "mastery_achievements", "level_2_requirement", "location_checks", "early_color_hallways", "pilgrimage_allows_roof_access", "pilgrimage_allows_paintings", "shuffle_sunwarps", - "group_doors" + "group_doors", "speed_boost_mode" ] slot_data = { @@ -188,5 +191,8 @@ class LingoWorld(World): return slot_data def get_filler_item_name(self) -> str: - filler_list = [":)", "The Feeling of Being Lost", "Wanderlust", "Empty White Hallways"] - return self.random.choice(filler_list) + if self.options.speed_boost_mode: + return "Speed Boost" + else: + filler_list = [":)", "The Feeling of Being Lost", "Wanderlust", "Empty White Hallways"] + return self.random.choice(filler_list) diff --git a/data/generated.dat b/data/generated.dat index 8b159d4..646ce3b 100644 Binary files a/data/generated.dat and b/data/generated.dat differ diff --git a/data/ids.yaml b/data/ids.yaml index 13b7714..0a43592 100644 --- a/data/ids.yaml +++ b/data/ids.yaml @@ -17,6 +17,7 @@ special_items: Iceland Trap: 444411 Atbash Trap: 444412 Puzzle Skip: 444413 + Speed Boost: 444680 panels: Starting Room: HI: 444400 diff --git a/items.py b/items.py index 78b288e..7e75cc7 100644 --- a/items.py +++ b/items.py @@ -85,6 +85,7 @@ def load_item_data(): "The Feeling of Being Lost": ItemClassification.filler, "Wanderlust": ItemClassification.filler, "Empty White Hallways": ItemClassification.filler, + "Speed Boost": ItemClassification.filler, **{trap_name: ItemClassification.trap for trap_name in TRAP_ITEMS}, "Puzzle Skip": ItemClassification.useful, } diff --git a/options.py b/options.py index 2d6e996..f9d04f6 100644 --- a/options.py +++ b/options.py @@ -232,6 +232,14 @@ class TrapWeights(OptionDict): default = {trap_name: 1 for trap_name in TRAP_ITEMS} +class SpeedBoostMode(Toggle): + """ + If on, the player's default speed is halved, as if affected by a Slowness Trap. Speed Boosts are added to + the item pool, which temporarily return the player to normal speed. Slowness Traps are removed from the pool. + """ + display_name = "Speed Boost Mode" + + class PuzzleSkipPercentage(Range): """Replaces junk items with puzzle skips, at the specified rate.""" display_name = "Puzzle Skip Percentage" @@ -260,6 +268,7 @@ lingo_option_groups = [ Level2Requirement, TrapPercentage, TrapWeights, + SpeedBoostMode, PuzzleSkipPercentage, ]) ] @@ -287,6 +296,7 @@ class LingoOptions(PerGameCommonOptions): shuffle_postgame: ShufflePostgame trap_percentage: TrapPercentage trap_weights: TrapWeights + speed_boost_mode: SpeedBoostMode puzzle_skip_percentage: PuzzleSkipPercentage death_link: DeathLink start_inventory_from_pool: StartInventoryPool diff --git a/test/TestOptions.py b/test/TestOptions.py index bd8ed81..224dbe0 100644 --- a/test/TestOptions.py +++ b/test/TestOptions.py @@ -59,4 +59,11 @@ class TestShuffleSunwarpsAccess(LingoTestBase): "victory_condition": "pilgrimage", "shuffle_sunwarps": "true", "sunwarp_access": "individual" - } \ No newline at end of file + } + + +class TestSpeedBoostMode(LingoTestBase): + options = { + "location_checks": "insanity", + "speed_boost_mode": "true", + } diff --git a/utils/assign_ids.rb b/utils/assign_ids.rb index f7de3d0..bcb8018 100644 --- a/utils/assign_ids.rb +++ b/utils/assign_ids.rb @@ -216,3 +216,6 @@ config.each do |room_name, room_data| end File.write(outputpath, old_generated.to_yaml) + +puts "Next item ID: #{next_item_id}" +puts "Next location ID: #{next_location_id}" -- cgit 1.4.1