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 10:58:45 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-09 10:58:45 -0400
commit3fcc676cd3b9b3b24a8755612a459d498879b1df (patch)
tree3b94528d182fef58befbca1fa58956b90ef98d8f /proto/human.proto
parent4db9ccf6adc4c90b5899a2bf8bf4c47a7392004b (diff)
downloadlingo2-archipelago-3fcc676cd3b9b3b24a8755612a459d498879b1df.tar.gz
lingo2-archipelago-3fcc676cd3b9b3b24a8755612a459d498879b1df.tar.bz2
lingo2-archipelago-3fcc676cd3b9b3b24a8755612a459d498879b1df.zip
Added the_butterfly
The proto representation of letters has changed, so the C++ tools need to be updated.
Diffstat (limited to 'proto/human.proto')
-rw-r--r--proto/human.proto15
1 files changed, 14 insertions, 1 deletions
diff --git a/proto/human.proto b/proto/human.proto index 3352518..88aca38 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -126,15 +126,28 @@ message HumanKeyholder {
126 string path = 2; 126 string path = 2;
127} 127}
128 128
129message HumanLetter {
130 string key = 1;
131 bool double = 2;
132
133 string path = 3;
134}
135
136message HumanMastery {
137 string name = 1;
138 string path = 2;
139}
140
129message HumanRoom { 141message HumanRoom {
130 string name = 1; 142 string name = 1;
131 string display_name = 2; 143 string display_name = 2;
132 144
133 repeated HumanPanel panels = 3; 145 repeated HumanPanel panels = 3;
134 repeated HumanPainting paintings = 4; 146 repeated HumanPainting paintings = 4;
135 repeated Letter letters = 5; 147 repeated HumanLetter letters = 5;
136 repeated HumanPort ports = 6; 148 repeated HumanPort ports = 6;
137 repeated HumanKeyholder keyholders = 7; 149 repeated HumanKeyholder keyholders = 7;
150 repeated HumanMastery masteries = 8;
138} 151}
139 152
140message IdMappings { 153message IdMappings {