name: "Welcome Back Area" panel_display_name: "Central" panels { name: "FAREWELL LITTLE LAMB" path: "Panels/Entry/wb_2" clue: "farewell little lamb" answer: "bye" symbols: QUESTION } panels { name: "GREETINGS OLD FRIEND" path: "Panels/Entry/wb_3" clue: "greetings old friend" answer: "hi" symbols: QUESTION } rchipelago' title='lingo2-archipelago Git repository'/>
about summary refs log tree commit diff stats
path: root/apworld/options.py
blob: 77f0ae3585e5e61f7edf76cba318fad2cc780f91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from dataclasses import dataclass

from Options import PerGameCommonOptions, Toggle


class ShuffleDoors(Toggle):
    """If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements."""
    display_name = "Shuffle Doors"


@dataclass
class Lingo2Options(PerGameCommonOptions):
    shuffle_doors: ShuffleDoors