about summary refs log tree commit diff stats
path: root/data/maps/the_symbolic/rooms
Commit message (Expand)AuthorAgeFilesLines
* [Data] Made proxies with the same answer as the panel explicitStar Rauchenberger2025-08-305-7/+7
* Added the_symbolicStar Rauchenberger2025-08-2523-0/+983
/pre>
3c26ced ^















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29









                                          
                 

                  















                                                                                                       
edition = "2023";

package com.fourisland.lingo2_archipelago;

message Proxy {
  string answer = 1;
  string path = 2;
}

message Letter {
  string key = 1;
  bool double = 2;
}

enum DoorType {
  DOOR_TYPE_UNKNOWN = 0;

  // This door is a location unless panelsanity is on, and it is an item as long as door shuffle is on.
  STANDARD = 1;

  // This door is never an item or a location.
  EVENT = 2;

  // This door is never a location, and is an item as long as door shuffle is on.
  ITEM_ONLY = 3;

  // This door is never a location, and is an item as long as control center color shuffle is on.
  CONTROL_CENTER_COLOR = 4;
}