about summary refs log tree commit diff stats
path: root/proto/human.proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-07 15:42:00 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-07 15:42:00 -0400
commitd79984b099c3f762b95d3b4257bef113d3a8d6ee (patch)
treebcb647c4734b9ddecb465f818e06efc899482f4e /proto/human.proto
parent8ab6132f99e9a033c170310b2d88a7312e46a153 (diff)
downloadlingo2-archipelago-d79984b099c3f762b95d3b4257bef113d3a8d6ee.tar.gz
lingo2-archipelago-d79984b099c3f762b95d3b4257bef113d3a8d6ee.tar.bz2
lingo2-archipelago-d79984b099c3f762b95d3b4257bef113d3a8d6ee.zip
Added door groups
Diffstat (limited to 'proto/human.proto')
-rw-r--r--proto/human.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/proto/human.proto b/proto/human.proto index 205b867..89fd076 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -203,6 +203,16 @@ message HumanProgressives {
203 repeated HumanProgressive progressives = 1; 203 repeated HumanProgressive progressives = 1;
204} 204}
205 205
206message HumanDoorGroup {
207 optional string name = 1;
208 optional DoorGroupType type = 2;
209 repeated DoorIdentifier doors = 3;
210}
211
212message HumanDoorGroups {
213 repeated HumanDoorGroup door_groups = 1;
214}
215
206message IdMappings { 216message IdMappings {
207 message RoomIds { 217 message RoomIds {
208 map<string, uint64> panels = 1; 218 map<string, uint64> panels = 1;
@@ -220,4 +230,5 @@ message IdMappings {
220 map<string, uint64> letters = 3; 230 map<string, uint64> letters = 3;
221 map<string, uint64> endings = 4; 231 map<string, uint64> endings = 4;
222 map<string, uint64> progressives = 5; 232 map<string, uint64> progressives = 5;
233 map<string, uint64> door_groups = 6;
223} 234}