summary refs log tree commit diff stats
path: root/apworld/options.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-12 12:33:24 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-12 12:33:24 -0400
commit447a222b57e498f7904033c59e68d21d6a246abd (patch)
treee756845a971729758ba091474322fd722d44e0ec /apworld/options.py
parent4e56e7681c0769dd247c0512a682a067426436bc (diff)
downloadlingo2-archipelago-447a222b57e498f7904033c59e68d21d6a246abd.tar.gz
lingo2-archipelago-447a222b57e498f7904033c59e68d21d6a246abd.tar.bz2
lingo2-archipelago-447a222b57e498f7904033c59e68d21d6a246abd.zip
Items and connections in the apworld
Diffstat (limited to 'apworld/options.py')
-rw-r--r--apworld/options.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/apworld/options.py b/apworld/options.py index f33f5af..77f0ae3 100644 --- a/apworld/options.py +++ b/apworld/options.py
@@ -1,8 +1,13 @@
1from dataclasses import dataclass 1from dataclasses import dataclass
2 2
3from Options import PerGameCommonOptions 3from Options import PerGameCommonOptions, Toggle
4
5
6class ShuffleDoors(Toggle):
7 """If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements."""
8 display_name = "Shuffle Doors"
4 9
5 10
6@dataclass 11@dataclass
7class Lingo2Options(PerGameCommonOptions): 12class Lingo2Options(PerGameCommonOptions):
8 pass 13 shuffle_doors: ShuffleDoors