diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-20 15:03:18 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-20 15:03:18 -0400 |
commit | d77c73397b684faa55f0e95484ac89ca68bde1ad (patch) | |
tree | 84fd35d342b69a9765d8f94473b56998d26e323d /proto/human.proto | |
parent | 53ad8e2f3e5fcf9cf9d5d4628498557e0f5500e8 (diff) | |
download | lingo2-archipelago-d77c73397b684faa55f0e95484ac89ca68bde1ad.tar.gz lingo2-archipelago-d77c73397b684faa55f0e95484ac89ca68bde1ad.tar.bz2 lingo2-archipelago-d77c73397b684faa55f0e95484ac89ca68bde1ad.zip |
Added "endings" object type
Diffstat (limited to 'proto/human.proto')
-rw-r--r-- | proto/human.proto | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/proto/human.proto b/proto/human.proto index 6cec66d..d52a0ad 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
@@ -151,6 +151,11 @@ message HumanMastery { | |||
151 | optional string path = 2; | 151 | optional string path = 2; |
152 | } | 152 | } |
153 | 153 | ||
154 | message HumanEnding { | ||
155 | optional string name = 1; | ||
156 | optional string path = 2; | ||
157 | } | ||
158 | |||
154 | message HumanRoom { | 159 | message HumanRoom { |
155 | optional string name = 1; | 160 | optional string name = 1; |
156 | optional string display_name = 2; | 161 | optional string display_name = 2; |
@@ -161,6 +166,7 @@ message HumanRoom { | |||
161 | repeated HumanPort ports = 6; | 166 | repeated HumanPort ports = 6; |
162 | repeated HumanKeyholder keyholders = 7; | 167 | repeated HumanKeyholder keyholders = 7; |
163 | repeated HumanMastery masteries = 8; | 168 | repeated HumanMastery masteries = 8; |
169 | repeated HumanEnding endings = 9; | ||
164 | } | 170 | } |
165 | 171 | ||
166 | message HumanMap { | 172 | message HumanMap { |
@@ -182,4 +188,5 @@ message IdMappings { | |||
182 | map<string, MapIds> maps = 1; | 188 | map<string, MapIds> maps = 1; |
183 | map<string, uint64> special = 2; | 189 | map<string, uint64> special = 2; |
184 | map<string, uint64> letters = 3; | 190 | map<string, uint64> letters = 3; |
191 | map<string, uint64> endings = 4; | ||
185 | } | 192 | } |