Skip to content

Commit

Permalink
- Add moviesanity option
Browse files Browse the repository at this point in the history
  • Loading branch information
agilbert1412 authored and Jouramie committed Dec 17, 2024
1 parent cacab68 commit 1a88fdd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions worlds/stardew_valley/options/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down

0 comments on commit 1a88fdd

Please sign in to comment.