-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdata.json
2522 lines (2522 loc) · 86 KB
/
data.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
{
"acts": [
{
"act": "Act I",
"actid": 1,
"zones": [
{
"hastrial": false,
"image": [
"none"
],
"note": "Follow the coastline. A lot of the layouts are outdated and I would recommend to just disable the images and stick to the textual tips.",
"level": 1,
"name": "The Twilight Strand",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "Your nightmare lies ahead.",
"quest": "Enemy at the Gate",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Coast_Seed_1",
"Coast_Seed_2",
"Coast_Seed_3"
],
"note": "Keep running while ignoring most monsters, find the waypoint and proceed to the Mud Flats. Ignore Tidal Island for now.",
"level": 2,
"name": "The Coast",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Follow one of the two roads until you reach the miniboss, kill him, collect all loot and return to town to vendor get new gems and a Quicksilver flask. After that take the waypoint to the Submerged Passage and follow the 2nd tip.",
"level": 3,
"name": "The Tidal Island",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "This layout is always a circle.",
"quest": "Mercy Mission",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Mud_Seed_1",
"Mud_Seed_2"
],
"note": "Collect 3 glyphs, clicking on any will enrage the Rhoas around it. You can usually tell where the glyphs are by following the little rivers. Unlock the entrance to Submerged Passage and ignore the Fetid pool.",
"level": 4,
"name": "The Mud Flats",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "Green circles indicate the area in which the quest items are grouped. Little rivers connect the three items.",
"quest": "Breaking Some Eggs",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "To complete the side-quest you need to kill every monster. Rewards passive respec book.",
"level": 5,
"name": "The Fetid Pool",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "This layout is always a circle.",
"quest": "A Dirty Job",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Sub_Seed_1",
"Sub_Seed_2",
"Sub_Seed_3"
],
"note": "1.From the waypoint go back to the Coast, and from there to the Tidal Island. 2.Find the double bridge and place a portal. Continue to the Ledge. 3.Before the bridge look around for the Flooded depths.",
"level": 5,
"name": "The Submerged Passage",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Dweller of the Deep",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Flood_Seed_1",
"Flood_Seed_2",
"Flood_Seed_3"
],
"note": "Find the miniboss, he is a large open area. Kill it, collect loot, return to town and get new gems and a passive point reward. After that from the waypoint go back to the Prison.",
"level": 6,
"name": "The Flooded Depths",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Dweller of the Deep",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "In this zone you just run until you find the exit to the Climb. Kill mobs in your way, try to be fast so that your portal doesn't expire.",
"level": 6,
"name": "The Ledge",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "This layout is always linear, there are little totems on one side of the waypoint, this side will always be the side at which the exit is located.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Climb_Seed_1",
"Climb_Seed_2"
],
"note": "Again run through while killing mostly blue packs. At some point you can choose to stop and rescue an NPC, then continue to the Prison.",
"level": 7,
"name": "The Climb",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": true,
"image": [
"LP_Seed_1",
"LP_Seed_2",
"LP_Seed_3",
"LP_Seed_4"
],
"note": "Get the waypoint and return to town. From there take your portal back to the Sumberged Passage and follow 3rd tip. Once you are back here find and complete the trial then look for the exit to Upper Prison.",
"level": 8,
"name": "The Lower Prison",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "The Caged Brute",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"UP_Seed_1",
"UP_Seed_2",
"UP_Seed_3",
"UP_Seed_4",
"UP_Seed_5"
],
"note": "Run around, killing blue packs and avoid high HP targets, until you find the boss arena. After you kill the boss, collect all items and return to town to get new gems. Then from the waypoint go to Prisoner's Gate",
"level": 9,
"name": "The Upper Prison",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "The Caged Brute",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"PG_Seed_1",
"PG_Seed_2",
"PG_Seed_3",
"PG_Seed_4"
],
"note": "Do not go straight, instead look right or left side of the map for a lowered area. Once you find that follow it through the mountains, and keep moving until you reach the exit to the Ship Graveyard.",
"level": 10,
"name": "Prisoner's Gate",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Ship_Seed_1",
"Ship_Seed_2",
"Ship_Seed_3",
"Ship_Seed_4"
],
"note": "Look for waypoint first around the entrance, ignore Fairgraves for now if you find him, and look for the Cave exit. Enter the cave. *If you killed Fairgraves now, return to town, take passive skill and from the waypoint go back to Cavern of Wrath.",
"level": 11,
"name": "The Ship Graveyard",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "The Marooned Mariner",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Find the end of the cave, take the quest item and you can ignore the mini boss. Exit the cave and in the previous area find the exit to the Cavern of wrath.",
"level": 12,
"name": "The Ship Graveyard Cave",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "This layout is always linear, with some deadends.",
"quest": "The Marooned Mariner",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Wrath_Seed_1",
"Wrath_Seed_2",
"Wrath_Seed_3"
],
"note": "From the waypoint, go to the Ship graveyard and kill Fairgraves. Once you are back here, keep running until you reach the exit to the next area.",
"level": 12,
"name": "The Cavern of Wrath",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "The Siren's Cadence",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Anger_Seed_1",
"Anger_Seed_2"
],
"note": "Often bottom right, you can follow the spirits, if you see piles of gold you are close to Merveil. Kill her and proceed to the next area.",
"level": 13,
"name": "The Cavern of Anger",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "The Siren's Cadence",
"hasRecipe": false
}
]
},
{
"act": "Act II",
"actid": 2,
"zones": [
{
"hastrial": false,
"image": [
"none"
],
"note": "Follow the right wall. Mob density in this area is pretty good so kill monsters until you find the entrance to the next Town. Your next destination is to the right side, the Old Fields.",
"level": 13,
"name": "The Southern Forest",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Follow the road. If you dont have a 2nd quicksilver flask by now, look for the Den, leave a portal and continue looking for the Crossroads.",
"level": 14,
"name": "The Old Fields",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Kill the mini-boss, and then return to town take your Quicksilver, then get the waypoint to the Crossroads.",
"level": 15,
"name": "The Den",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "A branching maze of tunnels ends at a large chamber.",
"quest": "The Great White Beast",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Travel straight from the way you enter, stay on the road. You will find the Waypoint. From this way upwards is always the Wetlands.Ignore it for now and keep moving on the stone road. When you reach a broken bridge, make sure to jump over it with your moving ability. Find the exit to the Western Forest.",
"level": 15,
"name": "The Riverways",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout if you manage to stay on the stone road.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Follow the road to the waypoint. If you left a portal before the Den, return to town and take the portal. Otherwise move up towards the Chamber of Sins. You will visit this waypoint 2 more times to kill a bandit and complete a trial.",
"level": 15,
"name": "The Crossroads",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout if you manage to stay on the stone road.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Chamber1_Seed_1",
"Chamber1_Seed_2",
"Chamber1_Seed_3"
],
"note": "The waypoint for this zone is in the middle of the area. Once you find it follow the closest pathway to the next exit.",
"level": 15,
"name": "The Chamber of Sins Level 1",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Intruders in Black",
"hasRecipe": false
},
{
"hastrial": true,
"image": [
"Chamber2_Seed_1"
],
"note": "If you can go straight down, try and find the trial and then the mini-boss. If you cant go down, look at the left side for the trial and then return to the entrance and go up to find the mini-boss. Return to town after you grab the quest item and get new gems. Your next destination is to the left side, the Riverways.",
"level": 16,
"name": "The Chamber of Sins Level 2",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Intruders in Black",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Travel on the road upwards, skipping most mobs in this area until you reach a fort, usually you want to kill Kraityn but follow your build guide. Assuming you killed him return to town and from the waypoint head to the Riverways. From there move up, to the Wetlands.",
"level": 16,
"name": "The Broken Bridge",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "Linear if you stay on the road",
"quest": "Deal with the Bandits",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "You have either helped or killed Alira, and now your goal is to complete the trial. Follow the road until you find a big Crypt.",
"level": 16,
"name": "The Fellshrine Ruins",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": true,
"image": [
"none"
],
"note": "Find the trial, usually try to go up and right, it is often not far from the waypoint. Once you are done, return to town and from the waypoint head to the Wetlands. Open the exit to the Vaal Ruins.",
"level": 17,
"name": "The Crypt Level 1",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Maze",
"quest": "Through Sacred Ground",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "You want to avoid this zone, but if you are here, kill a mini-boss to get a unique jewel and a passive respec book.",
"level": 18,
"name": "The Crypt Level 2",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Maze",
"quest": "Through Sacred Ground",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Follow the road, once you reach the waypoint go to the opposite side of the road, and move towards that way to find the Weaver's Chambers. When you return to this area either help or kill Alira, she is opposite to the Weaver's Chamber and then head down to kill another mini-boss and get a quest item. Then return to Act 1 for a passive point and then head to the Crossroads this time going to the bottom side.",
"level": 17,
"name": "The Western Forest",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "Linear layout if you stay on the road and find waypoint, then everything is in a cross shape.",
"quest": "Deal with the Bandits",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Weaver_Seed_1",
"Weaver_Seed_2",
"Weaver_Seed_3"
],
"note": "Go left when the left path spawns, otherwise loop around right side. Kill Weaver and return to town and take the waypoint to the Crossroads, this time going right side to the Broken Bridge.",
"level": 18,
"name": "The Weaver's Chambers",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "Sharp and Cruel",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Wetlands_Seed_1",
"Wetlands_Seed_2",
"Wetlands_Seed_3"
],
"note": "Usually you want to kill Oak, but follow your build guide. Assuming you killed him, keep moving until you find the waypoint. From there head to the Western forest, this time moving towards the side of the waypoint.",
"level": 19,
"name": "The Wetlands",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Deal with the Bandits",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Vaal_Seed_1",
"Vaal_Seed_2",
"Vaal_Seed_3"
],
"note": "Usually the layout is an S or an N . Try and find the giant ball and move forward to the Northern Forest.",
"level": 20,
"name": "The Vaal Ruins",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "The Root of the Problem",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Heading top is usually the correct path. If your road is blocked, loop around and continue moving up.",
"level": 21,
"name": "The Northern Forest",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout, waypoint is adjacent to the shoreline.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Go away there is nothing here.",
"level": 21,
"name": "The Dread Thicket",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "I dont even know what this looks like.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Caverns_Seed_1",
"Caverns_Seed_2",
"Caverns_Seed_3",
"Caverns_Seed_4"
],
"note": "Run through this zone skipping most mobs, reach the waypoint and enter the pyramid area. Try to find the exit to the Ancient Pyramid.",
"level": 22,
"name": "The Caverns",
"haspassive": false,
"recipe": {
"mods": [
"(10\u201314)% increased Movement Speed"
],
"tooltip": "Movement Speed - Rank 1"
},
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Exits are diagonal from entrance, except from the first area. Once you reach the Apex, and kill the boss take the exit to the City of Sarn.",
"level": 23,
"name": "The Ancient Pyramid",
"haspassive": false,
"recipe": {
"mods": [
"(37\u201351)% increased Spell Damage (2H)",
"(25\u201334)% increased Spell Damage (1H)"
],
"tooltip": "Spell Damage - Rank 1"
},
"questRewardsSkills": false,
"altimage": "Somewhat linear layout.",
"quest": "Shadow of the Vaal",
"hasRecipe": true
}
]
},
{
"act": "Act III",
"actid": 3,
"zones": [
{
"hastrial": false,
"image": [
"none"
],
"note": "Dont forget to talk to Clarissa. Then on your left hand find the entrance to the new town. Vendor items if you have to, and then head to the Slums.",
"level": 23,
"name": "The City of Sarn",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Linear layout.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Slums_Seed_1",
"Slums_Seed_2",
"Slums_Seed_3",
"Slums_Seed_4"
],
"note": "Find the grates to the sewers, then take the stairs down, follow it until you have stairs up, then it is fairly linear.",
"level": 24,
"name": "The Slums",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": true,
"image": [
"Crematorium_Seed_1",
"Crematorium_Seed_2",
"Crematorium_Seed_3",
"Crematorium_Seed_4",
"Crematorium_Seed_5"
],
"note": "Going left generally has a higher chance of success. There is a trial here.",
"level": 25,
"name": "The Crematorium",
"haspassive": false,
"recipe": {
"mods": [
"Adds (8\u201311) to (16\u201320) Fire Damage to Attacks",
"Adds (24\u201327) to (28\u201335) Fire Damage (2H)",
"Adds (16\u201321) to (31\u201336) Fire Damage to Spells (2H)",
"Adds (16\u201318) to (19\u201323) Fire Damage",
"Adds (12\u201316) to (23\u201327) Fire Damage to Spells (1H)",
"(9\u201312)% increased Fire Damage",
"(37\u201351)% increased Fire Damage (2H)",
"(25\u201334)% increased Fire Damage (1H)"
],
"tooltip": "Fire Damage - Rank 1"
},
"questRewardsSkills": true,
"altimage": "none",
"quest": "Lost in Love",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"Sewers_Seed_1"
],
"note": "Pick up the bust before the waypoint, after it is another, up and left is the last bust, up and right is the exit.",
"level": 26,
"name": "The Sewers",
"haspassive": true,
"recipe": {
"mods": [
"Adds (9\u201312) to (18\u201321) Physical Damage (2H)",
"Adds (6\u20138) to (13\u201315) Physical Damage (1H)",
"Adds (3\u20135) to (6\u20138) Physical Damage to Attacks",
"(9\u201312)% increased Global Physical Damage",
"(40\u201359)% increased Physical Damage"
],
"tooltip": "Physical Damage - Rank 1"
},
"questRewardsSkills": false,
"altimage": "none",
"quest": "Victario's Secrets",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"Marketplace_Seed_1",
"Marketplace_Seed_2",
"Marketplace_Seed_3",
"Marketplace_Seed_4",
"Marketplace_Seed_5"
],
"note": "Usually up and right, go through the statue hall, check the waypoint (trial nearby it) and move on to find the exit.Stick to the wall and check for wreckages. If there are none in the wall to your right move to left. If you find them follow the wall to find the entrance to Battlefields.",
"level": 26,
"name": "The Marketplace",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "A Swing of Hope",
"hasRecipe": false
},
{
"hastrial": true,
"image": [
"none"
],
"note": "There is a trial in this area.",
"level": 27,
"name": "The Catacombs",
"haspassive": false,
"recipe": {
"mods": [
"(15\u201323)% increased Elemental Damage with Attack Skills"
],
"tooltip": "Elemental Damage with Attacks - Rank 1"
},
"questRewardsSkills": false,
"altimage": "Maze of rooms that ends at a large bridge",
"quest": "none",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"Battlefront_Seed_1",
"Battlefront_Seed_2"
],
"note": "First image is to spool and docks, second to Solaris.",
"level": 27,
"name": "The Battlefront",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "The Ribbon Spool",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Solaris1_Seed_1",
"Solaris1_Seed_2",
"Solaris1_Seed_3"
],
"note": "Linear layout, follow the carpet until the exit.",
"level": 27,
"name": "The Solaris Temple Level 1",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "The Gemling Queen",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Solaris2_Seed_1",
"Solaris2_Seed_2",
"Solaris2_Seed_3"
],
"note": "Somewhat linear, follow carpet, can have dead ends.",
"level": 28,
"name": "The Solaris Temple Level 2",
"haspassive": false,
"recipe": {
"mods": [
"Adds (6\u20138) to (14\u201318) Cold Damage to Attacks",
"Adds (24\u201327) to (28\u201335) Cold Damage (2H)",
"Adds (16\u201318) to (19\u201323) Cold Damage",
"Adds (14\u201319) to (28\u201333) Cold Damage to Spells (2H)",
"Adds (10\u201313) to (19\u201322) Cold Damage to Spells (1H)",
"(9\u201312)% increased Cold Damage",
"(37\u201351)% increased Cold Damage (2H)",
"(25\u201334)% increased Cold Damage (1H)"
],
"tooltip": "Cold Damage - Rank 1"
},
"questRewardsSkills": false,
"altimage": "none",
"quest": "The Gemling Queen",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"Docks_Seed_1",
"Docks_Seed_2",
"Docks_Seed_3",
"Docks_Seed_4"
],
"note": "Usually left side, sulphite is down some stairs.",
"level": 29,
"name": "The Docks",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Fiery Dust/Swing of Hope",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Ebony_Seed_1",
"Ebony_Seed_2"
],
"note": "First image is to Lunaris, second to The Sceptre of God.",
"level": 29,
"name": "The Ebony Barracks",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "none",
"quest": "Sever the Right Hand",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Lunaris1_Seed_1",
"Lunaris1_Seed_2"
],
"note": "Pretty linear, follow the carpet, don\u2019t forget waypoint.",
"level": 29,
"name": "The Lunaris Temple Level 1",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "Piety's Pets",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Lunaris2_Seed_1",
"Lunaris2_Seed_2"
],
"note": "Layout differs a lot, very generic map drawing. If you see stairs, go up these as this is the right path, then find more stairs, until you reach a larger area, there will be carts on both sides, pick the side where there is only one.",
"level": 30,
"name": "The Lunaris Temple Level 2",
"haspassive": false,
"recipe": {
"mods": [
"Adds (2\u20134) to (40\u201355) Lightning Damage (2H)",
"Adds (1\u20135) to (59\u201363) Lightning Damage to Spells (2H)",
"Adds (1\u20134) to (39\u201342) Lightning Damage to Spells (1H)",
"Adds (1\u20134) to (32\u201336) Lightning Damage to Attacks",
"Adds (1\u20133) to (27\u201337) Lightning Damage",
"(9\u201312)% increased Lightning Damage",
"(37\u201351)% increased Lightning Damage (2H)",
"(25\u201334)% increased Lightning Damage (1H)"
],
"tooltip": "Lightning Damage - Rank 1"
},
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": true
},
{
"hastrial": true,
"image": [
"Imperial_Seed_1"
],
"note": "Follow the road until the end",
"level": 30,
"name": "The Imperial Gardens",
"haspassive": false,
"recipe": {
"mods": [
"+(6\u20139) to all Attributes"
],
"tooltip": "All Attributes - Rank 1"
},
"questRewardsSkills": false,
"altimage": "none",
"quest": "A Swing of Hope",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Try to go up and right, until you reach some parallel walls, there you should find Siosa. Go through the only opening at Siosa and search the next area for a Candle switch in a wall.",
"level": 30,
"name": "The Library",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "Seems like a maze.",
"quest": "A Fixture of Fate",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Try to find the first corner of the room, where you should usually find a small room with a page. Do the same for the next 3.",
"level": 31,
"name": "The Archives",
"haspassive": false,
"questRewardsSkills": true,
"altimage": "This area is a square, with 4 corners that usually hold 1 page each.",
"quest": "A Fixture of Fate",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "The exits can often be found by travelling diagonally.",
"level": 32,
"name": "The Sceptre of God",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Layout is generally always the same looking, but exits spawn in a random corner.",
"quest": "Sceptre of God",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Go up diagonally until you spot barricades at exit.",
"level": 33,
"name": "The Upper Sceptre of God",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Layout is generally always the same looking, but exits spawn in a random corner.",
"quest": "Sceptre of God",
"hasRecipe": false
}
]
},
{
"act": "Act IV",
"actid": 4,
"zones": [
{
"hastrial": false,
"image": [
"none"
],
"note": "Go upstream and cross over when the path ends.",
"level": 33,
"name": "The Aqueduct",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "Pretty much linear.",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"DriedLake_Seed_1",
"DriedLake_Seed_2",
"DriedLake_Seed_3"
],
"note": "Kill Voll on one of the three spawns",
"level": 34,
"name": "The Dried Lake",
"haspassive": false,
"recipe": {
"mods": [
"(9\u201311)% increased Cast Speed (1H)",
"(8\u201310)% increased Attack Speed",
"(7\u201312)% increased Attack Speed",
"(6\u20138)% increased Cast Speed",
"(3\u20135)% increased Attack Speed",
"(12\u201315)% increased Cast Speed (2H)"
],
"tooltip": "Attack and Cast Speed - Rank 1"
},
"questRewardsSkills": true,
"altimage": "none",
"quest": "Breaking the Seal",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"Mines1_Seed_1",
"Mines1_Seed_2"
],
"note": "Fairly linear, exit is usually in top left corner.",
"level": 34,
"name": "The Mines Level 1",
"haspassive": false,
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Mines2_Seed_1",
"Mines2_Seed_2",
"Mines2_Seed_3",
"Mines2_Seed_4"
],
"note": "Varied layout, and many dead ends and you should look for the spirit too, if you found the exit before the spirit, leave a portal and continue.",
"level": 35,
"name": "The Mines Level 2",
"haspassive": true,
"questRewardsSkills": false,
"altimage": "none",
"quest": "An Indomitable Spirit",
"hasRecipe": false
},
{
"hastrial": false,
"image": [
"Crystal_Seed_1",
"Crystal_Seed_2",
"Crystal_Seed_3"
],
"note": "Loop around bottom right to go to the top left end. Use waypoint to go to Highgate if you made a portal to search for the spirit.",
"level": 36,
"name": "The Crystal Veins",
"haspassive": false,
"recipe": {
"mods": [
"+(21\u201328)% to Lightning Resistance",
"+(21\u201328)% to Fire Resistance",
"+(21\u201328)% to Cold Resistance"
],
"tooltip": "Elemental Resistances - Rank 2"
},
"questRewardsSkills": false,
"altimage": "none",
"quest": "none",
"hasRecipe": true
},
{
"hastrial": false,
"image": [
"none"
],
"note": "Move towards the top right, some dead ends.",