summary refs log tree commit diff stats
path: root/proto
diff options
context:
space:
mode:
Diffstat (limited to '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 {