summary refs log tree commit diff stats
path: root/proto/human.proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-09 09:45:29 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-09 09:45:29 -0400
commita1bad926c17d334bd81fef47043545f601ec8329 (patch)
tree928cf5ed1071d379d13b45549e3ae65b9e1ed66a /proto/human.proto
parent9240e7e7a81072e561f969aff375d979cf2112e8 (diff)
downloadlingo2-archipelago-a1bad926c17d334bd81fef47043545f601ec8329.tar.gz
lingo2-archipelago-a1bad926c17d334bd81fef47043545f601ec8329.tar.bz2
lingo2-archipelago-a1bad926c17d334bd81fef47043545f601ec8329.zip
Added the_between
Diffstat (limited to 'proto/human.proto')
-rw-r--r--proto/human.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/proto/human.proto b/proto/human.proto index e8da304..3352518 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -67,7 +67,13 @@ message HumanDoor {
67 repeated string receivers = 2; 67 repeated string receivers = 2;
68 repeated PaintingIdentifier move_paintings = 8; 68 repeated PaintingIdentifier move_paintings = 8;
69 69
70 // The set of panels that must be solved to open this door.
70 repeated PanelIdentifier panels = 3; 71 repeated PanelIdentifier panels = 3;
72
73 // If set, the number of panels from the above set that need to be solved.
74 // Warning: this is a messy kind of OR logic! Consider if there's another way.
75 uint64 complete_at = 9;
76
71 string control_center_color = 6; 77 string control_center_color = 6;
72 repeated string switches = 7; 78 repeated string switches = 7;
73 79