1
+ from typing import List , Dict
2
+
3
+
4
+ region_exit_table : Dict [str , List [str ]] = {
5
+ "menu" : ["New Game" ],
6
+
7
+ "albero" : ["To The Holy Line" ,
8
+ "To Desecrated Cistern" ,
9
+ "To Wasteland of the Buried Churches" ,
10
+ "To Dungeons" ],
11
+
12
+ "attots" : ["To Mother of Mothers" ],
13
+
14
+ "ar" : ["To Mother of Mothers" ,
15
+ "To Wall of the Holy Prohibitions" ,
16
+ "To Deambulatory of His Holiness" ],
17
+
18
+ "bottc" : ["To Wasteland of the Buried Churches" ,
19
+ "To Ferrous Tree" ],
20
+
21
+ "botss" : ["To The Holy Line" ,
22
+ "To Mountains of the Endless Dusk" ],
23
+
24
+ "coolotcv" : ["To Graveyard of the Peaks" ,
25
+ "To Wall of the Holy Prohibitions" ],
26
+
27
+ "dohh" : ["To Archcathedral Rooftops" ],
28
+
29
+ "dc" : ["To Albero" ,
30
+ "To Mercy Dreams" ,
31
+ "To Mountains of the Endless Dusk" ,
32
+ "To Echoes of Salt" ,
33
+ "To Grievance Ascends" ],
34
+
35
+ "eos" : ["To Jondo" ,
36
+ "To Mountains of the Endless Dusk" ,
37
+ "To Desecrated Cistern" ,
38
+ "To The Resting Place of the Sister" ,
39
+ "To Mourning and Havoc" ],
40
+
41
+ "ft" : ["To Bridge of the Three Cavalries" ,
42
+ "To Hall of the Dawning" ,
43
+ "To Patio of the Silent Steps" ],
44
+
45
+ "gotp" : ["To Where Olive Trees Wither" ,
46
+ "To Convent of Our Lady of the Charred Visage" ],
47
+
48
+ "ga" : ["To Jondo" ,
49
+ "To Desecrated Cistern" ],
50
+
51
+ "hotd" : ["To Ferrous Tree" ],
52
+
53
+ "jondo" : ["To Mountains of the Endless Dusk" ,
54
+ "To Grievance Ascends" ],
55
+
56
+ "kottw" : ["To Mother of Mothers" ],
57
+
58
+ "lotnw" : ["To Mother of Mothers" ,
59
+ "To The Sleeping Canvases" ],
60
+
61
+ "md" : ["To Wasteland of the Buried Churches" ,
62
+ "To Desecrated Cistern" ,
63
+ "To The Sleeping Canvases" ],
64
+
65
+ "mom" : ["To Patio of the Silent Steps" ,
66
+ "To Archcathedral Rooftops" ,
67
+ "To Knot of the Three Words" ,
68
+ "To Library of the Negated Words" ,
69
+ "To All the Tears of the Sea" ],
70
+
71
+ "moted" : ["To Brotherhood of the Silent Sorrow" ,
72
+ "To Jondo" ,
73
+ "To Desecrated Cistern" ],
74
+
75
+ "mah" : ["To Echoes of Salt" ,
76
+ "To Mother of Mothers" ],
77
+
78
+ "potss" : ["To Ferrous Tree" ,
79
+ "To Mother of Mothers" ,
80
+ "To Wall of the Holy Prohibitions" ],
81
+
82
+ "petrous" : ["To The Holy Line" ],
83
+
84
+ "thl" : ["To Brotherhood of the Silent Sorrow" ,
85
+ "To Petrous" ,
86
+ "To Albero" ],
87
+
88
+ "trpots" : ["To Echoes of Salt" ],
89
+
90
+ "tsc" : ["To Library of the Negated Words" ,
91
+ "To Mercy Dreams" ],
92
+
93
+ "wothp" : ["To Archcathedral Rooftops" ,
94
+ "To Convent of Our Lady of the Charred Visage" ],
95
+
96
+ "wotbc" : ["To Albero" ,
97
+ "To Where Olive Trees Wither" ,
98
+ "To Mercy Dreams" ],
99
+
100
+ "wotw" : ["To Wasteland of the Buried Churches" ,
101
+ "To Graveyard of the Peaks" ]
102
+ }
103
+
104
+ exit_lookup_table : Dict [str , str ] = {
105
+ "New Game" : "botss" ,
106
+ "To Albero" : "albero" ,
107
+ "To All the Tears of the Sea" : "attots" ,
108
+ "To Archcathedral Rooftops" : "ar" ,
109
+ "To Bridge of the Three Cavalries" : "bottc" ,
110
+ "To Brotherhood of the Silent Sorrow" : "botss" ,
111
+ "To Convent of Our Lady of the Charred Visage" : "coolotcv" ,
112
+ "To Deambulatory of His Holiness" : "dohh" ,
113
+ "To Desecrated Cistern" : "dc" ,
114
+ "To Echoes of Salt" : "eos" ,
115
+ "To Ferrous Tree" : "ft" ,
116
+ "To Graveyard of the Peaks" : "gotp" ,
117
+ "To Grievance Ascends" : "ga" ,
118
+ "To Hall of the Dawning" : "hotd" ,
119
+ "To Jondo" : "jondo" ,
120
+ "To Knot of the Three Words" : "kottw" ,
121
+ "To Library of the Negated Words" : "lotnw" ,
122
+ "To Mercy Dreams" : "md" ,
123
+ "To Mother of Mothers" : "mom" ,
124
+ "To Mountains of the Endless Dusk" : "moted" ,
125
+ "To Mourning and Havoc" : "mah" ,
126
+ "To Patio of the Silent Steps" : "potss" ,
127
+ "To Petrous" : "petrous" ,
128
+ "To The Holy Line" : "thl" ,
129
+ "To The Resting Place of the Sister" : "trpots" ,
130
+ "To The Sleeping Canvases" : "tsc" ,
131
+ "To Wall of the Holy Prohibitions" : "wothp" ,
132
+ "To Wasteland of the Buried Churches" : "wotbc" ,
133
+ "To Where Olive Trees Wither" : "wotw" ,
134
+ "To Dungeons" : "dungeon"
135
+ }
0 commit comments