summary refs log tree commit diff stats
path: root/proto/human.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/human.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/human.proto')
-rw-r--r--proto/human.proto19
1 files changed, 1 insertions, 18 deletions
diff --git a/proto/human.proto b/proto/human.proto index cdbb8b9..49eaccd 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -62,22 +62,6 @@ message HumanConnections {
62} 62}
63 63
64message HumanDoor { 64message HumanDoor {
65 enum DoorType {
66 DOOR_TYPE_UNKNOWN = 0;
67
68 // This door is a location unless panelsanity is on, and it is an item as long as door shuffle is on.
69 STANDARD = 1;
70
71 // This door is never an item or a location.
72 EVENT = 2;
73
74 // This door is never a location, and is an item as long as door shuffle is on.
75 ITEM_ONLY = 3;
76
77 // This door is never a location, and is an item as long as control center color shuffle is on.
78 CONTROL_CENTER_COLOR = 4;
79 }
80
81 string name = 1; 65 string name = 1;
82 66
83 repeated string receivers = 2; 67 repeated string receivers = 2;
@@ -87,8 +71,7 @@ message HumanDoor {
87 string control_center_color = 6; 71 string control_center_color = 6;
88 repeated string switches = 7; 72 repeated string switches = 7;
89 73
90 repeated string location_tags = 4; 74 DoorType type = 4;
91 repeated string item_tags = 5;
92} 75}
93 76
94message HumanDoors { 77message HumanDoors {