diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 14:28:56 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-07 14:28:56 -0400 |
| commit | 3c26cedd030c464e3b8a5576a98c19eb45134658 (patch) | |
| tree | b2a9dcda18dfd39c43e85723d073bf56aaf1c3ed /proto/common.proto | |
| parent | e9d9da34e86a1e5f0de155bf9086d3e5ff6b2da0 (diff) | |
| download | lingo2-archipelago-3c26cedd030c464e3b8a5576a98c19eb45134658.tar.gz lingo2-archipelago-3c26cedd030c464e3b8a5576a98c19eb45134658.tar.bz2 lingo2-archipelago-3c26cedd030c464e3b8a5576a98c19eb45134658.zip | |
Process the rest of the defined protos
Diffstat (limited to 'proto/common.proto')
| -rw-r--r-- | proto/common.proto | 18 |
1 files changed, 17 insertions, 1 deletions
| diff --git a/proto/common.proto b/proto/common.proto index eb1d6b5..a066cae 100644 --- a/proto/common.proto +++ b/proto/common.proto | |||
| @@ -8,6 +8,22 @@ message Proxy { | |||
| 8 | } | 8 | } |
| 9 | 9 | ||
| 10 | message Letter { | 10 | message Letter { |
| 11 | string letter = 1; | 11 | string key = 1; |
| 12 | bool double = 2; | 12 | bool double = 2; |
| 13 | } | 13 | } |
| 14 | |||
| 15 | enum DoorType { | ||
| 16 | DOOR_TYPE_UNKNOWN = 0; | ||
| 17 | |||
| 18 | // This door is a location unless panelsanity is on, and it is an item as long as door shuffle is on. | ||
| 19 | STANDARD = 1; | ||
| 20 | |||
| 21 | // This door is never an item or a location. | ||
| 22 | EVENT = 2; | ||
| 23 | |||
| 24 | // This door is never a location, and is an item as long as door shuffle is on. | ||
| 25 | ITEM_ONLY = 3; | ||
| 26 | |||
| 27 | // This door is never a location, and is an item as long as control center color shuffle is on. | ||
| 28 | CONTROL_CENTER_COLOR = 4; | ||
| 29 | } | ||
