summary refs log tree commit diff stats
path: root/proto/data.proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-01 12:54:46 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-01 12:54:46 -0400
commita3972a65b9b443a6085a6ac40b153442e190f382 (patch)
tree8291258115a066f99c972005557208cb9dbd8899 /proto/data.proto
parentd142ae3408d3e26e12d7dfaa6a7ccbcf56042957 (diff)
downloadlingo2-archipelago-a3972a65b9b443a6085a6ac40b153442e190f382.tar.gz
lingo2-archipelago-a3972a65b9b443a6085a6ac40b153442e190f382.tar.bz2
lingo2-archipelago-a3972a65b9b443a6085a6ac40b153442e190f382.zip
Added progressive doors
Diffstat (limited to 'proto/data.proto')
-rw-r--r--proto/data.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index 60b603b..b627e83 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -221,6 +221,13 @@ message Map {
221 optional string display_name = 3; 221 optional string display_name = 3;
222} 222}
223 223
224message Progressive {
225 optional uint64 id = 1;
226 optional string name = 2;
227 optional uint64 ap_id = 3;
228 repeated uint64 doors = 4;
229}
230
224message AllObjects { 231message AllObjects {
225 repeated Map maps = 7; 232 repeated Map maps = 7;
226 repeated Room rooms = 1; 233 repeated Room rooms = 1;
@@ -233,5 +240,6 @@ message AllObjects {
233 repeated Mastery masteries = 10; 240 repeated Mastery masteries = 10;
234 repeated Ending endings = 12; 241 repeated Ending endings = 12;
235 repeated Connection connections = 6; 242 repeated Connection connections = 6;
243 repeated Progressive progressives = 13;
236 map<string, uint64> special_ids = 8; 244 map<string, uint64> special_ids = 8;
237} 245}