summary refs log tree commit diff stats
path: root/proto/common.proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-07 14:28:56 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-07 14:28:56 -0400
commit3c26cedd030c464e3b8a5576a98c19eb45134658 (patch)
treeb2a9dcda18dfd39c43e85723d073bf56aaf1c3ed /proto/common.proto
parente9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 (diff)
downloadlingo2-archipelago-3c26cedd030c464e3b8a5576a98c19eb45134658.tar.gz
lingo2-archipelago-3c26cedd030c464e3b8a5576a98c19eb45134658.tar.bz2
lingo2-archipelago-3c26cedd030c464e3b8a5576a98c19eb45134658.zip
Process the rest of the defined protos
Diffstat (limited to 'proto/common.proto')
-rw-r--r--proto/common.proto18
1 files changed, 17 insertions, 1 deletions
diff --git a/proto/common.proto b/proto/common.proto index eb1d6b5..a066cae 100644 --- a/proto/common.proto +++ b/proto/common.proto
@@ -8,6 +8,22 @@ message Proxy {
8} 8}
9 9
10message Letter { 10message Letter {
11 string letter = 1; 11 string key = 1;
12 bool double = 2; 12 bool double = 2;
13} 13}
14
15enum DoorType {
16 DOOR_TYPE_UNKNOWN = 0;
17
18 // This door is a location unless panelsanity is on, and it is an item as long as door shuffle is on.
19 STANDARD = 1;
20
21 // This door is never an item or a location.
22 EVENT = 2;
23
24 // This door is never a location, and is an item as long as door shuffle is on.
25 ITEM_ONLY = 3;
26
27 // This door is never a location, and is an item as long as control center color shuffle is on.
28 CONTROL_CENTER_COLOR = 4;
29}