-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocations.py
1811 lines (1774 loc) · 117 KB
/
Locations.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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import typing
from BaseClasses import Location
class LocationData:
name: str = ""
id: int = 0
difficulty: int = 0
def __init__(self, name, id_, difficulty):
self.name = name
self.id = id_
self.difficulty = difficulty
class GLLocation(Location):
game: str = "Gauntlet Legends"
valley_of_fire: typing.List[LocationData] = [
LocationData("Valley of Fire - Scroll", 88870001, 1),
LocationData("Valley of Fire - Key 1", 88870002, 1),
LocationData("Valley of Fire - Key 2", 88870003, 1),
LocationData("Valley of Fire - Key 3 (Dif. 3)", 88870004, 3),
LocationData("Valley of Fire - Key 4", 88870005, 1),
LocationData("Valley of Fire - Fire Amulet", 88870006, 1),
LocationData("Valley of Fire - Key 5", 88870007, 1),
LocationData("Valley of Fire - Key 6 (Dif. 2)", 88870008, 2),
LocationData("Valley of Fire - Key 7", 88870009, 1),
LocationData("Valley of Fire - Fruit 1 (Dif. 2)", 88870010, 2),
LocationData("Valley of Fire - Key 8 (Dif. 3)", 88870011, 3),
LocationData("Valley of Fire - Key 9 (Dif. 2)", 88870012, 2),
LocationData("Valley of Fire - Fire Potion 1 (Dif. 3)", 88870013, 3),
LocationData("Valley of Fire - Thunder Hammer (Dif. 2)", 88870014, 2),
LocationData("Valley of Fire - Fire Potion 2 (Dif. 4)", 88870015, 4),
LocationData("Valley of Fire - Large Gold Pile (Dif. 3)", 88870016, 3),
LocationData("Valley of Fire - Small Gold Pile 1 (Dif. 4)", 88870017, 4),
LocationData("Valley of Fire - Meat Slab (Dif. 4)", 88870018, 4),
LocationData("Valley of Fire - Drumstick (Dif. 3)", 88870019, 3),
LocationData("Valley of Fire - Fruit 2 (Dif. 4)", 88870020, 4),
LocationData("Valley of Fire - Key 10", 88870021, 1),
LocationData("Valley of Fire - Small Gold Pile 2 (Dif. 2)", 88870022, 2),
LocationData("Valley of Fire - Obelisk", 88870611, 1),
LocationData("Valley of Fire Barrel - Nothing 1", 88873500, 1),
LocationData("Valley of Fire Chest - Meat 1 (Dif. 2)", 88873501, 2),
LocationData("Valley of Fire Chest - Potion 1", 88873502, 1),
LocationData("Valley of Fire Chest - Potion 2 (Dif. 2)", 88873503, 2),
LocationData("Valley of Fire Chest - Invisibility 1 (Dif. 3)", 88873504, 3),
LocationData("Valley of Fire Chest - Gold 1", 88873505, 1),
LocationData("Valley of Fire Chest - Random Chest 1 (Dif. 3)", 88873506, 3),
LocationData("Valley of Fire Chest - Gold 2", 88873507, 1),
LocationData("Valley of Fire Chest - Fruit 1", 88873508, 1),
LocationData("Valley of Fire Barrel - Nothing 2", 88873509, 1),
LocationData("Valley of Fire Barrel - Gold 1", 88873510, 1),
LocationData("Valley of Fire Barrel - Fruit 1 (Dif. 3)", 88873511, 3),
LocationData("Valley of Fire Chest - 3-Way Shot 1 (Dif. 4)", 88873512, 4),
LocationData("Valley of Fire Barrel - Nothing 3", 88873513, 1),
LocationData("Valley of Fire Barrel - Scroll 1", 88873514, 1),
LocationData("Valley of Fire Barrel - Nothing 4", 88873515, 1),
LocationData("Valley of Fire Barrel - Key 1 (Dif. 4)", 88873516, 4),
LocationData("Valley of Fire Barrel - Speed Boots 1", 88873517, 1),
LocationData("Valley of Fire Barrel - Fire Breath 1", 88873518, 1),
LocationData("Valley of Fire Barrel - Key 2", 88873519, 1),
LocationData("Valley of Fire Barrel - Potion 1", 88873520, 1),
]
dagger_peak: typing.List[LocationData] = [
LocationData("Dagger Peak - Growth", 88870023, 1),
LocationData("Dagger Peak - Runestone", 88870024, 1),
LocationData("Dagger Peak - Key 1", 88870025, 1),
LocationData("Dagger Peak - Speed Boots (Dif. 2)", 88870026, 2),
LocationData("Dagger Peak - Key 2", 88870027, 1),
LocationData("Dagger Peak - Key 3", 88870028, 1),
LocationData("Dagger Peak - Key 4 (Dif. 4)", 88870029, 4),
LocationData("Dagger Peak - Key 5 (Dif. 4)", 88870030, 4),
LocationData("Dagger Peak - Key 6 (Dif. 3)", 88870031, 3),
LocationData("Dagger Peak - Large Pile of Gold 1 (Dif. 2)", 88870032, 2),
LocationData("Dagger Peak - Large Pile of Gold 2 (Dif. 3)", 88870033, 3),
LocationData("Dagger Peak - Full Barrel of Gold 1 (Dif. 4)", 88870034, 4),
LocationData("Dagger Peak - Small Pile of Gold 1 (Dif. 2)", 88870035, 2),
LocationData("Dagger Peak - Small Pile of Gold 2 (Dif. 3)", 88870036, 3),
LocationData("Dagger Peak - Small Pile of Gold 3", 88870037, 1),
LocationData("Dagger Peak - Fire Potion 1", 88870038, 1),
LocationData("Dagger Peak - Fruit", 88870039, 1),
LocationData("Dagger Peak - Key 7 (Dif. 3)", 88870040, 3),
LocationData("Dagger Peak - Key 8 (Dif. 4)", 88870041, 4),
LocationData("Dagger Peak - Half Barrel of Gold 1 (Dif. 3)", 88870042, 3),
LocationData("Dagger Peak - Key 9 (Dif. 2)", 88870043, 2),
LocationData("Dagger Peak - Fire Potion 2 (Dif. 3)", 88870044, 3),
LocationData("Dagger Peak - Poison Fruit (Dif. 3)", 88870045, 3),
LocationData("Dagger Peak - Key 10", 88870046, 1),
LocationData("Dagger Peak - Key 11 (Dif. 3)", 88870047, 3),
LocationData("Dagger Peak - Key 12", 88870048, 1),
LocationData("Dagger Peak - Key 13", 88870049, 1),
LocationData("Dagger Peak - Key 14 (Dif. 2)", 88870050, 2),
LocationData("Dagger Peak - Fire Potion 3 (Dif. 2)", 88870051, 2),
LocationData("Dagger Peak - Meat 1 (Dif. 3)", 88870052, 3),
LocationData("Dagger Peak - Key 15", 88870053, 1),
LocationData("Dagger Peak - Key 16 (Dif. 2)", 88870054, 2),
LocationData("Dagger Peak - Key 17", 88870055, 1),
LocationData("Dagger Peak - Meat 2", 88870056, 1),
LocationData("Dagger Peak - Key 18 (Dif. 4)", 88870057, 4),
LocationData("Dagger Peak - Obelisk", 88870612, 1),
LocationData("Dagger Peak Barrel - Rapid Fire 1", 88873600, 1),
LocationData("Dagger Peak Barrel - Key 1", 88873601, 1),
LocationData("Dagger Peak Barrel - Levitate 1", 88873602, 1),
LocationData("Dagger Peak Barrel - Fire Amulet 1 (Dif. 2)", 88873603, 2),
LocationData("Dagger Peak Barrel - Death 1", 88873604, 1),
LocationData("Dagger Peak Barrel - Fire Shield 1 (Dif. 2)", 88873605, 2),
LocationData("Dagger Peak Barrel - Scroll 1", 88873606, 1),
LocationData("Dagger Peak Chest - Invulnerability 1 (Dif. 4)", 88873607, 4),
LocationData("Dagger Peak Chest - Gold 1", 88873608, 1),
LocationData("Dagger Peak Chest - Potion 1 (Dif. 4)", 88873609, 4),
LocationData("Dagger Peak Chest - Gold 2", 88873610, 1),
LocationData("Dagger Peak Barrel - Fruit 1 (Dif. 4)", 88873611, 4),
LocationData("Dagger Peak Barrel - Fruit 2", 88873612, 1),
LocationData("Dagger Peak Barrel - Fruit 3 (Dif. 2)", 88873613, 2),
LocationData("Dagger Peak Barrel - Poison Fruit 1", 88873614, 1),
LocationData("Dagger Peak Chest - Scroll 1", 88873615, 1),
LocationData("Dagger Peak Chest - Meat 1 (Dif. 2)", 88873616, 2),
LocationData("Dagger Peak Chest - Gold 3 (Dif. 2)", 88873617, 2),
LocationData("Dagger Peak Chest - 3-Way Shot 1", 88873618, 1),
LocationData("Dagger Peak Chest - Gold 4", 88873619, 1),
LocationData("Dagger Peak Chest - Gold 5 (Dif. 3)", 88873620, 3),
LocationData("Dagger Peak Chest - Random 1 (Dif. 2)", 88873621, 2),
LocationData("Dagger Peak Chest - Gold 6 (Dif. 4)", 88873622, 4),
LocationData("Dagger Peak Chest - Potion 2", 88873623, 1),
LocationData("Dagger Peak Chest - Death 1 (Dif. 3)", 88873624, 3),
LocationData("Dagger Peak Chest - Meat 2 (Dif. 4)", 88873625, 4),
LocationData("Dagger Peak Chest - Timestop 1 (Dif. 3)", 88873626, 3),
]
cliffs_of_desolation: typing.List[LocationData] = [
LocationData("Cliffs of Desolation - Scroll 1", 88870058, 1),
LocationData("Cliffs of Desolation - Reflective Shot (Dif. 4)", 88870059, 4),
LocationData("Cliffs of Desolation - Key 1 (Dif. 2)", 88870060, 2),
LocationData("Cliffs of Desolation - Key 2 (Dif. 3)", 88870061, 3),
LocationData("Cliffs of Desolation - Invisibility", 88870062, 1),
LocationData("Cliffs of Desolation - Fire Potion 1 (Dif. 3)", 88870063, 3),
LocationData("Cliffs of Desolation - Half Barrel of Gold 1 (Dif. 4)", 88870064, 4),
LocationData("Cliffs of Desolation - Invulnerability (Dif. 4)", 88870065, 4),
LocationData("Cliffs of Desolation - Rapid Fire (Dif. 3)", 88870066, 3),
LocationData("Cliffs of Desolation - Half Barrel of Gold 2 (Dif. 3)", 88870067, 3),
LocationData("Cliffs of Desolation - Large Pile of Gold 1", 88870068, 1),
LocationData("Cliffs of Desolation - Meat Slab 1", 88870069, 1),
LocationData("Cliffs of Desolation - Poison Fruit 1 (Dif. 4)", 88870070, 4),
LocationData("Cliffs of Desolation - Key 3 (Dif. 4)", 88870071, 4),
LocationData("Cliffs of Desolation - Key 4 (Dif. 3)", 88870072, 3),
LocationData("Cliffs of Desolation - Key 5 (Dif. 4)", 88870073, 4),
LocationData("Cliffs of Desolation - Key 6 (Dif. 2)", 88870074, 2),
LocationData("Cliffs of Desolation - Key 7", 88870075, 1),
LocationData("Cliffs of Desolation - Small Pile of Gold 1", 88870076, 1),
LocationData("Cliffs of Desolation - Small Pile of Gold 2 (Dif. 2)", 88870077, 2),
LocationData("Cliffs of Desolation - Key 8", 88870078, 1),
LocationData("Cliffs of Desolation - Key 9", 88870079, 1),
LocationData("Cliffs of Desolation - Key 10", 88870080, 1),
LocationData("Cliffs of Desolation - Key 11 (Dif. 2)", 88870081, 2),
LocationData("Cliffs of Desolation - Key 12 (Dif. 3)", 88870082, 3),
LocationData("Cliffs of Desolation - Key 13 (Dif. 3)", 88870083, 3),
LocationData("Cliffs of Desolation - Key 14", 88870084, 1),
LocationData("Cliffs of Desolation - Key 15", 88870085, 1),
LocationData("Cliffs of Desolation - Key 16", 88870086, 1),
LocationData("Cliffs of Desolation - Key 17", 88870087, 1),
LocationData("Cliffs of Desolation - Key 18 (Dif. 4)", 88870088, 4),
LocationData("Cliffs of Desolation - Key 19", 88870089, 1),
LocationData("Cliffs of Desolation - Key 20 (Dif. 2)", 88870090, 2),
LocationData("Cliffs of Desolation - Full Barrel of Gold 1 (Dif. 4)", 88870091, 4),
LocationData("Cliffs of Desolation - Key 21", 88870092, 1),
LocationData("Cliffs of Desolation - Key 22 (Dif. 4)", 88870093, 4),
LocationData("Cliffs of Desolation - Key 23", 88870094, 1),
LocationData("Cliffs of Desolation - Key 24", 88870095, 1),
LocationData("Cliffs of Desolation - Key 25", 88870096, 1),
LocationData("Cliffs of Desolation - Key 26", 88870097, 1),
LocationData("Cliffs of Desolation - Key 27", 88870098, 1),
LocationData("Cliffs of Desolation - Obelisk", 88870613, 1),
LocationData("Cliffs of Desolation Barrel - Key 1 (Dif. 3)", 8887370, 3),
LocationData("Cliffs of Desolation Barrel - Death 1 (Dif. 3)", 8887371, 3),
LocationData("Cliffs of Desolation Chest - Random 1 (Dif. 2)", 8887372, 2),
LocationData("Cliffs of Desolation Barrel - Shrink 1 (Dif. 2)", 8887373, 2),
LocationData("Cliffs of Desolation Chest - 5-Way Shot 1 (Dif. 3)", 8887374, 3),
LocationData("Cliffs of Desolation Barrel - Nothing 1", 8887375, 1),
LocationData("Cliffs of Desolation Barrel - Nothing 2", 8887376, 1),
LocationData("Cliffs of Desolation Barrel - Scroll 1", 8887377, 1),
LocationData("Cliffs of Desolation Barrel - Nothing 3 (Dif. 2)", 8887378, 2),
LocationData("Cliffs of Desolation Chest - Potion 1 (Dif. 4)", 8887379, 4),
LocationData("Cliffs of Desolation Barrel - Poison Fruit 1", 88873710, 1),
LocationData("Cliffs of Desolation Barrel - Nothing 4 (Dif. 2)", 88873711, 2),
LocationData("Cliffs of Desolation Barrel - Fruit 1", 88873712, 1),
LocationData("Cliffs of Desolation Barrel - Key 2 (Dif. 2)", 88873713, 2),
LocationData("Cliffs of Desolation Barrel - Key 3 (Dif. 2)", 88873714, 2),
LocationData("Cliffs of Desolation Barrel - Fruit 2 (Dif. 2)", 88873715, 2),
LocationData("Cliffs of Desolation Barrel - Poison Fruit 2 (Dif. 2)", 88873716, 2),
LocationData("Cliffs of Desolation Barrel - Key 4 (Dif. 2)", 88873717, 2),
LocationData("Cliffs of Desolation Barrel - Key 5", 88873718, 1),
LocationData("Cliffs of Desolation Barrel - Key 6", 88873719, 1),
LocationData("Cliffs of Desolation Chest - Meat 1", 88873720, 1),
LocationData("Cliffs of Desolation Chest - Potion 2", 88873721, 1),
LocationData("Cliffs of Desolation Chest - Levitate 1 (Dif. 2)", 88873722, 2),
LocationData("Cliffs of Desolation Chest - Gold 1 (Dif. 2)", 88873723, 2),
LocationData("Cliffs of Desolation Chest - Fruit 1 (Dif. 3)", 88873724, 3),
LocationData("Cliffs of Desolation Chest - Death 1 (Dif. 4)", 88873725, 4),
LocationData("Cliffs of Desolation Chest - Gold 2 (Dif. 2)", 88873726, 2),
LocationData("Cliffs of Desolation Chest - Potion 3", 88873727, 1),
LocationData("Cliffs of Desolation Chest - Gold 3", 88873728, 1),
LocationData("Cliffs of Desolation Chest - Death 2 (Dif. 2)", 88873729, 2),
LocationData("Cliffs of Desolation Chest - Gold 4 (Dif. 4)", 88873730, 4),
LocationData("Cliffs of Desolation Barrel - Key 7", 88873731, 1),
LocationData("Cliffs of Desolation Chest - Gold 5 (Dif. 3)", 88873732, 3),
LocationData("Cliffs of Desolation Barrel - Key 8", 88873733, 1),
LocationData("Cliffs of Desolation Chest - Potion 4", 88873734, 1),
LocationData("Cliffs of Desolation Chest - Meat 2 (Dif. 3)", 88873735, 3),
LocationData("Cliffs of Desolation Chest - Gold 6", 88873736, 1),
LocationData("Cliffs of Desolation Chest - Death 3", 88873737, 1),
LocationData("Cliffs of Desolation Chest - Meat 3 (Dif. 4)", 88873738, 4),
LocationData("Cliffs of Desolation Chest - Potion 5 (Dif. 2)", 88873739, 2),
LocationData("Cliffs of Desolation Dark Chest - Random 1 (Dif. 3)", 88873740, 3),
LocationData("Cliffs of Desolation Chest - Speed Boots 1", 88873741, 1),
LocationData("Cliffs of Desolation Chest - Potion 6", 88873742, 1),
LocationData("Cliffs of Desolation Barrel - Key 9", 88873743, 1),
LocationData("Cliffs of Desolation Chest - Meat 4 (Dif. 2)", 88873744, 2),
LocationData("Cliffs of Desolation Chest - Fire Amulet 1", 88873745, 1),
LocationData("Cliffs of Desolation Chest - Fruit 2", 88873746, 1),
LocationData("Cliffs of Desolation Barrel - Invulnerability 1", 88873747, 1),
LocationData("Cliffs of Desolation Chest - Fruit 3", 88873748, 1),
]
lost_cave: typing.List[LocationData] = [
LocationData("Lost Cave - Scroll 1", 88870099, 1),
LocationData("Lost Cave - Runestone", 88870100, 1),
LocationData("Lost Cave - Very Small Pile of Gold 1 (Dif. 2)", 88870101, 2),
LocationData("Lost Cave - Large Pile of Gold 1 (Dif. 4)", 88870102, 4),
LocationData("Lost Cave - Key 1", 88870103, 1),
LocationData("Lost Cave - Very Small Pile of Gold 2", 88870104, 1),
LocationData("Lost Cave - Very Small Pile of Gold 3 (Dif. 3)", 88870105, 3),
LocationData("Lost Cave - Key 2", 88870106, 1),
LocationData("Lost Cave - Small Pile of Gold 1 (Dif. 2)", 88870107, 2),
LocationData("Lost Cave - Half Barrel of Gold 1 (Dif. 3)", 88870108, 3),
LocationData("Lost Cave - Large Pile of Gold 2", 88870109, 1),
LocationData("Lost Cave - Key 3", 88870110, 1),
LocationData("Lost Cave - Key 4 (Dif. 2)", 88870111, 2),
LocationData("Lost Cave - Fire Potion 1", 88870112, 1),
LocationData("Lost Cave - Key 5", 88870113, 1),
LocationData("Lost Cave - Key 6 (Dif. 3)", 88870114, 3),
LocationData("Lost Cave - Meat Slab 1 (Dif. 2)", 88870115, 2),
LocationData("Lost Cave - Key 7 (Dif. 2)", 88870116, 2),
LocationData("Lost Cave - Fruit 1 (Dif. 2)", 88870117, 2),
LocationData("Lost Cave - Fire Potion 2 (Dif. 2)", 88870118, 2),
LocationData("Lost Cave - Fruit 2", 88870119, 1),
LocationData("Lost Cave - Key 8", 88870120, 1),
LocationData("Lost Cave - Key 9", 88870121, 1),
LocationData("Lost Cave - Key 10", 88870122, 1),
LocationData("Lost Cave - Key 11 (Dif. 2)", 88870123, 2),
LocationData("Lost Cave - Small Pile of Gold 2 (Dif. 2)", 88870124, 2),
LocationData("Lost Cave - Large Pile of Gold 3 (Dif. 2)", 88870125, 2),
LocationData("Lost Cave - Full Barrel of Gold 1 (Dif. 4)", 88870126, 4),
LocationData("Lost Cave - Drumstick 1 (Dif. 2)", 88870127, 2),
LocationData("Lost Cave - Drumstick 2 (Dif. 4)", 88870128, 4),
LocationData("Lost Cave - Key 12 (Dif. 4)", 88870129, 4),
LocationData("Lost Cave - Key 13 (Dif. 3)", 88870130, 3),
LocationData("Lost Cave - Key 14 (Dif. 4)", 88870131, 4),
LocationData("Lost Cave - Key 15 (Dif. 3)", 88870132, 3),
LocationData("Lost Cave - Key 16 (Dif. 3)", 88870133, 3),
LocationData("Lost Cave - Key 17", 88870134, 1),
LocationData("Lost Cave - Key 18 (Dif. 2)", 88870135, 2),
LocationData("Lost Cave - Key 19 (Dif. 3)", 88870136, 3),
LocationData("Lost Cave - Key 20 (Dif. 4)", 88870137, 4),
LocationData("Lost Cave - Fruit 3", 88870138, 1),
LocationData("Lost Cave - Fruit 4 (Dif. 2)", 88870139, 2),
LocationData("Lost Cave - Reflective Shot", 88870140, 1),
LocationData("Lost Cave - Fire Breath", 88870141, 1),
LocationData("Lost Cave - Key 21", 88870142, 1),
LocationData("Lost Cave Barrel - Scroll 1", 8887380, 1),
LocationData("Lost Cave Chest - Invulnerability 1 (Dif. 3)", 8887381, 3),
LocationData("Lost Cave Barrel - Nothing 1 (Dif. 2)", 8887382, 2),
LocationData("Lost Cave Chest - Gold 1", 8887383, 1),
LocationData("Lost Cave Chest - Gold 2 (Dif. 3)", 8887384, 3),
LocationData("Lost Cave Barrel - Rapid Fire 1", 8887385, 1),
LocationData("Lost Cave Barrel - Nothing 2", 8887386, 1),
LocationData("Lost Cave Chest - Speed Boots 1 (Dif. 4)", 8887387, 4),
LocationData("Lost Cave Chest - Fruit 1 (Dif. 2)", 8887388, 2),
LocationData("Lost Cave Dark Chest - Random 1", 8887389, 1),
LocationData("Lost Cave Chest - Gold 3", 88873810, 1),
LocationData("Lost Cave Barrel - Fruit 1", 88873811, 1),
LocationData("Lost Cave Chest - Death 1", 88873812, 1),
LocationData("Lost Cave Chest - Potion 1", 88873813, 1),
LocationData("Lost Cave Chest - Meat 1 (Dif. 3)", 88873814, 3),
LocationData("Lost Cave Barrel - Potion 1 (Dif. 3)", 88873815, 3),
LocationData("Lost Cave Barrel - Potion 2 (Dif. 4)", 88873816, 4),
LocationData("Lost Cave Chest - Meat 2", 88873817, 1),
LocationData("Lost Cave Chest - Fire Amulet 1", 88873818, 1),
LocationData("Lost Cave Chest - Gold 4 (Dif. 2)", 88873819, 2),
LocationData("Lost Cave Chest - Potion 2", 88873820, 1),
LocationData("Lost Cave Chest - Fruit 2 (Dif. 3)", 88873821, 3),
LocationData("Lost Cave Barrel - Meat 1", 88873822, 1),
LocationData("Lost Cave Barrel - Potion 3 (Dif. 2)", 88873823, 2),
LocationData("Lost Cave Barrel - Potion 4 (Dif. 4)", 88873824, 4),
LocationData("Lost Cave Barrel - Potion 5 (Dif. 2)", 88873825, 2),
LocationData("Lost Cave Barrel - Acid Breath 1 (Dif. 2)", 88873826, 2),
LocationData("Lost Cave Barrel - Fruit 2 (Dif. 4)", 88873827, 4),
LocationData("Lost Cave Barrel - Nothing 3", 88873828, 1),
LocationData("Lost Cave Chest - Poison Fruit 1 (Dif. 3)", 88873829, 3),
LocationData("Lost Cave Chest - Gold 5 (Dif. 4)", 88873830, 4),
LocationData("Lost Cave Chest - Poison Fruit 2 (Dif. 4)", 88873831, 4),
LocationData("Lost Cave Chest - Light Amulet 1 (Dif. 2)", 88873832, 2),
LocationData("Lost Cave Chest - 3-Way Shot 1 (Dif. 2)", 88873833, 2),
LocationData("Lost Cave Barrel - Reflective Shield 1 (Dif. 3)", 88873834, 3),
LocationData("Lost Cave Barrel - Super Shot 1 (Dif. 4)", 88873835, 4),
LocationData("Lost Cave Chest - Gold 6", 88873836, 1),
]
volcanic_cavern: typing.List[LocationData] = [
LocationData("Volcanic Cavern - Key 1", 88870143, 1),
LocationData("Volcanic Cavern - Scimitar of Decapitation", 88870144, 1),
LocationData("Volcanic Cavern - Runestone", 88870145, 1),
LocationData("Volcanic Cavern - Key 2", 88870146, 1),
LocationData("Volcanic Cavern - Key 3 (Dif. 3)", 88870147, 3),
LocationData("Volcanic Cavern - Fire Potion 1", 88870148, 1),
LocationData("Volcanic Cavern - Key 4", 88870149, 1),
LocationData("Volcanic Cavern - Key 5", 88870150, 1),
LocationData("Volcanic Cavern - Key 6", 88870151, 1),
LocationData("Volcanic Cavern - Key 7 (Dif. 2)", 88870152, 2),
LocationData("Volcanic Cavern - Key 8 (Dif. 2)", 88870153, 2),
LocationData("Volcanic Cavern - Key 9", 88870154, 1),
LocationData("Volcanic Cavern - Large Pile of Gold 1 (Dif. 2)", 88870155, 2),
LocationData("Volcanic Cavern - Small Pile of Gold 1", 88870156, 1),
LocationData("Volcanic Cavern - Half Barrel of Gold 1 (Dif. 3)", 88870157, 3),
LocationData("Volcanic Cavern - Key 10", 88870158, 1),
LocationData("Volcanic Cavern - Key 11 (Dif. 2)", 88870159, 2),
LocationData("Volcanic Cavern - Key 12 (Dif. 3)", 88870160, 3),
LocationData("Volcanic Cavern - Key 13 (Dif. 2)", 88870161, 2),
LocationData("Volcanic Cavern - Very Small Pile of Gold 1", 88870162, 1),
LocationData("Volcanic Cavern - Key 14 (Dif. 2)", 88870163, 2),
LocationData("Volcanic Cavern - Key 15 (Dif. 3)", 88870164, 3),
LocationData("Volcanic Cavern - Full Barrel of Gold 2 (Dif. 4)", 88870165, 4),
LocationData("Volcanic Cavern - Small Pile of Gold 3", 88870166, 1),
LocationData("Volcanic Cavern - Death (Dif. 2)", 88870167, 2),
LocationData("Volcanic Cavern - Key 16 (Dif. 3)", 88870168, 3),
LocationData("Volcanic Cavern - Key 17 (Dif. 4)", 88870169, 4),
LocationData("Volcanic Cavern - Key 18 (Dif. 3)", 88870170, 3),
LocationData("Volcanic Cavern - Key 19 (Dif. 4)", 88870171, 4),
LocationData("Volcanic Cavern - Key 20 (Dif. 2)", 88870172, 2),
LocationData("Volcanic Cavern - Fire Potion 2 (Dif. 4)", 88870173, 4),
LocationData("Volcanic Cavern - 5-Way Shot (Dif. 4)", 88870174, 4),
LocationData("Volcanic Cavern - Invisibility (Dif. 3)", 88870175, 3),
LocationData("Volcanic Cavern Barrel - Key 1 (Dif. 4)", 8887390, 4),
LocationData("Volcanic Cavern Barrel - Key 2 (Dif. 3)", 8887391, 3),
LocationData("Volcanic Cavern Barrel - Key 3", 8887392, 1),
LocationData("Volcanic Cavern Barrel - Lightning Amulet 1", 8887393, 1),
LocationData("Volcanic Cavern Chest - Lightning Shield 1", 8887394, 1),
LocationData("Volcanic Cavern Barrel - Fruit 1 (Dif. 4)", 8887395, 4),
LocationData("Volcanic Cavern Chest - Meat 1", 8887396, 1),
LocationData("Volcanic Cavern Barrel - Nothing 1 (Dif. 4)", 8887397, 4),
LocationData("Volcanic Cavern Chest - Scroll 1", 8887398, 1),
LocationData("Volcanic Cavern Dark Chest - Random 1 (Dif. 3)", 8887399, 3),
LocationData("Volcanic Cavern Chest - Death 1", 88873910, 1),
LocationData("Volcanic Cavern Chest - Fruit 1", 88873911, 1),
LocationData("Volcanic Cavern Barrel - Potion 1 (Dif. 3)", 88873912, 3),
LocationData("Volcanic Cavern Chest - Poison Fruit 1 (Dif. 3)", 88873913, 3),
LocationData("Volcanic Cavern Chest - Super Shot 1", 88873914, 1),
LocationData("Volcanic Cavern Barrel - Nothing 2", 88873915, 1),
LocationData("Volcanic Cavern Barrel - Poison Fruit 1", 88873916, 1),
LocationData("Volcanic Cavern Barrel - Anti-Death Halo 1 (Dif. 2)", 88873917, 2),
LocationData("Volcanic Cavern Chest - Potion 1 (Dif. 3)", 88873918, 3),
LocationData("Volcanic Cavern Chest - 3-Way Shot 1", 88873919, 1),
LocationData("Volcanic Cavern Chest - Fruit 2 (Dif. 2)", 88873920, 2),
LocationData("Volcanic Cavern Chest - Timestop 1 (Dif. 3)", 88873921, 3),
LocationData("Volcanic Cavern Chest - Meat 2", 88873922, 1),
LocationData("Volcanic Cavern Barrel - Potion 2 (Dif. 2)", 88873923, 2),
LocationData("Volcanic Cavern Barrel - Meat 1", 88873924, 1),
LocationData("Volcanic Cavern Chest - Potion 2 (Dif. 4)", 88873925, 4),
LocationData("Volcanic Cavern Chest - Fruit 3 (Dif. 2)", 88873926, 2),
LocationData("Volcanic Cavern Chest - Fruit 4 (Dif. 3)", 88873927, 3),
LocationData("Volcanic Cavern Barrel - Scroll 1", 88873928, 1),
LocationData("Volcanic Cavern Barrel - Nothing 3", 88873929, 1),
LocationData("Volcanic Cavern Barrel - Gold 1 (Dif. 3)", 88873930, 3),
LocationData("Volcanic Cavern Chest - Gold 1 (Dif. 4)", 88873931, 4),
LocationData("Volcanic Cavern Barrel - Gold 2", 88873932, 1),
LocationData("Volcanic Cavern Chest - Meat 3 (Dif. 2)", 88873933, 2),
LocationData("Volcanic Cavern Barrel - Fruit 2 (Dif. 4)", 88873934, 4),
LocationData("Volcanic Cavern Barrel - Meat 2 (Dif. 3)", 88873935, 3),
LocationData("Volcanic Cavern Barrel - Potion 3", 88873936, 1),
LocationData("Volcanic Cavern Barrel - Gold 3 (Dif. 2)", 88873937, 2),
LocationData("Volcanic Cavern Chest - Lightning Breath 1 (Dif. 2)", 88873938, 2),
LocationData("Volcanic Cavern Chest - Fruit 5 (Dif. 3)", 88873939, 3),
LocationData("Volcanic Cavern Chest - Speed Boots 1 (Dif. 4)", 88873940, 4),
LocationData("Volcanic Cavern Chest - Potion 3 (Dif. 2)", 88873941, 2),
LocationData("Volcanic Cavern Barrel - Nothing 4 (Dif. 3)", 88873942, 3),
LocationData("Volcanic Cavern Barrel - Potion 4", 88873943, 1),
LocationData("Volcanic Cavern Barrel - Death 1 (Dif. 3)", 88873944, 3),
LocationData("Volcanic Cavern Barrel - Meat 3 (Dif. 4)", 88873945, 4),
LocationData("Volcanic Cavern Chest - Phoenix Familiar 1 (Dif. 2)", 88873946, 2),
LocationData("Volcanic Cavern Barrel - Nothing 5 (Dif. 2)", 88873947, 2),
LocationData("Volcanic Cavern Barrel - Nothing 6 (Dif. 2)", 88873948, 2),
LocationData("Volcanic Cavern Barrel - Nothing 7 (Dif. 3)", 88873949, 3),
LocationData("Volcanic Cavern Barrel - Nothing 8", 88873950, 1),
LocationData("Volcanic Cavern Barrel - Nothing 9 (Dif. 4)", 88873951, 4),
LocationData("Volcanic Cavern Barrel - Nothing 10 (Dif. 2)", 88873952, 2),
LocationData("Volcanic Cavern Barrel - Nothing 11 (Dif. 3)", 88873953, 3),
LocationData("Volcanic Cavern Barrel - Scroll 2", 88873954, 1),
LocationData("Volcanic Cavern Barrel - Nothing 12 (Dif. 3)", 88873955, 3),
LocationData("Volcanic Cavern Barrel - Nothing 13 (Dif. 2)", 88873956, 2),
]
dragons_lair: typing.List[LocationData] = [
LocationData("Dragon's Lair - Slab of Meat (Dif. 2)", 88870176, 2),
LocationData("Dragon's Lair - Rapid Fire (Dif. 2)", 88870177, 2),
LocationData("Dragon's Lair - Growth (Dif. 4)", 88870178, 4),
LocationData("Dragon's Lair - Speed Boots (Dif. 3)", 88870179, 3),
LocationData("Dragon's Lair - 3-Way Shot", 88870180, 1),
LocationData("Dragon's Lair - Drumstick", 88870181, 1),
LocationData("Dragon's Lair - Dragon Mirror Shard", 88870607, 1),
]
castle_courtyard: typing.List[LocationData] = [
LocationData("Castle Courtyard - Runestone", 88870182, 1),
LocationData("Castle Courtyard - Key 1", 88870183, 1),
LocationData("Castle Courtyard - Key 2", 88870184, 1),
LocationData("Castle Courtyard - Key 3", 88870185, 1),
LocationData("Castle Courtyard - Key 4", 88870186, 1),
LocationData("Castle Courtyard - Key 5", 88870187, 1),
LocationData("Castle Courtyard - Key 6", 88870188, 1),
LocationData("Castle Courtyard - Key 7", 88870189, 1),
LocationData("Castle Courtyard - Key 8", 88870190, 1),
LocationData("Castle Courtyard - Key 9", 88870191, 1),
LocationData("Castle Courtyard - Scroll 1", 88870192, 1),
LocationData("Castle Courtyard - Full Barrel of Gold 1 (Dif. 4)", 88870193, 4),
LocationData("Castle Courtyard - Lightning Potion 1", 88870194, 1),
LocationData("Castle Courtyard - Key 10", 88870195, 1),
LocationData("Castle Courtyard - Lightning Potion 2 (Dif. 4)", 88870196, 4),
LocationData("Castle Courtyard - Scroll 2", 88870197, 1),
LocationData("Castle Courtyard - Poison Fruit 1", 88870198, 1),
LocationData("Castle Courtyard - Key 11 (Dif. 2)", 88870199, 2),
LocationData("Castle Courtyard - Key 12", 88870200, 1),
LocationData("Castle Courtyard - Key 13 (Dif. 4)", 88870201, 4),
LocationData("Castle Courtyard - Key 14 (Dif. 4)", 88870202, 4),
LocationData("Castle Courtyard - Large Pile of Gold 1 (Dif. 2)", 88870203, 2),
LocationData("Castle Courtyard - Key 15", 88870204, 1),
LocationData("Castle Courtyard - Key 16 (Dif. 2)", 88870205, 2),
LocationData("Castle Courtyard - Death 1", 88870206, 1),
LocationData("Castle Courtyard - Death 2 (Dif. 3)", 88870207, 3),
LocationData("Castle Courtyard - Invulnerability", 88870208, 1),
LocationData("Castle Courtyard - Half Barrel of Gold 1 (Dif. 3)", 88870209, 3),
LocationData("Castle Courtyard - Lightning Potion 3 (Dif. 2)", 88870210, 2),
LocationData("Castle Courtyard - Timestop (Dif. 4)", 88870211, 4),
LocationData("Castle Courtyard - Super Shot (Dif. 2)", 88870212, 2),
LocationData("Castle Courtyard - Phoenix Familiar", 88870213, 1),
LocationData("Castle Courtyard - Fire Breath (Dif. 2)", 88870214, 2),
LocationData("Castle Courtyard - Key 17 (Dif. 2)", 88870215, 2),
LocationData("Castle Courtyard - Key 18 (Dif. 3)", 88870216, 3),
LocationData("Castle Courtyard - Key 19 (Dif. 4)", 88870217, 4),
LocationData("Castle Courtyard - Lightning Shield", 88870218, 1),
LocationData("Castle Courtyard - Obelisk", 88870616, 1),
LocationData("Castle Courtyard Barrel - Key 1", 8887300, 1),
LocationData("Castle Courtyard Chest - Shrink 1 (Dif. 4)", 8887301, 4),
LocationData("Castle Courtyard Barrel - Nothing 1 (Dif. 3)", 8887302, 3),
LocationData("Castle Courtyard Barrel - Nothing 2", 8887303, 1),
LocationData("Castle Courtyard Barrel - Nothing 3", 8887304, 1),
LocationData("Castle Courtyard Barrel - Fruit 1", 8887305, 1),
LocationData("Castle Courtyard Barrel - Potion 1", 8887306, 1),
LocationData("Castle Courtyard Barrel - Nothing 4", 8887307, 1),
LocationData("Castle Courtyard Barrel - Key 2 (Dif. 2)", 8887308, 2),
LocationData("Castle Courtyard Barrel - Poison Fruit 1 (Dif. 2)", 8887309, 2),
LocationData("Castle Courtyard Barrel - Nothing 5 (Dif. 2)", 88873010, 2),
LocationData("Castle Courtyard Barrel - Gold 1 (Dif. 3)", 88873011, 3),
LocationData("Castle Courtyard Barrel - Key 3 (Dif. 2)", 88873012, 2),
LocationData("Castle Courtyard Chest - Scroll 1", 88873013, 1),
LocationData("Castle Courtyard Dark Chest - Random 1 (Dif. 4)", 88873014, 4),
LocationData("Castle Courtyard Chest - Gold 1 (Dif. 2)", 88873015, 2),
LocationData("Castle Courtyard Chest - Nothing 1", 88873016, 1),
LocationData("Castle Courtyard Chest - Reflective Shot 1", 88873017, 1),
LocationData("Castle Courtyard Chest - Gold 2", 88873018, 1),
LocationData("Castle Courtyard Chest - Death 1 (Dif. 2)", 88873019, 2),
LocationData("Castle Courtyard Chest - Speed Boots 1 (Dif. 3)", 88873020, 3),
LocationData("Castle Courtyard Barrel - Invisibility 1 (Dif. 4)", 88873021, 4),
LocationData("Castle Courtyard Barrel - Nothing 6", 88873022, 1),
LocationData("Castle Courtyard Barrel - Gold 2", 88873023, 1),
LocationData("Castle Courtyard Barrel - Key 4 (Dif. 3)", 88873024, 3),
LocationData("Castle Courtyard Barrel - Fruit 2 (Dif. 3)", 88873025, 3),
LocationData("Castle Courtyard Chest - Scroll 2", 88873026, 1),
LocationData("Castle Courtyard Chest - Potion 1 (Dif. 3)", 88873027, 3),
LocationData("Castle Courtyard Chest - Gold 3 (Dif. 2)", 88873028, 2),
LocationData("Castle Courtyard Barrel - Key 5 (Dif. 3)", 88873029, 3),
LocationData("Castle Courtyard Barrel - Key 6", 88873030, 1),
LocationData("Castle Courtyard Chest - Meat 1 (Dif. 4)", 88873031, 4),
LocationData("Castle Courtyard Chest - Meat 2 (Dif. 3)", 88873032, 3),
LocationData("Castle Courtyard Chest - Gold 4 (Dif. 4)", 88873033, 4),
LocationData("Castle Courtyard Chest - Potion 2 (Dif. 3)", 88873034, 3),
LocationData("Castle Courtyard Chest - Meat 3 (Dif. 2)", 88873035, 2),
LocationData("Castle Courtyard Chest - Lightning Amulet 1 (Dif. 3)", 88873036, 3),
LocationData("Castle Courtyard Chest - Fruit 1 (Dif. 4)", 88873037, 4),
LocationData("Castle Courtyard Barrel - Key 7 (Dif. 3)", 88873038, 3),
LocationData("Castle Courtyard Chest - Potion 3 (Dif. 4)", 88873039, 4),
LocationData("Castle Courtyard Chest - Gold 5", 88873040, 1),
LocationData("Castle Courtyard Barrel - Key 8 (Dif. 3)", 88873041, 3),
LocationData("Castle Courtyard Barrel - Key 9", 88873042, 1),
LocationData("Castle Courtyard Chest - Fruit 2 (Dif. 2)", 88873043, 2),
LocationData("Castle Courtyard Barrel - Gold 3", 88873044, 1),
LocationData("Castle Courtyard Chest - Meat 4", 88873045, 1),
LocationData("Castle Courtyard Barrel - Key 10 (Dif. 4)", 88873046, 4),
LocationData("Castle Courtyard Barrel - 3-Way Shot 1 (Dif. 2)", 88873047, 2),
LocationData("Castle Courtyard Barrel - Nothing 7 (Dif. 4)", 88873048, 4),
LocationData("Castle Courtyard Barrel - Lightning Breath 1 (Dif. 3)", 88873049, 3),
LocationData("Castle Courtyard Barrel - Poison Fruit 2 (Dif. 4)", 88873050, 4),
LocationData("Castle Courtyard Barrel - Nothing 8 (Dif. 2)", 88873051, 2),
LocationData("Castle Courtyard Barrel - Nothing 9 (Dif. 4)", 88873052, 4),
LocationData("Castle Courtyard Barrel - Key 11 (Dif. 4)", 88873053, 4),
LocationData("Castle Courtyard Barrel - Nothing 10 (Dif. 3)", 88873054, 3),
LocationData("Castle Courtyard Barrel - Nothing 11 (Dif. 3)", 88873055, 3),
LocationData("Castle Courtyard Barrel - Nothing 12", 88873056, 1),
LocationData("Castle Courtyard Barrel - Key 12 (Dif. 4)", 88873057, 4),
]
dungeon_of_torment: typing.List[LocationData] = [
LocationData("Dungeon of Torment - Lightning Potion 1 (Dif. 4)", 88870219, 4),
LocationData("Dungeon of Torment - Key 1", 88870220, 1),
LocationData("Dungeon of Torment - Runestone", 88870221, 1),
LocationData("Dungeon of Torment - Key 2 (Dif. 3)", 88870222, 3),
LocationData("Dungeon of Torment - Key 3", 88870223, 1),
LocationData("Dungeon of Torment - Key 4 (Dif. 2)", 88870224, 2),
LocationData("Dungeon of Torment - Key 5 (Dif. 3)", 88870225, 3),
LocationData("Dungeon of Torment - Key 6 (Dif. 4)", 88870226, 4),
LocationData("Dungeon of Torment - Very Small Pile of Gold 1", 88870227, 1),
LocationData("Dungeon of Torment - Small Pile of Gold 1 (Dif. 2)", 88870228, 2),
LocationData("Dungeon of Torment - Full Barrel of Gold 1 (Dif. 4)", 88870229, 4),
LocationData("Dungeon of Torment - Half Barrel of Gold 1 (Dif. 3)", 88870230, 3),
LocationData("Dungeon of Torment - Small Pile of Gold 2", 88870231, 1),
LocationData("Dungeon of Torment - Large Pile fo Gold 1 (Dif. 3)", 88870232, 3),
LocationData("Dungeon of Torment - Half Barrel of Gold 2 (Dif. 4)", 88870233, 4),
LocationData("Dungeon of Torment - Lightning Potion 2", 88870234, 1),
LocationData("Dungeon of Torment - Acid Amulet", 88870235, 1),
LocationData("Dungeon of Torment - Poison Fruit", 88870236, 1),
LocationData("Dungeon of Torment - Key 7 (Dif. 2)", 88870237, 2),
LocationData("Dungeon of Torment - Key 8", 88870238, 1),
LocationData("Dungeon of Torment - Obelisk", 88870617, 1),
LocationData("Dungeon of Torment Barrel - Nothing 1", 8887310, 1),
LocationData("Dungeon of Torment Chest - Meat 1 (Dif. 4)", 8887311, 4),
LocationData("Dungeon of Torment Chest - Meat 2 (Dif. 3)", 8887312, 3),
LocationData("Dungeon of Torment Chest - Acid Amulet 1", 8887313, 1),
LocationData("Dungeon of Torment Barrel - Death 1", 8887314, 1),
LocationData("Dungeon of Torment Chest - Invulnerability 1 (Dif. 4)", 8887315, 4),
LocationData("Dungeon of Torment Barrel - Key 1 (Dif. 3)", 8887316, 3),
LocationData("Dungeon of Torment Barrel - Key 2 (Dif. 2)", 8887317, 2),
LocationData("Dungeon of Torment Barrel - Nothing 2 (Dif. 4)", 8887318, 4),
LocationData("Dungeon of Torment Barrel - Nothing 3 (Dif. 3)", 8887319, 3),
LocationData("Dungeon of Torment Barrel - Nothing 4 (Dif. 4)", 88873110, 4),
LocationData("Dungeon of Torment Barrel - Fruit 1 (Dif. 2)", 88873111, 2),
LocationData("Dungeon of Torment Barrel - Super Shot 1 (Dif. 3)", 88873112, 3),
LocationData("Dungeon of Torment Barrel - Potion 1 (Dif. 2)", 88873113, 2),
LocationData("Dungeon of Torment Barrel - Gold 1 (Dif. 2)", 88873114, 2),
LocationData("Dungeon of Torment Barrel - Gold 2", 88873115, 1),
LocationData("Dungeon of Torment Barrel - Key 3 (Dif. 4)", 88873116, 4),
LocationData("Dungeon of Torment Chest - Meat 3 (Dif. 2)", 88873117, 2),
LocationData("Dungeon of Torment Chest - Meat 4", 88873118, 1),
LocationData("Dungeon of Torment Chest - Potion 1 (Dif. 3)", 88873119, 3),
LocationData("Dungeon of Torment Chest - Fruit 1 (Dif. 3)", 88873120, 3),
LocationData("Dungeon of Torment Dark Chest - Random 1 (Dif. 2)", 88873121, 2),
LocationData("Dungeon of Torment Chest - Potion 2", 88873122, 1),
LocationData("Dungeon of Torment Chest - Gold 1 (Dif. 2)", 88873123, 2),
LocationData("Dungeon of Torment Barrel - Fruit 2 (Dif. 4)", 88873124, 4),
LocationData("Dungeon of Torment Barrel - Reflective Shot 1 (Dif. 2)", 88873125, 2),
LocationData("Dungeon of Torment Barrel - Scroll 1", 88873126, 1),
LocationData("Dungeon of Torment Barrel - Nothing 5 (Dif. 3)", 88873127, 3),
LocationData("Dungeon of Torment Barrel - Nothing 6 (Dif. 2)", 88873128, 2),
LocationData("Dungeon of Torment Barrel - Nothing 7 (Dif. 3)", 88873129, 3),
LocationData("Dungeon of Torment Barrel - Nothing 8 (Dif. 3)", 88873130, 3),
LocationData("Dungeon of Torment Barrel - Scroll 2", 88873131, 1),
]
tower_armory: typing.List[LocationData] = [
LocationData("Tower Armory - Key 1 (Dif. 4)", 88870239, 4),
LocationData("Tower Armory - Key 2", 88870240, 1),
LocationData("Tower Armory - Key 3", 88870241, 1),
LocationData("Tower Armory - Key 4", 88870242, 1),
LocationData("Tower Armory - Key 5", 88870243, 1),
LocationData("Tower Armory - Key 6", 88870244, 1),
LocationData("Tower Armory - Key 7 (Dif. 4)", 88870245, 4),
LocationData("Tower Armory - Slab of Meat 1", 88870246, 1),
LocationData("Tower Armory - Lightning Potion 1 (Dif. 3)", 88870247, 3),
LocationData("Tower Armory - Key 8 (Dif. 2)", 88870248, 2),
LocationData("Tower Armory - Key 9", 88870249, 1),
LocationData("Tower Armory - Key 10 (Dif. 2)", 88870250, 2),
LocationData("Tower Armory - Key 11", 88870251, 1),
LocationData("Tower Armory - Key 12 (Dif. 3)", 88870252, 3),
LocationData("Tower Armory - Key 13", 88870253, 1),
LocationData("Tower Armory - Key 14 (Dif. 2)", 88870254, 2),
LocationData("Tower Armory - Key 15 (Dif. 3)", 88870255, 3),
LocationData("Tower Armory - Key 16 (Dif. 3)", 88870256, 3),
LocationData("Tower Armory - Key 17", 88870257, 1),
LocationData("Tower Armory - Key 18 (Dif. 2)", 88870258, 2),
LocationData("Tower Armory - Key 19 (Dif. 3)", 88870259, 3),
LocationData("Tower Armory - Fruit 1", 88870260, 1),
LocationData("Tower Armory - Potion Pile (Dif. 2)", 88870261, 2),
LocationData("Tower Armory - Lightning Potion 2", 88870262, 1),
LocationData("Tower Armory - Poison Fruit 1 (Dif. 3)", 88870263, 3),
LocationData("Tower Armory - Key 20 (Dif. 2)", 88870264, 2),
LocationData("Tower Armory - Slab of Meat 2 (Dif. 4)", 88870265, 4),
LocationData("Tower Armory - Lightning Potion 3 (Dif. 4)", 88870266, 4),
LocationData("Tower Armory - Key 21 (Dif. 2)", 88870267, 2),
LocationData("Tower Armory - Fruit 2 (Dif. 2)", 88870268, 2),
LocationData("Tower Armory - Fruit 3", 88870269, 1),
LocationData("Tower Armory - Reflective Shot 1 (Dif. 2)", 88870270, 2),
LocationData("Tower Armory - Death 1 (Dif. 3)", 88870271, 3),
LocationData("Tower Armory - Very Small Pile of Gold 1 (Dif. 4)", 88870272, 4),
LocationData("Tower Armory - Very Small Pile of Gold 2", 88870273, 1),
LocationData("Tower Armory - Half Barrel of Gold 1 (Dif. 4)", 88870274, 4),
LocationData("Tower Armory - Small Pile of Gold 1 (Dif. 2)", 88870275, 2),
LocationData("Tower Armory - Large Pile of Gold 1 (Dif. 3)", 88870276, 3),
LocationData("Tower Armory - Very Small Pile of Gold 3", 88870277, 1),
LocationData("Tower Armory - Key 22 (Dif. 3)", 88870278, 3),
LocationData("Tower Armory - Acid Breath 1", 88870279, 1),
LocationData("Tower Armory - Runestone", 88870280, 1),
LocationData("Tower Armory - Key 23", 88870281, 1),
LocationData("Tower Armory - Key 24 (Dif. 2)", 88870282, 2),
LocationData("Tower Armory - Key 25", 88870283, 1),
LocationData("Tower Armory Barrel - Key 1 (Dif. 4)", 8887320, 4),
LocationData("Tower Armory Barrel - Scroll 1", 8887321, 1),
LocationData("Tower Armory Barrel - Light Amulet 1 (Dif. 4)", 8887322, 4),
LocationData("Tower Armory Barrel - Poison Fruit 1 (Dif. 4)", 8887323, 4),
LocationData("Tower Armory Chest - Fire Breath 1 (Dif. 4)", 8887324, 4),
LocationData("Tower Armory Chest - Gold 1", 8887325, 1),
LocationData("Tower Armory Chest - Invisibility 1 (Dif. 2)", 8887326, 2),
LocationData("Tower Armory Chest - Potion 1", 8887327, 1),
LocationData("Tower Armory Chest - Lightning Amulet 1", 8887328, 1),
LocationData("Tower Armory Chest - Poison Fruit 1", 8887329, 1),
LocationData("Tower Armory Chest - Meat 1 (Dif. 3)", 88873210, 3),
LocationData("Tower Armory Chest - Death 1 (Dif. 2)", 88873211, 2),
LocationData("Tower Armory Chest - Super Shot 1 (Dif. 3)", 88873212, 3),
LocationData("Tower Armory Chest - Growth 1 (Dif. 3)", 88873213, 3),
LocationData("Tower Armory Chest - Potion 2 (Dif. 2)", 88873214, 2),
LocationData("Tower Armory Chest - Death 2", 88873215, 1),
LocationData("Tower Armory Chest - Gold 2 (Dif. 3)", 88873216, 3),
LocationData("Tower Armory Chest - Gold 3 (Dif. 2)", 88873217, 2),
LocationData("Tower Armory Chest - Fruit 1 (Dif. 4)", 88873218, 4),
LocationData("Tower Armory Chest - Potion 3", 88873219, 1),
LocationData("Tower Armory Chest - Fruit 2 (Dif. 2)", 88873220, 2),
LocationData("Tower Armory Dark Chest - Random 1 (Dif. 3)", 88873221, 3),
LocationData("Tower Armory Chest - Meat 2", 88873222, 1),
LocationData("Tower Armory Barrel - Scroll 2", 88873223, 1),
LocationData("Tower Armory Barrel - 3-Way Shot 1", 88873224, 1),
LocationData("Tower Armory Chest - Meat 3 (Dif. 2)", 88873225, 2),
LocationData("Tower Armory Chest - Invulnerability 1 (Dif. 4)", 88873226, 4),
LocationData("Tower Armory Barrel - Gold 1", 88873227, 1),
LocationData("Tower Armory Barrel - Key 2", 88873228, 1),
LocationData("Tower Armory Barrel - Nothing 1 (Dif. 3)", 88873229, 3),
LocationData("Tower Armory Barrel - Key 3 (Dif. 2)", 88873230, 2),
LocationData("Tower Armory Dark Chest - Random 2 (Dif. 2)", 88873231, 2),
LocationData("Tower Armory Barrel - Scroll 3", 88873232, 1),
LocationData("Tower Armory Barrel - Speed Boots 1", 88873233, 1),
LocationData("Tower Armory Barrel - Levitate 1 (Dif. 3)", 88873234, 3),
LocationData("Tower Armory Barrel - Nothing 2 (Dif. 4)", 88873235, 4),
LocationData("Tower Armory Chest - Reflective Shield 1 (Dif. 2)", 88873236, 2),
]
castle_treasury: typing.List[LocationData] = [
LocationData("Castle Treasury - Lightning Potion 1", 88870284, 1),
LocationData("Castle Treasury - Key 1", 88870285, 1),
LocationData("Castle Treasury - Key 2", 88870286, 1),
LocationData("Castle Treasury - Key 3", 88870287, 1),
LocationData("Castle Treasury - Key 4", 88870288, 1),
LocationData("Castle Treasury - Key 5", 88870289, 1),
LocationData("Castle Treasury - Key 6 (Dif. 3)", 88870290, 3),
LocationData("Castle Treasury - Key 7", 88870291, 1),
LocationData("Castle Treasury - Key 8", 88870292, 1),
LocationData("Castle Treasury - Half Barrel of Gold 1 (Dif. 4)", 88870293, 4),
LocationData("Castle Treasury - Very Small Pile of Gold 1 (Dif. 4)", 88870294, 4),
LocationData("Castle Treasury - Small Pile of Gold 1 (Dif. 4)", 88870295, 4),
LocationData("Castle Treasury - Full Barrel of Gold 1 (Dif. 4)", 88870296, 4),
LocationData("Castle Treasury - Large Pile of Gold 1 (Dif. 2)", 88870297, 2),
LocationData("Castle Treasury - Small Pile of Gold 2 (Dif. 3)", 88870298, 3),
LocationData("Castle Treasury - Scroll 1", 88870299, 1),
LocationData("Castle Treasury - Meat Slab 1 (Dif. 2)", 88870300, 2),
LocationData("Castle Treasury - Poison Fruit 1", 88870301, 1),
LocationData("Castle Treasury - Lightning Potion 2 (Dif. 4)", 88870302, 4),
LocationData("Castle Treasury - Key 9", 88870303, 1),
LocationData("Castle Treasury - Lightning Potion 3 (Dif. 2)", 88870304, 2),
LocationData("Castle Treasury - Bananas", 88870305, 1),
LocationData("Castle Treasury - Drumstick 1", 88870306, 1),
LocationData("Castle Treasury - Lightning Potion 4 (Dif. 3)", 88870307, 3),
LocationData("Castle Treasury - Lightning Potion 5", 88870308, 1),
LocationData("Castle Treasury - Pineapple (Dif. 2)", 88870309, 2),
LocationData("Castle Treasury - Key 10 (Dif. 2)", 88870310, 2),
LocationData("Castle Treasury - Poison Fruit 2 (Dif. 3)", 88870311, 3),
LocationData("Castle Treasury - Death 1 (Dif. 2)", 88870312, 2),
LocationData("Castle Treasury - Invulnerability 1 (Dif. 2)", 88870313, 2),
LocationData("Castle Treasury - Large Pile of Gold 2 (Dif. 4)", 88870314, 4),
LocationData("Castle Treasury - Very Small Pile of Gold 2", 88870315, 1),
LocationData("Castle Treasury - Half Barrel of Gold 2 (Dif. 3)", 88870316, 3),
LocationData("Castle Treasury - Very Small Pile of Gold 3 (Dif. 3)", 88870317, 3),
LocationData("Castle Treasury - Small Pile of Gold 3 (Dif. 2)", 88870318, 2),
LocationData("Castle Treasury - Large Pile of Gold 3 (Dif. 3)", 88870319, 3),
LocationData("Castle Treasury - Small Pile of Gold 4", 88870320, 1),
LocationData("Castle Treasury - Speed Boots 1 (Dif. 3)", 88870321, 3),
LocationData("Castle Treasury - Fruit 1 (Dif. 4)", 88870322, 4),
LocationData("Castle Treasury - Key 11 (Dif. 2)", 88870323, 2),
LocationData("Castle Treasury - Key 12 (Dif. 3)", 88870324, 3),
LocationData("Castle Treasury - Key 13 (Dif. 4)", 88870325, 4),
LocationData("Castle Treasury - Death 2 (Dif. 3)", 88870326, 3),
LocationData("Castle Treasury - Ice Axe of Untar", 88870327, 1),
LocationData("Castle Treasury - Key 14 (Dif. 4)", 88870328, 4),
LocationData("Castle Treasury Barrel - Scroll 1", 8887330, 1),
LocationData("Castle Treasury Barrel - Scroll 2", 8887331, 1),
LocationData("Castle Treasury Barrel - Key 1 (Dif. 2)", 8887332, 2),
LocationData("Castle Treasury Barrel - Key 2", 8887333, 1),
LocationData("Castle Treasury Barrel - Key 3", 8887334, 1),
LocationData("Castle Treasury Barrel - Key 4", 8887335, 1),
LocationData("Castle Treasury Barrel - Key 5 (Dif. 2)", 8887336, 2),
LocationData("Castle Treasury Chest - Gold 1", 8887337, 1),
LocationData("Castle Treasury Barrel - Key 6 (Dif. 3)", 8887338, 3),
LocationData("Castle Treasury Barrel - Poison Fruit 1 (Dif. 3)", 8887339, 3),
LocationData("Castle Treasury Barrel - Key 7 (Dif. 4)", 88873310, 4),
LocationData("Castle Treasury Chest - Gold 2", 88873311, 1),
LocationData("Castle Treasury Chest - Gold 3", 88873312, 1),
LocationData("Castle Treasury Chest - Potion 1 (Dif. 4)", 88873313, 4),
LocationData("Castle Treasury Chest - Potion 2 (Dif. 3)", 88873314, 3),
LocationData("Castle Treasury Chest - Lightning Amulet 1", 88873315, 1),
LocationData("Castle Treasury Chest - 3-Way Shot 1 (Dif. 2)", 88873316, 2),
LocationData("Castle Treasury Chest - Potion 3", 88873317, 1),
LocationData("Castle Treasury Dark Chest - Random 1 (Dif. 3)", 88873318, 3),
LocationData("Castle Treasury Chest - Gold 4 (Dif. 2)", 88873319, 2),
LocationData("Castle Treasury Chest - Potion 4 (Dif. 2)", 88873320, 2),
LocationData("Castle Treasury Chest - Scroll 1", 88873321, 1),
LocationData("Castle Treasury Chest - Meat 1 (Dif. 3)", 88873322, 3),
LocationData("Castle Treasury Chest - Fruit 1 (Dif. 2)", 88873323, 2),
LocationData("Castle Treasury Chest - Meat 2 (Dif. 4)", 88873324, 4),
LocationData("Castle Treasury Chest - Thunder Hammer 1 (Dif. 4)", 88873325, 4),
LocationData("Castle Treasury Barrel - Timestop 1 (Dif. 4)", 88873326, 4),
LocationData("Castle Treasury Barrel - Levitate 1 (Dif. 3)", 88873327, 3),
LocationData("Castle Treasury Barrel - Lightning Shield 1", 88873328, 1),
LocationData("Castle Treasury Barrel - Death 1", 88873329, 1),
LocationData("Castle Treasury Chest - Fire Shield 1", 88873330, 1),
LocationData("Castle Treasury Barrel - Levitate 2 (Dif. 2)", 88873331, 2),
LocationData("Castle Treasury Chest - Random 1", 88873332, 1),
]
chimeras_keep: typing.List[LocationData] = [
LocationData("Chimera's Keep - Speed Boots", 88870329, 1),
LocationData("Chimera's Keep - Growth (Dif. 4)", 88870330, 4),
LocationData("Chimera's Keep - 3-Way Shot (Dif. 2)", 88870331, 2),
LocationData("Chimera's Keep - (Dif. 3)", 88870332, 3),
LocationData("Chimera's Keep - Ham (Dif. 2)", 88870333, 2),
LocationData("Chimera's Keep - Drumstick", 88870334, 1),
LocationData("Chimera's Keep - Chimera Mirror Shard", 88870608, 1),
]
poisoned_fields: typing.List[LocationData] = [
LocationData("Poisoned Fields - Fruit Pile 1", 88870335, 1),
LocationData("Poisoned Fields - Fruit Pile 2 (Dif. 4)", 88870336, 4),
LocationData("Poisoned Fields - Fruit Pile 3 (Dif. 3)", 88870337, 3),
LocationData("Poisoned Fields - Fruit Pile 4", 88870338, 1),
LocationData("Poisoned Fields - Death 1", 88870339, 1),
LocationData("Poisoned Fields - Key 1", 88870340, 1),
LocationData("Poisoned Fields - Key 2 (Dif. 2)", 88870341, 2),
LocationData("Poisoned Fields - Key 3 (Dif. 3)", 88870342, 3),
LocationData("Poisoned Fields - Key 4", 88870343, 1),
LocationData("Poisoned Fields - Key 5 (Dif. 3)", 88870344, 3),
LocationData("Poisoned Fields - Key 6", 88870345, 1),
LocationData("Poisoned Fields - Key 7 (Dif. 2)", 88870346, 2),
LocationData("Poisoned Fields - Key 8", 88870347, 1),
LocationData("Poisoned Fields - Key 9 (Dif. 3)", 88870348, 3),
LocationData("Poisoned Fields - Fruit Pile 5 (Dif. 3)", 88870349, 3),
LocationData("Poisoned Fields - Fruit Pile 6 (Dif. 2)", 88870350, 2),
LocationData("Poisoned Fields - Fruit Pile 7 (Dif. 2)", 88870351, 2),
LocationData("Poisoned Fields - Fruit Pile 8 (Dif. 4)", 88870352, 4),
LocationData("Poisoned Fields - Acid Potion 1 (Dif. 4)", 88870353, 4),
LocationData("Poisoned Fields - Key 10 (Dif. 2)", 88870354, 2),
LocationData("Poisoned Fields - Shrink", 88870355, 1),
LocationData("Poisoned Fields - Reflective Shield (Dif. 2)", 88870356, 2),
LocationData("Poisoned Fields - Ham 1 (Dif. 3)", 88870357, 3),
LocationData("Poisoned Fields - Key 11", 88870358, 1),
LocationData("Poisoned Fields - Key 12", 88870359, 1),
LocationData("Poisoned Fields - Key 13 (Dif. 3)", 88870360, 3),
LocationData("Poisoned Fields - Key 14", 88870361, 1),
LocationData("Poisoned Fields - Key 15 (Dif. 2)", 88870362, 2),
LocationData("Poisoned Fields - Key 16", 88870363, 1),
LocationData("Poisoned Fields - Key 17 (Dif. 4)", 88870364, 4),
LocationData("Poisoned Fields - Key 18", 88870365, 1),
LocationData("Poisoned Fields - Small Pile of Gold 1 (Dif. 3)", 88870366, 3),
LocationData("Poisoned Fields - Bananas", 88870367, 1),
LocationData("Poisoned Fields - Acid Potion 2 (Dif. 3)", 88870368, 3),
LocationData("Poisoned Fields - Drumstick 1 (Dif. 3)", 88870369, 3),
LocationData("Poisoned Fields - Potion Pile 1 (Dif. 2)", 88870370, 2),
LocationData("Poisoned Fields - Small Pile of Gold 2 (Dif. 2)", 88870371, 2),
LocationData("Poisoned Fields - Very Small Pile of Gold 1 (Dif. 4)", 88870372, 4),
LocationData("Poisoned Fields - Half Barrel of Gold 1 (Dif. 3)", 88870373, 3),
LocationData("Poisoned Fields - Key 19", 88870374, 1),
LocationData("Poisoned Fields - Death 2 (Dif. 3)", 88870375, 3),
LocationData("Poisoned Fields - Fruit 1", 88870376, 1),
LocationData("Poisoned Fields - Speed Boots 1 (Dif. 4)", 88870377, 4),
LocationData("Poisoned Fields - Death 3", 88870378, 1),
LocationData("Poisoned Fields - Small Pile of Gold 3", 88870379, 1),
LocationData("Poisoned Fields - Full Barrel of Gold 1 (Dif. 4)", 88870380, 4),
LocationData("Poisoned Fields - Phoenix Familiar 1 (Dif. 2)", 88870381, 2),
LocationData("Poisoned Fields - Obelisk", 88870614, 1),
LocationData("Poisoned Fields Barrel - Scroll 1", 8887110, 1),
LocationData("Poisoned Fields Barrel - Potion 1", 8887111, 1),
LocationData("Poisoned Fields Barrel - Nothing 1", 8887112, 1),
LocationData("Poisoned Fields Barrel - Nothing 2", 8887113, 1),
LocationData("Poisoned Fields Barrel - Key 1", 8887114, 1),
LocationData("Poisoned Fields Barrel - Nothing 3", 8887115, 1),
LocationData("Poisoned Fields Barrel - Nothing 4", 8887116, 1),
LocationData("Poisoned Fields Barrel - Nothing 5", 8887117, 1),
LocationData("Poisoned Fields Barrel - Scroll 2", 8887118, 1),
LocationData("Poisoned Fields Barrel - Key 2", 8887119, 1),
LocationData("Poisoned Fields Barrel - Fruit 1 (Dif. 4)", 88871110, 4),
LocationData("Poisoned Fields Barrel - Scroll 3", 88871111, 1),
LocationData("Poisoned Fields Barrel - Meat 1 (Dif. 2)", 88871112, 2),
LocationData("Poisoned Fields Barrel - Fruit 2 (Dif. 4)", 88871113, 4),
LocationData("Poisoned Fields Barrel - Fruit 3 (Dif. 3)", 88871114, 3),
LocationData("Poisoned Fields Chest - Gold 1 (Dif. 3)", 88871115, 3),
LocationData("Poisoned Fields Barrel - Key 3", 88871116, 1),
LocationData("Poisoned Fields Barrel - Nothing 6", 88871117, 1),
LocationData("Poisoned Fields Barrel - Nothing 7", 88871118, 1),
LocationData("Poisoned Fields Barrel - Nothing 8", 88871119, 1),
LocationData("Poisoned Fields Barrel - Key 4 (Dif. 4)", 88871120, 4),
LocationData("Poisoned Fields Barrel - Key 5 (Dif. 3)", 88871121, 3),
LocationData("Poisoned Fields Barrel - Key 6", 88871122, 1),
LocationData("Poisoned Fields Barrel - Key 7 (Dif. 2)", 88871123, 2),
LocationData("Poisoned Fields Barrel - Key 8", 88871124, 1),
LocationData("Poisoned Fields Barrel - Nothing 9", 88871125, 1),
LocationData("Poisoned Fields Barrel - Nothing 10", 88871126, 1),
LocationData("Poisoned Fields Barrel - Nothing 11", 88871127, 1),
LocationData("Poisoned Fields Barrel - Key 9", 88871128, 1),
LocationData("Poisoned Fields Barrel - Thunder Hammer 1 (Dif. 2)", 88871129, 2),
LocationData("Poisoned Fields Barrel - Death 1", 88871130, 1),
LocationData("Poisoned Fields Barrel - Key 10", 88871131, 1),
LocationData("Poisoned Fields Chest - Anti-Death Halo 1", 88871132, 1),
LocationData("Poisoned Fields Chest - Potion 1 (Dif. 2)", 88871133, 2),
LocationData("Poisoned Fields Chest - Gold 2 (Dif. 2)", 88871134, 2),
LocationData("Poisoned Fields Chest - Gold 3 (Dif. 2)", 88871135, 2),
LocationData("Poisoned Fields Chest - Gold 4 (Dif. 2)", 88871136, 2),
LocationData("Poisoned Fields Chest - Gold 5", 88871137, 1),
LocationData("Poisoned Fields Chest - Gold 6 (Dif. 4)", 88871138, 4),
LocationData("Poisoned Fields Barrel - Nothing 12", 88871139, 1),
LocationData("Poisoned Fields Barrel - Gold 1 (Dif. 4)", 88871140, 4),
LocationData("Poisoned Fields Chest - Potion 2", 88871141, 1),
LocationData("Poisoned Fields Chest - Gold 7", 88871142, 1),
LocationData("Poisoned Fields Chest - Gold 8 (Dif. 3)", 88871143, 3),
LocationData("Poisoned Fields Chest - Gold 9 (Dif. 3)", 88871144, 3),
LocationData("Poisoned Fields Barrel - Fruit 4 (Dif. 2)", 88871145, 2),
LocationData("Poisoned Fields Barrel - Key 11", 88871146, 1),
LocationData("Poisoned Fields Barrel - Nothing 13", 88871147, 1),
LocationData("Poisoned Fields Barrel - Nothing 14", 88871148, 1),
LocationData("Poisoned Fields Chest - 3-Way Shot 1", 88871149, 1),
LocationData("Poisoned Fields Barrel - Meat 2 (Dif. 2)", 88871150, 2),
LocationData("Poisoned Fields Barrel - Nothing 15", 88871151, 1),
LocationData("Poisoned Fields Barrel - Nothing 16", 88871152, 1),
LocationData("Poisoned Fields Barrel - Key 12", 88871153, 1),
LocationData("Poisoned Fields Barrel - Death 2 (Dif. 4)", 88871154, 4),
LocationData("Poisoned Fields Barrel - Nothing 17", 88871155, 1),
LocationData("Poisoned Fields Barrel - Lightning Shield 1 (Dif. 3)", 88871156, 3),
LocationData("Poisoned Fields Chest - Fire Amulet 1 (Dif. 3)", 88871157, 3),
LocationData("Poisoned Fields Chest - Gold 10", 88871158, 1),
LocationData("Poisoned Fields Barrel - Potion 2 (Dif. 4)", 88871159, 4),
LocationData("Poisoned Fields Chest - Gold 11 (Dif. 3)", 88871160, 3),
LocationData("Poisoned Fields Chest - Meat 1", 88871161, 1),
LocationData("Poisoned Fields Barrel - Speed Boots 1", 88871162, 1),
LocationData("Poisoned Fields Barrel - Nothing 18", 88871163, 1),
LocationData("Poisoned Fields Barrel - Nothing 19", 88871164, 1),
LocationData("Poisoned Fields Barrel - Nothing 20", 88871165, 1),
LocationData("Poisoned Fields Barrel - Nothing 21", 88871166, 1),
LocationData("Poisoned Fields Barrel - Meat 3 (Dif. 4)", 88871167, 4),
LocationData("Poisoned Fields Chest - Rapid Fire 1 (Dif. 2)", 88871168, 2),
LocationData("Poisoned Fields Chest - Meat 2", 88871169, 1),
LocationData("Poisoned Fields Chest - Potion 3", 88871170, 1),
LocationData("Poisoned Fields Barrel - Key 13", 88871171, 1),
LocationData("Poisoned Fields Barrel - Gold 2", 88871172, 1),
LocationData("Poisoned Fields Barrel - 3-Way Shot 1 (Dif. 4)", 88871173, 4),
LocationData("Poisoned Fields Barrel - Scroll 4", 88871174, 1),
LocationData("Poisoned Fields Barrel - Nothing 22", 88871175, 1),
LocationData("Poisoned Fields Chest - Gold 12 (Dif. 3)", 88871176, 3),
LocationData("Poisoned Fields Barrel - Fruit 5 (Dif. 3)", 88871177, 3),
LocationData("Poisoned Fields Barrel - Key 14 (Dif. 3)", 88871178, 3),
LocationData("Poisoned Fields Barrel - Key 15", 88871179, 1),
LocationData("Poisoned Fields Barrel - Potion 3 (Dif. 2)", 88871180, 2),
LocationData("Poisoned Fields Barrel - Death 3 (Dif. 2)", 88871181, 2),
LocationData("Poisoned Fields Chest - Gold 13 (Dif. 4)", 88871182, 4),
LocationData("Poisoned Fields Chest - Gold 14", 88871183, 1),
]
haunted_cemetery: typing.List[LocationData] = [
LocationData("Haunted Cemetery - Acid Potion 1", 88870382, 1),
LocationData("Haunted Cemetery - Runestone", 88870383, 1),
LocationData("Haunted Cemetery - Small Pile of Gold", 88870384, 1),
LocationData("Haunted Cemetery - Key 1 (Dif. 3)", 88870385, 3),
LocationData("Haunted Cemetery - Acid Potion 2", 88870386, 1),
LocationData("Haunted Cemetery - 3-Way Shot", 88870387, 1),
LocationData("Haunted Cemetery - Key 2 (Dif. 2)", 88870388, 2),
LocationData("Haunted Cemetery - Key 3 (Dif. 3)", 88870389, 3),
LocationData("Haunted Cemetery - Key 4", 88870390, 1),
LocationData("Haunted Cemetery - Key 5 (Dif. 2)", 88870391, 2),
LocationData("Haunted Cemetery - Key 6", 88870392, 1),
LocationData("Haunted Cemetery - Key 7 (Dif. 2)", 88870393, 2),
LocationData("Haunted Cemetery - Speed Boots (Dif. 3)", 88870394, 3),
LocationData("Haunted Cemetery - Key 8 (Dif. 4)", 88870395, 4),
LocationData("Haunted Cemetery - Death 1", 88870396, 1),
LocationData("Haunted Cemetery - Phoenix Familiar", 88870397, 1),
LocationData("Haunted Cemetery - Timestop", 88870398, 1),
LocationData("Haunted Cemetery - Fire Amulet (Dif. 2)", 88870399, 2),
LocationData("Haunted Cemetery - Death 2 (Dif. 2)", 88870400, 2),
LocationData("Haunted Cemetery - Obelisk", 88870615, 1),
LocationData("Haunted Cemetery Barrel - Invulnerability 1", 8887120, 1),
LocationData("Haunted Cemetery Barrel - Fire Shield 1 (Dif. 4)", 8887121, 4),
LocationData("Haunted Cemetery Barrel - Fruit 1 (Dif. 4)", 8887122, 4),
LocationData("Haunted Cemetery Barrel - Meat 1", 8887123, 1),
LocationData("Haunted Cemetery Barrel - Fruit 2 (Dif. 2)", 8887124, 2),
LocationData("Haunted Cemetery Barrel - Potion 1 (Dif. 4)", 8887125, 4),
LocationData("Haunted Cemetery Barrel - Key 1 (Dif. 2)", 8887126, 2),
LocationData("Haunted Cemetery Chest - Potion 1 (Dif. 2)", 8887127, 2),
LocationData("Haunted Cemetery Barrel - Poison Fruit 1 (Dif. 4)", 8887128, 4),
LocationData("Haunted Cemetery Barrel - Key 2 (Dif. 2)", 8887129, 2),
LocationData("Haunted Cemetery Dark Chest - Random 1 (Dif. 2)", 88871210, 2),
LocationData("Haunted Cemetery Barrel - Key 3 (Dif. 3)", 88871211, 3),
LocationData("Haunted Cemetery Chest - Scroll 1", 88871212, 1),
LocationData("Haunted Cemetery Barrel - Poison Fruit 2 (Dif. 2)", 88871213, 2),
LocationData("Haunted Cemetery Barrel - Poison Fruit 3 (Dif. 3)", 88871214, 3),
LocationData("Haunted Cemetery Chest - Rapid Fire 1 (Dif. 2)", 88871215, 2),
LocationData("Haunted Cemetery Chest - Gold 1 (Dif. 4)", 88871216, 4),
LocationData("Haunted Cemetery Chest - Shrink 1 (Dif. 3)", 88871217, 3),
LocationData("Haunted Cemetery Chest - Potion 2 (Dif. 3)", 88871218, 3),
LocationData("Haunted Cemetery Barrel - Scroll 1", 88871219, 1),
LocationData("Haunted Cemetery Barrel - Scroll 2", 88871220, 1),
LocationData("Haunted Cemetery Barrel - Meat 2 (Dif. 3)", 88871221, 3),
LocationData("Haunted Cemetery Chest - Meat 1 (Dif. 2)", 88871222, 2),
LocationData("Haunted Cemetery Barrel - Key 4 (Dif. 2)", 88871223, 2),
LocationData("Haunted Cemetery Barrel - Potion 2", 88871224, 1),
LocationData("Haunted Cemetery Barrel - Death 1 (Dif. 4)", 88871225, 4),
LocationData("Haunted Cemetery Barrel - Gold 1", 88871226, 1),
LocationData("Haunted Cemetery Chest - Levitate 1", 88871227, 1),
LocationData("Haunted Cemetery Barrel - Fruit 3 (Dif. 3)", 88871228, 3),
LocationData("Haunted Cemetery Chest - Gold 2 (Dif. 2)", 88871229, 2),
LocationData("Haunted Cemetery Chest - Fruit 1", 88871230, 1),
LocationData("Haunted Cemetery Barrel - Nothing 1", 88871231, 1),
LocationData("Haunted Cemetery Barrel - Key 5", 88871232, 1),
LocationData("Haunted Cemetery Barrel - Key 6", 88871233, 1),
LocationData("Haunted Cemetery Barrel - Gold 2 (Dif. 3)", 88871234, 3),
LocationData("Haunted Cemetery Barrel - Key 7 (Dif. 4)", 88871235, 4),
LocationData("Haunted Cemetery Barrel - Key 8", 88871236, 1),
LocationData("Haunted Cemetery Barrel - Death 2", 88871237, 1),
LocationData("Haunted Cemetery Barrel - Gold 3 (Dif. 2)", 88871238, 2),
LocationData("Haunted Cemetery Chest - Death 1 (Dif. 3)", 88871239, 3),
LocationData("Haunted Cemetery Chest - 3-Way Shot 1 (Dif. 2)", 88871240, 2),
LocationData("Haunted Cemetery Chest - Gold 3", 88871241, 1),
LocationData("Haunted Cemetery Chest - Meat 2 (Dif. 4)", 88871242, 4),
]
venomous_spire: typing.List[LocationData] = [
LocationData("Venemous Spire - Acid Potion 1", 88870401, 1),
LocationData("Venemous Spire - Invisibility", 88870402, 1),
LocationData("Venemous Spire - Flame of Tarkana", 88870403, 1),
LocationData("Venemous Spire - Runestone", 88870404, 1),
LocationData("Venemous Spire - Super Shot", 88870405, 1),
LocationData("Venemous Spire - Death 1", 88870406, 1),
LocationData("Venemous Spire - Key 1 (Dif. 4)", 88870407, 4),
LocationData("Venemous Spire - Key 2 (Dif. 3)", 88870408, 3),
LocationData("Venemous Spire - Lightning Amulet (Dif. 2)", 88870409, 2),
LocationData("Venemous Spire - Pineapple (Dif. 3)", 88870410, 3),
LocationData("Venemous Spire - Half Barrel of Gold 1 (Dif. 3)", 88870411, 3),
LocationData("Venemous Spire - Death 2 (Dif. 2)", 88870412, 2),
LocationData("Venemous Spire - Key 3 (Dif. 3)", 88870413, 3),
LocationData("Venemous Spire - Key 4 (Dif. 2)", 88870414, 2),
LocationData("Venemous Spire - Phoenix Familiar (Dif. 4)", 88870415, 4),
LocationData("Venemous Spire - Key 5", 88870416, 1),
LocationData("Venemous Spire Barrel - Speed Boots 1", 8887130, 1),
LocationData("Venemous Spire Barrel - Potion 1", 8887131, 1),
LocationData("Venemous Spire Barrel - Poison Fruit 1 (Dif. 2)", 8887132, 2),
LocationData("Venemous Spire Barrel - Poison Fruit 2", 8887133, 1),
LocationData("Venemous Spire Barrel - Key 1 (Dif. 3)", 8887134, 3),
LocationData("Venemous Spire Chest - Meat 1 (Dif. 3)", 8887135, 3),
LocationData("Venemous Spire Barrel - Key 2", 8887136, 1),
LocationData("Venemous Spire Chest - Scroll 1", 8887137, 1),
LocationData("Venemous Spire Barrel - Scroll 1", 8887138, 1),
LocationData("Venemous Spire Barrel - Scroll 2", 8887139, 1),
LocationData("Venemous Spire Barrel - Scroll 3", 88871310, 1),
LocationData("Venemous Spire Barrel - Scroll 4", 88871311, 1),
LocationData("Venemous Spire Barrel - Key 3", 88871312, 1),
LocationData("Venemous Spire Barrel - Key 4 (Dif. 3)", 88871313, 3),
LocationData("Venemous Spire Barrel - Key 5", 88871314, 1),
LocationData("Venemous Spire Barrel - Scroll 5", 88871315, 1),
LocationData("Venemous Spire Barrel - Key 6 (Dif. 4)", 88871316, 4),
LocationData("Venemous Spire Barrel - Key 7", 88871317, 1),
LocationData("Venemous Spire Barrel - Key 8 (Dif. 4)", 88871318, 4),
LocationData("Venemous Spire Barrel - Key 9", 88871319, 1),
LocationData("Venemous Spire Barrel - Key 10", 88871320, 1),
LocationData("Venemous Spire Barrel - Acid Breath 1 (Dif. 2)", 88871321, 2),
LocationData("Venemous Spire Barrel - Key 11 (Dif. 2)", 88871322, 2),
LocationData("Venemous Spire Chest - Speed Boots 1", 88871323, 1),
LocationData("Venemous Spire Barrel - Key 12", 88871324, 1),
LocationData("Venemous Spire Barrel - Gold 1 (Dif. 2)", 88871325, 2),
LocationData("Venemous Spire Barrel - Gold 2", 88871326, 1),
LocationData("Venemous Spire Barrel - Meat 1 (Dif. 2)", 88871327, 2),
LocationData("Venemous Spire Chest - Potion 1", 88871328, 1),
LocationData("Venemous Spire Dark Chest - Random 1", 88871329, 1),
LocationData("Venemous Spire Chest - Fruit 1", 88871330, 1),
LocationData("Venemous Spire Chest - Meat 2", 88871331, 1),
LocationData("Venemous Spire Chest - Death 1", 88871332, 1),
LocationData("Venemous Spire Barrel - Key 13", 88871333, 1),
LocationData("Venemous Spire Chest - Fruit 2 (Dif. 4)", 88871334, 4),
LocationData("Venemous Spire Barrel - Gold 3 (Dif. 3)", 88871335, 3),
LocationData("Venemous Spire Barrel - Key 14", 88871336, 1),