-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaps.py
657 lines (612 loc) · 83.9 KB
/
maps.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
import enemies
global player_cords
global player_tracking
player_cords = [9,15]
# player_cords = [9,18]
player_tracking = [
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],["Player"],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],
]
# R = Recruit
# T = Talk
# N = Talk (Not person)
# C = Chest
# D = Door
# S = Shop
# H = Healing
# B = Boss
# W = Warp
# L = Landing
List_of_All_Maps = []
global castle_map
castle_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["C04"],["---"],["T03"],["000"],["T04"],["---"],["C03"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["C02"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["C01"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["T05"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["T02"],["000"],["---"],["---"],["Q01"],["---"],["---"],["000"],["R01"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(castle_map)
castle_town_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["Pn1"],["n00"],["n00"],["Tn8"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["Tn7"],["n00"],["Sn2"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["Tn2"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["n00"],["n00"],["n00"],["Rn1"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["Nn3"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["T05"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["T03"],["000"],["D02"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["n00"],["---"],["000"],["---"],["D03"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["n00"],["Hn1"],["Nn1"],["000"],["---"],["---"],["---"],["T01"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["n00"],["---"],["T04"],["---"],["000"],["---"],["000"],["---"],["Nn2"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["000"],["000"],["000"],["000"],["T06"],["000"],["000"],["---"],["n00"],["Sn1"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["C01"],["---"],["---"],["D01"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["C02"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(castle_town_map)
slime_forest_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["C01"],["---"],["D01"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["C04"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["D02"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["C03"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["000"],["---"],["F01"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["N02"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["000"],["C05"],["---"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["Rn1"],["n00"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["n00"],["n00"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["---"],["Nn1"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["C02"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(slime_forest_map)
slime_forest_map2 = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["C05"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["F01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["N01"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["H01"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["_01"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["E01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["_01"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"]],##
[["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["C03"],["---"],["---"],["000"],["000"],["C01"],["---"],["000"],["---"],["---"],["---"]],##
[["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["_01"],["---"],["000"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"]],##
[["---"],["---"],["000"],["---"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"]],##
[["---"],["---"],["000"],["C04"],["---"],["---"],["000"],["000"],["---"],["D01"],["---"],["000"],["000"],["000"],["000"],["---"],["C02"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(slime_forest_map2)
passway_village_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D03"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["T01"],["---"],["Sn2"],["Sn3"],["Sn4"],["Qn1"],["Tn1"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["Nn3"],["n00"],["n00"],["n00"],["n00"],["n00"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["Pn1"],["Qn2"],["Qn3"],["Tn2"],["n00"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["D02"],["000"],["000"],["000"],["000"],["000"],["T02"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["Nn1"],["---"],["000"],["000"],["---"],["n00"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["000"],["Nn2"],["Hn1"],["n00"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["n00"],["n00"],["Rn1"],["---"],["N99"],["---"],["n00"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["n00"],["Sn1"],["n00"],["---"],["D01"],["---"],["---"],["R02"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(passway_village_map)
ruins_of_time_map1 = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["E02"],["000"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["C02"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["_03"],["---"],["---"],["000"],["_01"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["000"],["000"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["Tn3"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["Sn1"],["n00"],["Tn5"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["E04"],["---"],["000"],["---"],["---"],["000"],["_04"],["D02"],["_03"],["000"],["N01"],["n00"],["n00"],["n00"],["n00"],["n00"],["Dn1"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["n00"],["Tn1"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["E03"],["---"],["_04"],["000"],["000"],["_04"],["C05"],["---"],["---"],["000"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["C01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["_02"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["C03"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["E01"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["Nn2"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["En1"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["n00"],["n00"],["n00"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["n00"],["Sn3"],["n00"],["Sn2"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["n00"],["n00"],["Cn1"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(ruins_of_time_map1)
ruins_of_time_map2 = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["_02"],["C01"],["E02"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["C03"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["C06"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["C02"],["---"],["---"],["_01"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["N01"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["F01"],["n00"],["---"],["000"],["---"],["000"],["000"],["---"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["C09"],["---"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["---"],["C04"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["E01"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["C05"],["---"],["_01"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["C07"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["H01"],["000"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(ruins_of_time_map2)
bandit_road_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["C04"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["F01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["N01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["C01"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["R01"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["---"],["E02"],["---"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["_02"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["000"],["000"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["E01"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["---"],["000"],["000"],["---"],["_01"],["---"],["000"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["C02"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["C03"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(bandit_road_map)
guardian_village_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["Q01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["n00"],["Sn1"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["Tn1"],["Rn2"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["n00"],["n00"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["Tn2"],["Tn5"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["Nn1"],["---"],["---"],["---"],["000"],["T01"],["000"],["---"],["---"],["---"],["---"],["Tn3"],["Tn6"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["Q02"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["Tn4"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["Nn3"],["n00"],["Tn0"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["---"],["---"],["Nn2"],["---"],["---"],["---"],["---"],["Pn1"],["n00"],["Tn7"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["---"],["n00"],["n00"],["---"],["n00"],["n00"],["---"],["Tn8"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["---"],["n00"],["Hn1"],["n00"],["n00"],["Rn1"],["---"],["n00"],["Sn2"],["Tn9"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["D01"],["---"],["n00"],["n00"],["---"],["n00"],["Sn3"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(guardian_village_map)
metalimnion_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D02"],["---"],["D03"],["---"],["Q01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["T01"],["T03"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["S01"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["T02"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["En1"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["Sn1"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(metalimnion_map)
# w = warp to W
# W = warp to w
# s = send to r
# r = receive from s
ricefield_realm_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["s01"],["000"],["000"],["C01"],["---"],["000"],["W02"],["---"],["---"],["s04"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["E01"],["000"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["000"],["H01"],["000"],["---"],["r02"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["w01"],["---"],["000"],["000"],["---"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["---"],["000"],["---"],["W01"],["---"],["000"],["---"],["w03"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["w02"],["---"],["000"],["---"],["000"],["000"],["r05"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["Wn4"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["000"],["---"],["n00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["Cn3"],["n00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["D01"],["000"],["000"],["---"],["000"],["000"],["---"],["Nn2"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["wn5"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["r04"],["---"],["000"],["H01"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["r01"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["s02"],["---"],["s03"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["C02"],["---"],["s05"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["_01"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["W03"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["r03"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["Hn1"],["n00"],["n00"],["---"],["---"],["---"],["Wn5"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["Nn1"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["---"],["n00"],["n00"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["Fn1"],["---"],["---"],["n00"],["Sn1"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["n00"],["---"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["wn4"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(ricefield_realm_map)
# w = warp to W
# W = warp to w
# s = send to r
# r = receive from s
# - = inactive barrier
# _ = active barrier
labyrinth_of_binding_a1_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["s03"],["-00"],["---"],["r02"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["_01"],["---"],["---"],["---"],["T01"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["C01"],["_00"],["000"],["000"],["000"],["000"],["-00"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["w01"],["---"],["---"],["---"],["---"],["_00"],["---"],["000"],["000"],["000"],["---"],["---"],["-00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["_00"],["---"],["000"],["---"],["---"],["---"],["T01"],["000"],["_00"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["-00"],["000"],["000"],["---"],["-00"],["---"],["---"],["---"],["---"],["_00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["w02"],["---"],["-00"],["T01"],["-00"],["T01"],["-00"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["W01"],["000"],["---"],["000"],["_00"],["000"],["---"],["_00"],["---"],["-00"],["---"],["---"],["_00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["E03"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["-00"],["000"],["000"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["_00"],["---"],["-00"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["-01"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["_03"],["---"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["E02"],["---"],["_02"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["s04"],["000"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["s01"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["s02"],["---"],["-00"],["---"],["000"],["---"],["---"],["D02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["_00"],["---"],["000"],["---"],["000"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["_00"],["---"],["000"],["000"],["---"],["n00"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["000"],["000"],["---"],["000"],["---"],["n00"],["n00"],["H01"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["n00"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["_02"],["C02"],["---"],["000"],["---"],["---"],["_02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["W02"],["_01"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["n00"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["-00"],["000"],["000"],["-00"],["000"],["n00"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["-00"],["---"],["_01"],["---"],["---"],["---"],["n00"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["-00"],["r01"],["_00"],["E01"],["---"],["r03"],["n00"],["r04"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(labyrinth_of_binding_a1_map)
labyrinth_of_binding_a2_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["F01"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["T03"],["000"],["T04"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["T05"],["000"],["T06"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["N01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["T01"],["000"],["T02"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["T07"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(labyrinth_of_binding_a2_map)
labyrinth_of_binding_a3_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["C01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["F01"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["N01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["H01"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(labyrinth_of_binding_a3_map)
alter_realm_a1_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["E01"],["---"],["D01"],["---"],["000"],["000"],["000"],["---"],["000"],["000"],["E02"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["C01"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["_04"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["000"],["---"],["_03"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["_02"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["_01"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["N01"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["000"],["E03"],["---"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["Qn1"],["n00"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["n00"],["n00"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["---"],["---"],["n00"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["---"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["E04"],["000"],["000"],["---"],["---"],["---"]],
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(alter_realm_a1_map)
final_area_map = [
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["F01"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["N01"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["T01"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["---"],["000"],["---"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["000"],["000"],["000"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["D01"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],#
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],##
[["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"],["---"]],###
]
List_of_All_Maps.append(final_area_map)
List_of_All_Locations = []
Bieace_Castle = ["Bieace Castle", castle_map, "stone", "brown","bieace_castle",False,[],0,[0,["no eco",0],[0,0,0,0,0]],"brown","safe"]
List_of_All_Locations.append(Bieace_Castle)
Bieace_Castle_Town = ["Bieace Castle Town", castle_town_map, "stone", "green","bieace_castle_town",False,[],0,[100.00,["Neutral",1],[95.23,94.21,93.43,95.32,98.56]],"brown","safe"]
List_of_All_Locations.append(Bieace_Castle_Town)
Slime_Forest = ["Slime Forest A1", slime_forest_map, "stone", "dark_green","slime_forest",True,[enemies.sf1_encounter1,enemies.sf1_encounter2,enemies.sf1_encounter3],5,[0,["no eco",0],[0,0,0,0,0]],"brown","dangerous"]
List_of_All_Locations.append(Slime_Forest)
Slime_Forest2 = ["Slime Forest A2", slime_forest_map2, "stone", "dark_green","slime_forest2",True,[enemies.sf2_encounter1,enemies.sf2_encounter2,enemies.sf2_encounter3],5,[0,["no eco",0],[0,0,0,0,0]],"dark_green","dangerous"]
List_of_All_Locations.append(Slime_Forest2)
Passway_Village = ["Passway Village", passway_village_map, "stone", "green","passway_village",False,[],0,[100.00,["Neutral",1],[95.23,94.21,93.43,95.32,98.56]],"brown","safe"]
List_of_All_Locations.append(Passway_Village)
# Ruins_of_Time1 = ["Ruins of Time A1", ruins_of_time_map1, "stone", "ruins","ruins_of_time1",True,[enemies.rot1_encounter1,enemies.rot1_encounter2],2,[100,["Neutral",1],[95.23,94.21,93.43,95.32,98.56]],"green"]
Ruins_of_Time1 = ["Ruins of Time A1", ruins_of_time_map1, "stone", "ruins","ruins_of_time1",True,[enemies.rot1_encounter1,enemies.rot1_encounter2],2,[100,["Neutral",1],[95.23,94.21,93.43,95.32,98.56]],"green","dangerous"]
List_of_All_Locations.append(Ruins_of_Time1)
Ruins_of_Time2 = ["Ruins of Time A2", ruins_of_time_map2, "stone", "ruins","ruins_of_time2",True,[enemies.rot2_encounter1,enemies.rot2_encounter2,enemies.rot2_encounter3],2,[0,["no eco",0],[0,0,0,0,0]],"brown","dangerous"]
List_of_All_Locations.append(Ruins_of_Time2)
Bandit_Road = ["Bandit Road", bandit_road_map, "stone", "lightgrey","bandit_road",True,[enemies.br_encounter3],5,[0,["no eco",0],[0,0,0,0,0]],"lightgrey","dangerous"]
List_of_All_Locations.append(Bandit_Road)
Guardian_Village = ["Guardian Village", guardian_village_map, "stone", "green","guardian_village",False,[],0,[100.00,["Neutral",1],[95.23,94.21,93.43,95.32,98.56]],"brown","safe"]
List_of_All_Locations.append(Guardian_Village)
Metalimnion = ["Metalimnion", metalimnion_map, "stone", "magic1","metalimnion",False,[],0,[100.00,["Rising",1],[95.23,94.21,93.43,95.32,98.56]],"brown","safe"]
List_of_All_Locations.append(Metalimnion)
Ricefield_Realm = ["Ricefield Realm", ricefield_realm_map, "stone", "dark_green","ricefield_realm",True,[enemies.rr_encounter1,enemies.rr_encounter2,enemies.rr_encounter3],2,[0,["no eco",0],[0,0,0,0,0]],"brown","dangerous"]
List_of_All_Locations.append(Ricefield_Realm)
Labyrinth_of_Binding_A1 = ["Labyrinth of Binding A1", labyrinth_of_binding_a1_map, "stone", "magic2","labyrinth_of_binding_a1",True,[enemies.lob_encounter1,enemies.lob_encounter2],2,[0,["no eco",0],[0,0,0,0,0]],"magic2","dangerous"]
List_of_All_Locations.append(Labyrinth_of_Binding_A1)
Labyrinth_of_Binding_A2 = ["Labyrinth of Binding A2", labyrinth_of_binding_a2_map, "stone", "magic2","labyrinth_of_binding_a2",False,[],0,[0,["no eco",0],[0,0,0,0,0]],"magic2","dangerous"]
List_of_All_Locations.append(Labyrinth_of_Binding_A2)
Labyrinth_of_Binding_A3 = ["Labyrinth of Binding A3", labyrinth_of_binding_a3_map, "stone", "magic2","labyrinth_of_binding_a3",False,[],0,[0,["no eco",0],[0,0,0,0,0]],"magic2","dangerous"]
List_of_All_Locations.append(Labyrinth_of_Binding_A3)
Alter_Realm = ["Alter Realm", alter_realm_a1_map, "stone", "alter2","alter_realm",True,[enemies.ar_encounter1,enemies.ar_encounter2,enemies.ar_encounter3],3,[0,["no eco",0],[0,0,0,0,0]],"alter2","dangerous"]
List_of_All_Locations.append(Alter_Realm)
Final_Area = ["?????", final_area_map, "stone", "new_link_area","final_area",False,[],0,[0,["no eco",0],[0,0,0,0,0]],"new_link_area","dangerous"]
List_of_All_Locations.append(Alter_Realm)
current_location = Bieace_Castle
# current_location = Passway_Village
current_tile = "000"
def print_player_cords():
global player_tracking
global player_cords
x_cord = 0
y_cord = 0
contains_player = False
for row in player_tracking:
for location in row:
if "player" in location:
contains_player = True
player_cords = [x_cord,y_cord]
else:
x_cord += 1
if contains_player == False:
x_cord = 0
y_cord += 1
print(player_cords)
def return_player_cords():
global player_tracking
global player_cords
x_cord = 0
y_cord = 0
contains_player = False
for row in player_tracking:
for location in row:
if "player" in location:
contains_player = True
player_cords = [x_cord,y_cord]
else:
x_cord += 1
if contains_player == False:
x_cord = 0
y_cord += 1
print(player_cords)
return(player_cords)
def check_tile_on():
global current_tile
current_tile = current_location[1][player_cords[1]][player_cords[0]][0]
print(current_tile)
def return_tile_on():
global current_tile
current_tile = current_location[1][player_cords[1]][player_cords[0]][0]
return(current_tile)
def move_player(down,right):
global player_cords
global player_tracking
print("before:",player_tracking[player_cords[1]][player_cords[0]])
player_tracking[player_cords[1]][player_cords[0]] = [""]
print("after:",player_tracking[player_cords[1]][player_cords[0]])
player_tracking[player_cords[1]+down][player_cords[0]+right] = ["player"]
print_player_cords()
check_tile_on()
# print_player_cords()
# check_tile_on()