-
Notifications
You must be signed in to change notification settings - Fork 8
/
music-locations.json
1813 lines (1813 loc) · 43.1 KB
/
music-locations.json
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
{
"dungeons": {
"Decrepit Sewers": "Anthem of Rot (Decrepit Sewers)",
"Infested Pit": "Arachnophobia (Infested Pit)",
"Lost Sanctuary": "Bottom of the Food Chain (Lost Sanctuary)",
"Underworld Crypt": "March of the Defeated (Underworld Crypt)",
"Sand-Swept Tomb": "Mirage of Dust (Sand-Swept Tomb)",
"Ice Barrows": "Dissonance (Ice Barrows)",
"Undergrowth Ruins": "Tribal Drums Beating (Undergrowth Ruins)",
"Galleon's Graveyard": "Mind of a Pirate (Galleon's Graveyard)",
"Fallen Factory": "A-U-T-O-M-A-T-I-O-N (Fallen Factory)",
"Eldritch Outlook": "Everpresence (Eldritch Outlook)",
"Corrupted Decrepit Sewers": "Insanity (Corrupted Dungeon)",
"Corrupted Infested Pit": "Insanity (Corrupted Dungeon)",
"Corrupted Lost Sanctuary": "Insanity (Corrupted Dungeon)",
"Corrupted Underworld Crypt": "Insanity (Corrupted Dungeon)",
"Corrupted Sand-Swept Tomb": "Insanity (Corrupted Dungeon)",
"Corrupted Ice Barrows": "Insanity (Corrupted Dungeon)",
"Corrupted Undergrowth Ruins" : "Insanity (Corrupted Dungeon)",
"The Canyon Colossus": "At Its Breaking Point (The Canyon Colossus)",
"Nest of The Grootslangs": "Feared by Earth (Nest of the Grootslangs)",
"Orphion's Nexus of Light": "Journey (Orphion's Nexus of Light)"
},
"entries": {
"wars": "Begin the Siege! (Guild Wars)",
"characterSelector": "Hard Work Alone (Thesead)",
"regionCompleted": "Triumphant Adventure (Region Completed)",
"mythicFound": "Infinite Pleasure (Mythic Found)",
"easterEgg1": "Never Gonna Give You Up (Easter Egg 1)"
},
"bosses": {
"Witherhead": "Fierce Foe (Boss Battle 1)",
"Well Witch": "Fearsome Foe (Boss Battle 2)",
"Sayleros' Brother": "Fearsome Foe (Boss Battle 2)",
"Sayleros' Brother's Skeleton": "Fearsome Foe (Boss Battle 2)",
"Haunted Mask": "Fearsome Foe (Boss Battle 2)",
"Cluckles": "Energetic Encounter (Boss Battle 5)",
"Rotten Necromancer": "Fearsome Foe (Boss Battle 2)",
"Colossal Rat": "Energetic Encounter (Boss Battle 5)",
"Etus the Blind": "Fearsome Foe (Boss Battle 2)",
"Albert the Strong": "Fearsome Foe (Boss Battle 2)",
"Totemic Protector": "Fearsome Foe (Boss Battle 2)",
"Pharaoh Nabak": "Fearsome Foe (Boss Battle 2)",
"The Mummy": "Energetic Encounter (Boss Battle 5)",
"The Cockatrice": "Fearsome Foe (Boss Battle 2)",
"Snow Bear": "Infinite Ascension (Tower of Ascension 2)",
"Argaddon": "Infinite Ascension (Tower of Ascension 2)",
"Witch-Doctor": "Infinite Ascension (Tower of Ascension 2)",
"Guardian": "Infinite Ascension (Tower of Ascension 2)",
"Chained Beast": "Infinite Ascension (Tower of Ascension 2)",
"Alkevö": "Infinite Ascension (Tower of Ascension 2)",
"Death": "Infinite Ascension (Tower of Ascension 2)",
"Captain": "Fearsome Foe (Boss Battle 2)",
"Phantom Twain": "Fearsome Foe (Boss Battle 2)",
"Dead Pirate Guard": "Fearsome Foe (Boss Battle 2)",
"Treasure Guardian": "Fearsome Foe (Boss Battle 2)",
"Possessed Aryn": "Fearsome Foe (Boss Battle 2)",
"Corrupter of Worlds": "World Ender (Boss Battle 10)",
"Corrupted Amadel": "Fearsome Foe (Boss Battle 2)",
"Shadow Amadel": "Fearsome Foe (Boss Battle 2)",
"Fully Formed Amadel": "Melody of Reckoning (Boss Battle 7)",
"Wynnexcavation Leader Amadel": "Fearsome Foe (Boss Battle 2)",
"Aenara": "Fearsome Foe (Boss Battle 2)",
"Mooington": "Fearsome Foe (Boss Battle 2)",
"Baab": "Fearsome Foe (Boss Battle 2)",
"Defective Guard Golem": "Fearsome Foe (Boss Battle 2)",
"Cursed Warlock": "Fearsome Foe (Boss Battle 2)",
"Biohazard Amalgamate": "Fearsome Foe (Boss Battle 2)",
"Bigfoot": "Fearsome Foe (Boss Battle 2)",
"Remains of Mister Caritat": "Energetic Encounter (Boss Battle 5)",
"Naragath, the Demon Prince": "Weirding (Boss Battle 9)",
"Harrowing Banshee": "Fearsome Foe (Boss Battle 2)",
"Devourer of Light": "Fearsome Foe (Boss Battle 2)",
"Gryndilin Chief": "Fearsome Foe (Boss Battle 2)",
"Grand Mage Vidobe": "Fearsome Foe (Boss Battle 2)",
"Representative Ernold": "Fearsome Foe (Boss Battle 2)",
"Corpus Accipientis": "Fearsome Foe (Boss Battle 2)",
"Qira, Mistress of the Hive": "Mistress of the Hive (Boss Battle 6)",
"Veekhat the Minotaur": "Fearsome Foe (Boss Battle 2)",
"Krolton": "Fearsome Foe (Boss Battle 2)",
"Captain Goldenclaw": "Fearsome Foe (Boss Battle 2)",
"Steam Mech-DM1": "Fearsome Foe (Boss Battle 2)",
"Fiery Mech-DM2": "Fearsome Foe (Boss Battle 2)",
"Intelligent Mech-DM3": "Fearsome Foe (Boss Battle 2)",
"Big Boss Mech-DM666": "Fearsome Foe (Boss Battle 2)",
"Mech X": "Energetic Encounter (Boss Battle 5)",
"Maxi-M Mobile Cannon 04": "Fearsome Foe (Boss Battle 2)",
"Maxi-M Combat Disruptor 02": "Fearsome Foe (Boss Battle 2)",
"Aledar, the Betrayed": "A Day to Remember (Boss Battle 13)",
"Tasim, the Resigned": "A Day to Remember (Boss Battle 13)",
"Aledar, the Exterminator": "A Day to Remember (Boss Battle 13)",
"Tasim, the Protector": "A Day to Remember (Boss Battle 13)",
"Panic Zealot": "Catalyst for a Fractured Psyche (Boss Battle 15)"
},
"areas": [
{
"id": "Rotten Passage",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": 3886,
"startZ": -2258,
"endX": 3961,
"endZ": -2181
}
},
{
"id": "Bovine Barn",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": 1739,
"startZ": -3496,
"endX": 1802,
"endZ": -3435
}
},
{
"id": "Plague Laboratory",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": -2295,
"startZ": -5657,
"endX": -2227,
"endZ": -5569
}
},
{
"id": "Tribal Sanctuary",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": -5005,
"startZ": -995,
"endX": -4945,
"endZ": -939
}
},
{
"id": "Challenge of the Blades",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": -772,
"startZ": -5682,
"endX": -744,
"endZ": -5649
}
},
{
"id": "Altar of Sanctification",
"trackName": "Weirding (Boss Battle 9)",
"fastSwitch": true,
"region": {
"startX": -2873,
"startZ": -687,
"endX": -2807,
"endZ": -621
}
},
{
"id": "Prison of Souls",
"trackName": "Fearsome Foe (Boss Battle 2)",
"fastSwitch": true,
"region": {
"startX": -53,
"startZ": 401,
"endX": 6,
"endZ": 463
}
},
{
"id": "Sunrise Canyon",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": 2288,
"startZ": -1483,
"endX": 2383,
"endZ": -1406
}
},
{
"id": "Arena of the Legends",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": -3678,
"startZ": -1069,
"endX": -3610,
"endZ": -1013
}
},
{
"id": "Geyser Pit",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": -3286,
"startZ": -3339,
"endX": -3211,
"endZ": -3247
}
},
{
"id": "Aerie of the Recluse",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": -2977,
"startZ": -3157,
"endX": -2893,
"endZ": -3112
}
},
{
"id": "The Orange Wybel",
"trackName": "Chaotic Encounter (Boss Battle 3)",
"fastSwitch": true,
"region": {
"startX": 2410,
"startZ": -4701,
"endX": 2468,
"endZ": -4638
}
},
{
"id": "Infested Pit Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": -10096,
"startZ": -11117,
"endX": -10039,
"endZ": -11066
}
},
{
"id": "Lost Sanctuary Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": -11173,
"startZ": -10460,
"endX": -11148,
"endZ": -10401
}
},
{
"id": "Underworld Crypt Boss",
"trackName": "Uncertain Encounter (Boss Battle 4)",
"fastSwitch": true,
"region": {
"startX": -12195,
"startZ": -12341,
"endX": -12265,
"endZ": -12297
}
},
{
"id": "Sand-Swerpt Tomb Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": -11897,
"startZ": -11497,
"endX": -11831,
"endZ": -11423
}
},
{
"id": "Ice Barrows Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": 19,
"startZ": 1824,
"endX": 80,
"endZ": 1883
}
},
{
"id": "Undergrowth Ruins Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": -2657,
"startZ": -949,
"endX": -2588,
"endZ": -886
}
},
{
"id": "Galleon's Graveyard Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": -3928,
"startZ": -2600,
"endX": -3862,
"endZ": -2520
}
},
{
"id": "Fallen Factory Boss",
"trackName": "Fierce Foe (Boss Battle 1)",
"fastSwitch": true,
"region": {
"startX": -8865,
"startZ": -2329,
"endX": -8740,
"endZ": -2239
}
},
{
"id": "Eldritch Outlook Boss",
"trackName": "Genesis of the End (Boss Battle 12)",
"fastSwitch": true,
"region": {
"startX": 4901,
"startZ": 1808,
"endX": 4961,
"endZ": 1868
}
},
{
"id": "Tower of Ascention Floor 1",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": -282.0,
"startZ": 777.0,
"endX": -204.0,
"endZ": 1538.0
}
},
{
"id": "Tower of Ascention Floor 2",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": -354.0,
"startZ": 777.0,
"endX": -297.0,
"endZ": 1540.0
}
},
{
"id": "Tower of Ascention Floor 3",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": -442.0,
"startZ": 778.0,
"endX": -368.0,
"endZ": 1540.0
}
},
{
"id": "Tower of Ascention Floor 4",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": -517.0,
"startZ": 779.0,
"endX": -451.0,
"endZ": 1541.0
}
},
{
"id": "Tower of Ascention Floor 5",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": -601.0,
"startZ": 780.0,
"endX": -536.0,
"endZ": 1542.0
}
},
{
"id": "Tower of Ascention Floor 6",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": -691.0,
"startZ": 781.0,
"endX": -621.0,
"endZ": 1544.0
}
},
{
"id": "Tower of Ascention Floor 7",
"trackName": "Endless Climb (Tower of Ascension 1)",
"fastSwitch": false,
"region": {
"startX": 298.0,
"startZ": 988.0,
"endX": 1434.0,
"endZ": 1296.0
}
},
{
"id": "Legendary Challenge",
"trackName": "Legendary Rumble! (Boss Battle 14)",
"fastSwitch": true,
"region": {
"startX": -5676,
"startZ": -3117,
"endX": -5688,
"endZ": -3028
}
},
{
"id": "Bob's Reincarnation",
"trackName": "The Last Stand (Boss Battle 8)",
"fastSwitch": true,
"region": {
"startX": 8193,
"startZ": 8034,
"endX": 8256,
"endZ": 8030
}
},
{
"id": "Hive Thunder Floor",
"trackName": "Elemental Chaos (Hive Floors)",
"fastSwitch": false,
"region": {
"startX": 1045.0,
"startZ": -7835.0,
"endX": 1080.0,
"endZ": -7223.0
}
},
{
"id": "Hive Air Floor",
"trackName": "Elemental Chaos (Hive Floors)",
"fastSwitch": false,
"region": {
"startX": 976.0,
"startZ": -7832.0,
"endX": 1009.0,
"endZ": -7222.0
}
},
{
"id": "Hive Earth Floor",
"trackName": "Elemental Chaos (Hive Floors)",
"fastSwitch": false,
"region": {
"startX": 1116.0,
"startZ": -7835.0,
"endX": 1151.0,
"endZ": -7222.0
}
},
{
"id": "Hive Water Floor",
"trackName": "Elemental Chaos (Hive Floors)",
"fastSwitch": false,
"region": {
"startX": 1186.0,
"startZ": -7834.0,
"endX": 1223.0,
"endZ": -7221.0
}
},
{
"id": "Hive Fire Floor",
"trackName": "Elemental Chaos (Hive Floors)",
"fastSwitch": false,
"region": {
"startX": 1255.0,
"startZ": -7834.0,
"endX": 1289.0,
"endZ": -7220.0
}
},
{
"id": "Death's Realm",
"trackName": "Funeral Service at 10 O'Clock (Death's Realm)",
"fastSwitch": false,
"region": {
"startX": 11.0,
"startZ": -8265.0,
"endX": 971.0,
"endZ": -7305.0
}
},
{
"id": "Seaskipper",
"trackName": "Beatskipper (Seaskipper)",
"fastSwitch": true,
"region": {
"startX": 16327,
"startZ": 15725,
"endX": 16347,
"endZ": 15751
}
},
{
"id": "Relos",
"trackName": "Waters of Prosperity (Relos)",
"fastSwitch": false,
"region": {
"startX": -1720.0,
"startZ": -2426.0,
"endX": -1580.0,
"endZ": -2293.0
}
},
{
"id": "Corkus Docks",
"trackName": "Settlements of Freedom (Corkus Docks)",
"fastSwitch": false,
"region": {
"startX": -1447.0,
"startZ": -3006.0,
"endX": -1247.0,
"endZ": -2839.0
}
},
{
"id": "Corkus City",
"trackName": "Corkian National Anthem (Corkus City)",
"fastSwitch": false,
"region": {
"startX": -1696.0,
"startZ": -3018.0,
"endX": -1461.0,
"endZ": -2818.0
}
},
{
"id": "Avos Territory",
"trackName": "Wings of Distrust (Avos Territory)",
"fastSwitch": false,
"region": {
"startX": -2000.0,
"startZ": -3383.0,
"endX": -1655.0,
"endZ": -3070.0
}
},
{
"id": "Corkus Island",
"trackName": "Machinations of Chaos (Corkus)",
"fastSwitch": false,
"region": {
"startX": -2124.0,
"startZ": -3466.0,
"endX": -1216.0,
"endZ": -1998.0
}
},
{
"id": "Ruined Olmic City",
"trackName": "Where They Wandered (Ruined Olmic City)",
"fastSwitch": false,
"region": {
"startX": 395.0,
"startZ": -661.0,
"endX": 786.0,
"endZ": -302.0
}
},
{
"id": "Eyeball Forest",
"trackName": "All Eyes on Me (Eyeball Forest)",
"fastSwitch": false,
"region": {
"startX": 776.0,
"startZ": -340.0,
"endX": 1078.0,
"endZ": -645.0
}
},
{
"id": "Lutho",
"trackName": "Freedom in Darkness (Lutho)",
"fastSwitch": false,
"region": {
"startX": 925.0,
"startZ": -760.0,
"endX": 1048.0,
"endZ": -650.0
}
},
{
"id": "Toxic Wastes",
"trackName": "Its Melting Point (Toxic Wastes)",
"fastSwitch": false,
"region": {
"startX": 698.0,
"startZ": -1105.0,
"endX": 1126.0,
"endZ": -797.0
}
},
{
"id": "Void Valley",
"trackName": "Tangled in Endless Roots (Void Valley)",
"fastSwitch": false,
"region": {
"startX": 1015.0,
"startZ": -1148.0,
"endX": 1298.0,
"endZ": -912.0
}
},
{
"id": "Portal to Dern",
"trackName": "End of the Road (Portal to Dern)",
"fastSwitch": false,
"region": {
"startX": 1232.0,
"startZ": -532.0,
"endX": 1407.0,
"endZ": -307.0
}
},
{
"id": "Ahmsord",
"trackName": "City in the Sky (Ahmsord)",
"fastSwitch": false,
"region": {
"startX": 935.0,
"startZ": -4637.0,
"endX": 1171.0,
"endZ": -4462.0
}
},
{
"id": "Kandon-Beda",
"trackName": "Standing on Thin Air (Kandon-Beda)",
"fastSwitch": false,
"region": {
"startX": 539.0,
"startZ": -4566.0,
"endX": 817.0,
"endZ": -4348.0
}
},
{
"id": "Sky Islands",
"trackName": "Amongst the Clouds (Sky Islands)",
"fastSwitch": false,
"region": {
"startX": 699.0,
"startZ": -4958.0,
"endX": 1542.0,
"endZ": -4228.0
}
},
{
"id": "Nesaak Village",
"trackName": "Snowdrifts Billowing (Nesaak Village)",
"fastSwitch": false,
"region": {
"startX": 61.0,
"startZ": -888.0,
"endX": 226.0,
"endZ": -748.0
}
},
{
"id": "Bob's Thomb",
"trackName": "Visions of the Warrior (Bob's Tomb)",
"fastSwitch": false,
"region": {
"startX": 246,
"startZ": -747,
"endX": 380,
"endZ": -867
}
},
{
"id": "House of Twain",
"trackName": "Forlorn Halls (House of Twain)",
"fastSwitch": false,
"region": {
"startX": 88.0,
"startZ": -398.0,
"endX": 142.0,
"endZ": -319.0
}
},
{
"id": "Great Bridge",
"trackName": "The Great Race (Great Bridge)",
"fastSwitch": true,
"region": {
"startX": -502.0,
"startZ": -743.0,
"endX": -238.0,
"endZ": -647.0
}
},
{
"id": "Lusuco",
"trackName": "Frozen Waltz (Lusuco)",
"fastSwitch": false,
"region": {
"startX": -239.0,
"startZ": -338.0,
"endX": -156.0,
"endZ": -281.0
}
},
{
"id": "Ice Canyon",
"trackName": "Frozen Lands (Ice Canyon)",
"fastSwitch": false,
"region": {
"startX": -458.0,
"startZ": -539.0,
"endX": -79.0,
"endZ": -272.0
}
},
{
"id": "Wynnter Fair",
"trackName": "Craftmas Carol (Craftmas Island)",
"fastSwitch": false,
"region": {
"startX": -460.0,
"startZ": -911.0,
"endX": -279.0,
"endZ": -756.0
}
},
{
"id": "Nesaak Forest",
"trackName": "Icy Steps (Nesaak Forest)",
"fastSwitch": false,
"region": {
"startX": -246.0,
"startZ": -595.0,
"endX": 360.0,
"endZ": -978.0
}
},
{
"id": "Nemract",
"trackName": "Muddy Outlook (Nemract)",
"fastSwitch": false,
"region": {
"startX": 2.0,
"startZ": -2304.0,
"endX": 238.0,
"endZ": -2124.0
}
},
{
"id": "Saint's Row",
"trackName": "Defiled Sancitity (Saint's Row)",
"fastSwitch": false,
"region": {
"startX": 272.0,
"startZ": -2173.0,
"endX": 393.0,
"endZ": -2015.0
}
},
{
"id": "Nemract Swamp",
"trackName": "Unfamiliar Lands (Nemract Swamp)",
"fastSwitch": false,
"region": {
"startX": -49.0,
"startZ": -2322.0,
"endX": 433.0,
"endZ": -1996.0
}
},
{
"id": "Ancient Nemract",
"trackName": "Yearning for the Days of Glory (Ancient Nemract)",
"fastSwitch": false,
"region": {
"startX": 90.0,
"startZ": -1993.0,
"endX": 338.0,
"endZ": -1851.0
}
},
{
"id": "Rymek Mansion",
"trackName": "Mission Wynnpossible (Rymek Mansion)",
"fastSwitch": false,
"region": {
"startX": 1161.0,
"startZ": -1311.0,
"endX": 1214.0,
"endZ": -1246.0
}
},
{
"id": "Rymek",
"trackName": "Shady Deals Abounding (Rymek)",
"fastSwitch": false,
"region": {
"startX": 1159.0,
"startZ": -1376.0,
"endX": 1382.0,
"endZ": -1185.0
}
},
{
"id": "Mesa",
"trackName": "Sun-Stained Stones (Mesa)",
"fastSwitch": false,
"region": {
"startX": 968.0,
"startZ": -1709.0,
"endX": 1516.0,
"endZ": -1162.0
}
},
{
"id": "Temple of Legends",
"trackName": "In The Little Wood (Little Wood)",
"fastSwitch": false,
"region": {
"startX": -665,
"startZ": -1091,
"endX": -719,
"endZ": -989
}
},
{
"id": "City of Troms",
"trackName": "Wynn's Shining Fortress (City of Troms)",
"fastSwitch": false,
"region": {
"startX": -932.0,
"startZ": -1057.0,
"endX": -738.0,
"endZ": -834.0
}
},
{
"id": "Dernel Jungle 1",
"trackName": "Uncivilization (Dernel Jungle)",
"fastSwitch": false,
"region": {
"startX": -1018.0,
"startZ": -543.0,
"endX": -487.0,
"endZ": -229.0
}
},
{
"id": "Dernel Jungle 2",
"trackName": "Uncivilization (Dernel Jungle)",
"fastSwitch": false,
"region": {
"startX": -1014.0,
"startZ": -835.0,
"endX": -808.0,
"endZ": -546.0
}
},
{
"id": "Iboju Village",
"trackName": "Harmonic Tradition (Iboju Village)",
"fastSwitch": false,
"region": {
"startX": -828.0,
"startZ": -722.0,
"endX": -704.0,
"endZ": -571.0
}
},
{
"id": "Jungle",
"trackName": "The Legend Begins (Jungle)",
"fastSwitch": false,
"region": {
"startX": -803.0,
"startZ": -832.0,
"endX": -502.0,
"endZ": -557.0
}
},
{
"id": "Ragni Outskirts",
"trackName": "Epic Wynn (Ragni Outskirts)",
"fastSwitch": false,
"region": {
"startX": -1663.0,
"startZ": -1771.0,
"endX": -985.0,
"endZ": -1360.0
}
},
{
"id": "Ragni",
"trackName": "Luxury of the Cease-Fire (Ragni)",
"fastSwitch": false,
"region": {
"startX": -979.0,
"startZ": -1767.0,
"endX": -741.0,
"endZ": -1413.0
}
},
{
"id": "Emerald Trail",
"trackName": "Adventure (Emerald Trail)",
"fastSwitch": false,
"region": {
"startX": -739.0,
"startZ": -1765.0,
"endX": -405.0,
"endZ": -1479.0
}
},
{
"id": "Ravine Village",
"trackName": "Sheltered Settlement (Ravine Village)",
"fastSwitch": false,
"region": {
"startX": -651.0,
"startZ": -1456.0,
"endX": -559.0,
"endZ": -1366.0
}
},
{
"id": "Pigman's Ravine 1",
"trackName": "Treacherous Walkways (Pigman's Ravines)",
"fastSwitch": false,
"region": {
"startX": -919.0,
"startZ": -1359.0,
"endX": -749.0,
"endZ": -1168.0
}
},
{
"id": "Pigman's Ravine 2",
"trackName": "Treacherous Walkways (Pigman's Ravines)",
"fastSwitch": false,
"region": {
"startX": -748.0,
"startZ": -1405.0,
"endX": -611.0,
"endZ": -1320.0
}
},
{
"id": "Pigman's Ravine 3",
"trackName": "Treacherous Walkways (Pigman's Ravines)",
"fastSwitch": false,
"region": {
"startX": -747.0,
"startZ": -1317.0,
"endX": -678.0,
"endZ": -1236.0
}
},
{
"id": "Coast Trail 1",
"trackName": "Fresh Breeze of Salt (Coast Trail)",
"fastSwitch": false,
"region": {
"startX": -822.0,
"startZ": -2347.0,
"endX": -509.0,
"endZ": -1973.0
}
},
{
"id": "Coast Trail 2",
"trackName": "Fresh Breeze of Salt (Coast Trail)",
"fastSwitch": false,
"region": {
"startX": -507.0,
"startZ": -2269.0,
"endX": -353.0,
"endZ": -1987.0
}
},
{
"id": "Coast Trail 3",
"trackName": "Fresh Breeze of Salt (Coast Trail)",
"fastSwitch": false,
"region": {
"startX": -353.0,
"startZ": -2287.0,
"endX": -236.0,
"endZ": -2054.0
}
},
{
"id": "Coast Trail 4",
"trackName": "Fresh Breeze of Salt (Coast Trail)",