From 1a88fdde890bca29f74c6cd6c7612ea0a80ca680 Mon Sep 17 00:00:00 2001 From: Alex Gilbert Date: Sun, 22 Sep 2024 18:18:10 -0400 Subject: [PATCH] - Add moviesanity option --- worlds/stardew_valley/options/options.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/worlds/stardew_valley/options/options.py b/worlds/stardew_valley/options/options.py index 5d3b25b4da13..377cec7f4489 100644 --- a/worlds/stardew_valley/options/options.py +++ b/worlds/stardew_valley/options/options.py @@ -599,6 +599,20 @@ def __eq__(self, other: typing.Any) -> bool: return typing.cast(bool, self.value == other) +class Moviesanity(Choice): + """Add checks for watching movies? + None: No movie checks + One: There is a check for watching a movie, regardless of which + All: Watching all individual movies are checks + """ + internal_name = "moviesanity" + display_name = "Moviesanity" + default = 1 + option_none = 0 + option_one = 1 + option_all = 2 + + class NumberOfMovementBuffs(Range): """Number of movement speed buffs to the player that exist as items in the pool. Each movement speed buff is a +25% multiplier that stacks additively"""