about summary refs log tree commit diff stats
path: root/proto/data.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/data.proto')
-rw-r--r--proto/data.proto5
1 files changed, 5 insertions, 0 deletions
diff --git a/proto/data.proto b/proto/data.proto index be18100..d68c5c9 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -30,6 +30,9 @@ enum DoorType {
30 30
31 // This door is never a location, and is an item as long as gallery painting shuffle is on. 31 // This door is never a location, and is an item as long as gallery painting shuffle is on.
32 GALLERY_PAINTING = 7; 32 GALLERY_PAINTING = 7;
33
34 // This location is not added to new worlds, but the client can send it out for backwards compataibility purposes.
35 LEGACY_LOCATION = 8;
33} 36}
34 37
35enum DoorGroupType { 38enum DoorGroupType {
@@ -56,6 +59,7 @@ enum MapType {
56 NORMAL_MAP = 0; 59 NORMAL_MAP = 0;
57 ICARUS = 1; 60 ICARUS = 1;
58 GIFT_MAP = 2; 61 GIFT_MAP = 2;
62 DEMO = 3;
59} 63}
60 64
61enum AxisDirection { 65enum AxisDirection {
@@ -197,6 +201,7 @@ message PaintingData {
197 201
198message Port { 202message Port {
199 optional uint64 id = 1; 203 optional uint64 id = 1;
204 optional uint64 ap_id = 11;
200 optional uint64 room_id = 2; 205 optional uint64 room_id = 2;
201 optional string name = 3; 206 optional string name = 3;
202 207