summary refs log tree commit diff stats
path: root/proto/common.proto
diff options
context:
space:
mode:
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}