about summary refs log tree commit diff stats
path: root/util
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-04-21 14:27:03 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-04-21 14:27:03 -0400
commit95beaf55efe7f65ac6416f4fe08bd4f2f47f080e (patch)
tree39decc5c208f42caf3f1d56a488a2baf06aa92e0 /util
parent6aad55fa66eb9caa668bb09289391e6b39eee7da (diff)
downloadlingo-archipelago-95beaf55efe7f65ac6416f4fe08bd4f2f47f080e.tar.gz
lingo-archipelago-95beaf55efe7f65ac6416f4fe08bd4f2f47f080e.tar.bz2
lingo-archipelago-95beaf55efe7f65ac6416f4fe08bd4f2f47f080e.zip
Expand sphere 1 in door shuffle + no ECH
Diffstat (limited to 'util')
-rw-r--r--util/generate_gamedata.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/generate_gamedata.rb b/util/generate_gamedata.rb index f63e062..3f610b1 100644 --- a/util/generate_gamedata.rb +++ b/util/generate_gamedata.rb
@@ -8,6 +8,7 @@ outputpath = ARGV[2]
8CLASSIFICATION_NORMAL = 1 8CLASSIFICATION_NORMAL = 1
9CLASSIFICATION_REDUCED = 2 9CLASSIFICATION_REDUCED = 2
10CLASSIFICATION_INSANITY = 4 10CLASSIFICATION_INSANITY = 4
11CLASSIFICATION_SMALL_SPHERE_ONE = 8
11 12
12panel_to_id = {} 13panel_to_id = {}
13door_groups = {} 14door_groups = {}
@@ -80,6 +81,10 @@ config.each do |room_name, room_data|
80 classification_by_location_id[location_id] += CLASSIFICATION_REDUCED 81 classification_by_location_id[location_id] += CLASSIFICATION_REDUCED
81 end 82 end
82 end 83 end
84
85 if room_name == "Starting Room"
86 classification_by_location_id[location_id] += CLASSIFICATION_SMALL_SPHERE_ONE
87 end
83 end 88 end
84 end 89 end
85 90