summary refs log tree commit diff stats
path: root/proto/data.proto
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-09 11:51:20 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-09 11:51:20 -0400
commit9ca8681ca5f134d65eaa4b5ae68d57ba67fe98d6 (patch)
tree6d58ffe2e9a60eac681b22b0cb0bd03baf74990c /proto/data.proto
parent3fcc676cd3b9b3b24a8755612a459d498879b1df (diff)
downloadlingo2-archipelago-9ca8681ca5f134d65eaa4b5ae68d57ba67fe98d6.tar.gz
lingo2-archipelago-9ca8681ca5f134d65eaa4b5ae68d57ba67fe98d6.tar.bz2
lingo2-archipelago-9ca8681ca5f134d65eaa4b5ae68d57ba67fe98d6.zip
Added support for masteries
Also assigned IDs for the_butterfly, as well as already configured
letters.
Diffstat (limited to 'proto/data.proto')
-rw-r--r--proto/data.proto25
1 files changed, 24 insertions, 1 deletions
diff --git a/proto/data.proto b/proto/data.proto index bd8cdc3..dd7a2a3 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -83,6 +83,26 @@ message Port {
83 uint64 required_door = 6; 83 uint64 required_door = 6;
84} 84}
85 85
86message Letter {
87 uint64 id = 3;
88 uint64 ap_id = 5;
89 uint64 room_id = 4;
90
91 string key = 1;
92 bool double = 2;
93
94 string path = 6;
95}
96
97message Mastery {
98 uint64 id = 1;
99 uint64 ap_id = 2;
100 uint64 room_id = 3;
101
102 string name = 4;
103 string path = 5;
104}
105
86message Room { 106message Room {
87 uint64 id = 1; 107 uint64 id = 1;
88 uint64 map_id = 8; 108 uint64 map_id = 8;
@@ -91,9 +111,10 @@ message Room {
91 111
92 repeated uint64 panels = 4; 112 repeated uint64 panels = 4;
93 repeated uint64 paintings = 5; 113 repeated uint64 paintings = 5;
94 repeated Letter letters = 6; 114 repeated uint64 letters = 6;
95 repeated uint64 ports = 7; 115 repeated uint64 ports = 7;
96 repeated uint64 doors = 9; 116 repeated uint64 doors = 9;
117 repeated uint64 masteries = 10;
97} 118}
98 119
99message Map { 120message Map {
@@ -108,6 +129,8 @@ message AllObjects {
108 repeated Panel panels = 3; 129 repeated Panel panels = 3;
109 repeated Painting paintings = 4; 130 repeated Painting paintings = 4;
110 repeated Port ports = 5; 131 repeated Port ports = 5;
132 repeated Letter letters = 9;
133 repeated Mastery masteries = 10;
111 repeated Connection connections = 6; 134 repeated Connection connections = 6;
112 map<string, uint64> special_ids = 8; 135 map<string, uint64> special_ids = 8;
113} 136}