summary refs log tree commit diff stats
path: root/locations.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-02 02:52:16 -0500
committerGitHub <noreply@github.com>2024-05-02 09:52:16 +0200
commit9c3bdec26936e8ea56c4c332acd1ca8f16a73327 (patch)
tree9a3f318712c559c19d0bf237ae5c50b16d38aa9f /locations.py
parent392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c (diff)
downloadlingo-apworld-9c3bdec26936e8ea56c4c332acd1ca8f16a73327.tar.gz
lingo-apworld-9c3bdec26936e8ea56c4c332acd1ca8f16a73327.tar.bz2
lingo-apworld-9c3bdec26936e8ea56c4c332acd1ca8f16a73327.zip
Lingo: Expand sphere 1 under restrictive conditions (#3190)
Diffstat (limited to 'locations.py')
-rw-r--r--locations.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/locations.py b/locations.py index a6e53e7..5ffedee 100644 --- a/locations.py +++ b/locations.py
@@ -10,6 +10,7 @@ class LocationClassification(Flag):
10 normal = auto() 10 normal = auto()
11 reduced = auto() 11 reduced = auto()
12 insanity = auto() 12 insanity = auto()
13 small_sphere_one = auto()
13 14
14 15
15class LocationData(NamedTuple): 16class LocationData(NamedTuple):
@@ -47,6 +48,9 @@ def load_location_data():
47 if not panel.exclude_reduce: 48 if not panel.exclude_reduce:
48 classification |= LocationClassification.reduced 49 classification |= LocationClassification.reduced
49 50
51 if room_name == "Starting Room":
52 classification |= LocationClassification.small_sphere_one
53
50 ALL_LOCATION_TABLE[location_name] = \ 54 ALL_LOCATION_TABLE[location_name] = \
51 LocationData(get_panel_location_id(room_name, panel_name), room_name, 55 LocationData(get_panel_location_id(room_name, panel_name), room_name,
52 [RoomAndPanel(None, panel_name)], classification) 56 [RoomAndPanel(None, panel_name)], classification)