-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquest_gem_rewards_by_class.json
More file actions
1006 lines (1006 loc) · 24.5 KB
/
quest_gem_rewards_by_class.json
File metadata and controls
1006 lines (1006 loc) · 24.5 KB
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
{
"Witch": {
"Act 1": {
"Enemy at the Gate": [
"Blight",
"Freezing Pulse",
"Kinetic Bolt",
"Lightning Tendrils",
"Raise Zombie",
"Rolling Magma"
],
"The Caged Brute": [
"Added Lightning Damage Support",
"Bodyswap",
"Clarity",
"Combustion Support",
"Devour Support",
"Efficacy Support",
"Flame Dash",
"Infernal Legion Support",
"Lightning Warp",
"Minion Damage Support",
"Summon Skeletons",
"Unbound Ailments Support",
"Void Manipulation Support",
"Wither"
],
"The Siren's Cadence": [
"Arc",
"Blazing Salvo",
"Creeping Frost",
"Essence Drain",
"Ice Nova",
"Manabond",
"Scorching Ray",
"Volatile Dead"
],
"Breaking Some Eggs": [
"Contagion",
"Detonate Dead",
"Flame Wall",
"Frost Bomb",
"Frostblink",
"Orb of Storms",
"Summon Raging Spirit"
],
"Mercy Mission": [
"Chance to Poison Support",
"Elemental Proliferation Support",
"Infused Channelling Support",
"Spell Cascade Support",
"Summon Phantasm Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Concentrated Effect Support",
"Controlled Destruction Support",
"Cruelty Support",
"Elemental Focus Support",
"Faster Casting Support",
"Fresh Meat Support",
"Kinetic Instability Support",
"Living Lightning Support",
"Minion Speed Support",
"Overcharge Support",
"Predator Support",
"Sacred Wisps Support",
"Trinity Support"
],
"Intruders in Black": [
"Herald of Ash",
"Arcane Cloak",
"Arctic Armour",
"Cold Snap",
"Desecrate",
"Galvanic Field",
"Herald of Ice",
"Herald of Thunder",
"Wall of Force"
]
},
"Act 3": {
"Lost in Love": [
"Bane",
"Conductivity",
"Despair",
"Discipline",
"Elemental Weakness",
"Enfeeble",
"Flammability",
"Frostbite",
"Malevolence",
"Purity of Elements",
"Spellslinger",
"Temporal Chains",
"Zealotry"
],
"A Fixture of Fate": [
"Archmage Support",
"Blasphemy Support",
"Burning Damage Support",
"Cold Penetration Support",
"Energy Leech Support",
"Feeding Frenzy Support",
"Fire Penetration Support",
"Focused Channelling Support",
"Impending Doom Support",
"Intensify Support",
"Lightning Penetration Support",
"Meat Shield Support",
"Pinpoint Support",
"Sacrifice Support",
"Swift Affliction Support"
],
"Sever the Right Hand": [
"Ball Lightning",
"Crackling Lance",
"Cremation",
"Eye of Winter",
"Firestorm",
"Flameblast",
"Glacial Cascade",
"Hexblast",
"Kinetic Blast",
"Kinetic Rain",
"Lightning Conduit",
"Raise Spectre",
"Somatic Shell",
"Soulrend",
"Stormbind",
"Summon Reaper"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Bonechill Support",
"Chain Support",
"Decay Support",
"Greater Multiple Projectiles Support",
"Hex Bloom Support",
"Immolate Support",
"Increased Area of Effect Support",
"Multistrike Support",
"Spell Echo Support",
"Unleash Support"
],
"Breaking the Seal": [
"Hydrosphere",
"Sigil of Power",
"Summon Carrion Golem",
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",
"Summon Stone Golem",
"Void Sphere"
]
}
},
"Shadow": {
"Act 1": {
"Enemy at the Gate": [
"Blight",
"Cobra Lash",
"Ethereal Knives",
"Explosive Trap",
"Freezing Pulse",
"Stormblast Mine"
],
"The Caged Brute": [
"Added Cold Damage Support",
"Added Lightning Damage Support",
"Clarity",
"Faster Attacks Support",
"Flame Dash",
"Multiple Projectiles Support",
"Multiple Traps Support",
"Precision",
"Siphoning Trap",
"Smoke Mine",
"Unearth",
"Void Manipulation Support",
"Whirling Blades",
"Withering Step"
],
"The Siren's Cadence": [
"Blade Vortex",
"Essence Drain",
"Fire Trap",
"Icicle Mine",
"Lightning Trap",
"Reave",
"Venom Gyre",
"Volatile Dead",
"Voltaxic Burst"
],
"Breaking Some Eggs": [
"Bear Trap",
"Contagion",
"Dash",
"Detonate Dead",
"Frostblink",
"Orb of Storms"
],
"Mercy Mission": [
"Elemental Proliferation Support",
"Infused Channelling Support",
"Momentum Support",
"Pierce Support",
"Spell Cascade Support",
"Swift Assembly Support",
"Volley Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Deadly Ailments Support",
"Elemental Focus Support",
"Faster Casting Support",
"Melee Physical Damage Support",
"Nightblade Support",
"Trap and Mine Damage Support",
"Trinity Support"
],
"Intruders in Black": [
"Herald of Ash",
"Arcane Cloak",
"Arctic Armour",
"Assassin's Mark",
"Blade Blast",
"Blood Rage",
"Cold Snap",
"Herald of Agony",
"Herald of Ice",
"Herald of Thunder",
"Summon Skitterbots"
]
},
"Act 3": {
"Lost in Love": [
"Bane",
"Conductivity",
"Despair",
"Elemental Weakness",
"Enfeeble",
"Flammability",
"Frostbite",
"Hatred",
"Malevolence",
"Plague Bearer",
"Temporal Chains",
"Wrath"
],
"A Fixture of Fate": [
"Archmage Support",
"Charged Mines Support",
"Charged Traps Support",
"Cold Penetration Support",
"Critical Strike Affliction Support",
"Energy Leech Support",
"Faster Projectiles Support",
"Focused Channelling Support",
"High-Impact Mine Support",
"Ice Bite Support",
"Impending Doom Support",
"Innervate Support",
"Lightning Penetration Support",
"Pinpoint Support",
"Second Wind Support",
"Swift Affliction Support"
],
"Sever the Right Hand": [
"Ball Lightning",
"Blade Flurry",
"Bladefall",
"Charged Dash",
"Cremation",
"Flamethrower Trap",
"Hexblast",
"Lightning Spire Trap",
"Pestilent Strike",
"Pyroclast Mine",
"Seismic Trap",
"Soulrend"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Barrage Support",
"Bonechill Support",
"Chain Support",
"Cluster Traps Support",
"Greater Multiple Projectiles Support",
"Greater Volley Support",
"Increased Area of Effect Support",
"Minefield Support",
"Multistrike Support",
"Returning Projectiles Support",
"Spell Echo Support",
"Unleash Support",
"Vile Toxins Support",
"Withering Touch Support"
],
"Breaking the Seal": [
"Ambush",
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",
"Summon Stone Golem",
"Temporal Rift",
"Tornado",
"Void Sphere"
]
}
},
"Ranger": {
"Act 1": {
"Enemy at the Gate": [
"Caustic Arrow",
"Frost Blades",
"Galvanic Arrow",
"Ice Shot",
"Split Arrow"
],
"The Caged Brute": [
"Added Cold Damage Support",
"Arrow Nova Support",
"Blink Arrow",
"Faster Attacks Support",
"Manaforged Arrows Support",
"Melee Splash Support",
"Multiple Projectiles Support",
"Precision",
"Smoke Mine",
"Void Manipulation Support",
"Whirling Blades"
],
"The Siren's Cadence": [
"Elemental Hit",
"Lightning Arrow",
"Lightning Strike",
"Poisonous Concoction",
"Rain of Arrows",
"Reave",
"Siege Ballista",
"Toxic Rain"
],
"Breaking Some Eggs": [
"Bear Trap",
"Dash",
"Puncture",
"Shrapnel Ballista",
"Sniper's Mark"
],
"Mercy Mission": [
"Chance to Poison Support",
"Mirage Archer Support",
"Pierce Support",
"Volley Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Close Combat Support",
"Elemental Damage with Attacks Support",
"Trinity Support",
"Vicious Projectiles Support"
],
"Intruders in Black": [
"Herald of Ash",
"Arctic Armour",
"Blood Rage",
"Ensnaring Arrow",
"Frenzy",
"Herald of Agony",
"Herald of Ice",
"Herald of Thunder",
"Poacher's Mark"
]
},
"Act 3": {
"Lost in Love": [
"Alchemist's Mark",
"Despair",
"Grace",
"Hatred"
],
"A Fixture of Fate": [
"Critical Strike Affliction Support",
"Focused Ballista Support",
"Fork Support",
"Fortify Support",
"Hypothermia Support",
"Ice Bite Support",
"Impale Support",
"Life Leech Support",
"Second Wind Support",
"Windburst Support"
],
"Sever the Right Hand": [
"Artillery Ballista",
"Blade Flurry",
"Blast Rain",
"Charged Dash",
"Conflagration",
"Explosive Concoction",
"Scourge Arrow",
"Storm Rain",
"Thunderstorm",
"Tornado Shot",
"Wild Strike"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Barrage Support",
"Chain Support",
"Greater Multiple Projectiles Support",
"Greater Volley Support",
"Increased Area of Effect Support",
"Multistrike Support",
"Returning Projectiles Support",
"Rupture Support",
"Spell Echo Support",
"Withering Touch Support"
],
"Breaking the Seal": [
"Snipe",
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",
"Summon Stone Golem",
"Tornado"
]
}
},
"Duelist": {
"Act 1": {
"Enemy at the Gate": [
"Cleave",
"Galvanic Arrow",
"Molten Strike",
"Perforate",
"Splitting Steel"
],
"The Caged Brute": [
"Added Fire Damage Support",
"Blink Arrow",
"Enduring Cry",
"Faster Attacks Support",
"Intimidating Cry",
"Leap Slam",
"Lifetap Support",
"Maim Support",
"Melee Splash Support",
"Multiple Projectiles Support",
"Precision",
"Vitality",
"Whirling Blades"
],
"The Siren's Cadence": [
"Earthshatter",
"Holy Sweep",
"Lacerate",
"Rain of Arrows",
"Shattering Steel",
"Volcanic Fissure"
],
"Breaking Some Eggs": [
"Blood and Sand",
"Crushing Fist",
"Dash",
"Decoy Totem",
"Puncture",
"Shield Charge",
"Sniper's Mark",
"Vigilant Strike",
"War Banner"
],
"Mercy Mission": [
"Ancestral Call Support",
"Chance to Poison Support",
"Mirage Archer Support",
"Momentum Support",
"Pierce Support",
"Ruthless Support",
"Volley Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Close Combat Support",
"Elemental Damage with Attacks Support",
"Melee Physical Damage Support",
"Rage Support",
"Sadism Support",
"Trinity Support",
"Vicious Projectiles Support"
],
"Intruders in Black": [
"Herald of Ash",
"Ancestral Cry",
"Blood Rage",
"Corrupting Fever",
"Defiance Banner",
"Eviscerate",
"Flesh and Stone",
"Frenzy",
"Glacial Shield Swipe",
"Herald of Ice",
"Herald of Thunder",
"Poacher's Mark",
"Seismic Cry",
"Swordstorm",
"Warlord's Mark"
]
},
"Act 3": {
"Lost in Love": [
"Dread Banner",
"Grace",
"Hatred",
"Petrified Blood",
"Pride",
"Rallying Cry"
],
"A Fixture of Fate": [
"Arrogance Support",
"Bloodthirst Support",
"Expert Retaliation Support",
"Fortify Support",
"Hypothermia Support",
"Impale Support",
"Life Leech Support",
"Pulverise Support",
"Urgent Orders Support",
"Windburst Support"
],
"Sever the Right Hand": [
"Bladestorm",
"Blast Rain",
"Charged Dash",
"Cyclone",
"Ice Crash",
"Lancing Steel",
"Spectral Shield Throw",
"Thunderstorm"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Barrage Support",
"Behead Support",
"Chain Support",
"Fist of War Support",
"Greater Multiple Projectiles Support",
"Greater Volley Support",
"Increased Area of Effect Support",
"Multistrike Support",
"Spell Echo Support",
"Trauma Support"
],
"Breaking the Seal": [
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",
"Summon Stone Golem"
]
}
},
"Marauder": {
"Act 1": {
"Enemy at the Gate": [
"Ground Slam",
"Molten Strike",
"Shield Crush"
],
"The Caged Brute": [
"Added Fire Damage Support",
"Enduring Cry",
"Faster Attacks Support",
"Flamewood Support",
"Intimidating Cry",
"Leap Slam",
"Lifetap Support",
"Melee Splash Support",
"Vitality"
],
"The Siren's Cadence": [
"Chain Hook",
"Earthshatter",
"Holy Sweep",
"Infernal Blow",
"Static Strike",
"Sunder",
"Volcanic Fissure"
],
"Breaking Some Eggs": [
"Crushing Fist",
"Decoy Totem",
"Shield Charge",
"Steelskin",
"Vigilant Strike"
],
"Mercy Mission": [
"Ancestral Call Support",
"Chance to Bleed Support",
"Momentum Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Close Combat Support",
"Cruelty Support",
"Elemental Damage with Attacks Support",
"Melee Physical Damage Support",
"Rage Support",
"Shockwave Support",
"Volatility Support"
],
"Intruders in Black": [
"Herald of Ash",
"Ancestral Cry",
"Corrupting Fever",
"Eviscerate",
"Herald of Ice",
"Herald of Thunder",
"Molten Shell",
"Seismic Cry",
"Warlord's Mark"
]
},
"Act 3": {
"Lost in Love": [
"Anger",
"Determination",
"General's Cry",
"Infernal Cry",
"Petrified Blood",
"Pride",
"Punishment",
"Vengeful Cry",
"Vulnerability"
],
"A Fixture of Fate": [
"Arrogance Support",
"Bloodthirst Support",
"Controlled Blaze Support",
"Corrupting Cry Support",
"Fortify Support",
"Impale Support",
"Life Leech Support",
"More Duration Support",
"Pulverise Support",
"Urgent Orders Support"
],
"Sever the Right Hand": [
"Cyclone",
"Earthquake",
"Ice Crash",
"Rage Vortex",
"Tectonic Slam"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Behead Support",
"Brutality Support",
"Chain Support",
"Eternal Blessing Support",
"Fist of War Support",
"Greater Multiple Projectiles Support",
"Increased Area of Effect Support",
"Multiple Totems Support",
"Multistrike Support",
"Overexertion Support",
"Spell Echo Support",
"Trauma Support"
],
"Breaking the Seal": [
"Berserk",
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",
"Summon Stone Golem"
]
}
},
"Templar": {
"Act 1": {
"Enemy at the Gate": [
"Frostbolt",
"Lightning Tendrils",
"Molten Strike",
"Purifying Flame",
"Rolling Magma",
"Smite"
],
"The Caged Brute": [
"Added Fire Damage Support",
"Added Lightning Damage Support",
"Clarity",
"Combustion Support",
"Flame Dash",
"Leap Slam",
"Lifetap Support",
"Melee Splash Support",
"Vitality"
],
"The Siren's Cadence": [
"Absolution",
"Blazing Salvo",
"Ice Nova",
"Manabond",
"Scorching Ray",
"Searing Bond",
"Static Strike",
"Storm Brand",
"Storm Burst",
"Storm Call",
"Wintertide Brand"
],
"Breaking Some Eggs": [
"Flame Wall",
"Frost Bomb",
"Frostblink",
"Holy Flame Totem",
"Shield Charge",
"Summon Holy Relic",
"Vigilant Strike"
],
"Mercy Mission": [
"Ancestral Call Support",
"Arcane Surge Support",
"Chance to Bleed Support",
"Infused Channelling Support",
"Ruthless Support",
"Spell Cascade Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Concentrated Effect Support",
"Controlled Destruction Support",
"Cruelty Support",
"Elemental Damage with Attacks Support",
"Elemental Focus Support",
"Faster Casting Support",
"Melee Physical Damage Support",
"Shockwave Support"
],
"Intruders in Black": [
"Herald of Ash",
"Arcane Cloak",
"Brand Recall",
"Divine Retribution",
"Herald of Ice",
"Herald of Purity",
"Herald of Thunder",
"Wave of Conviction"
]
},
"Act 3": {
"Lost in Love": [
"Battlemage's Cry",
"Conductivity",
"Elemental Weakness",
"Enfeeble",
"Flammability",
"Frostbite",
"Punishment",
"Vulnerability",
"Zealotry"
],
"A Fixture of Fate": [
"Archmage Support",
"Arrogance Support",
"Blasphemy Support",
"Burning Damage Support",
"Cold Penetration Support",
"Energy Leech Support",
"Fire Penetration Support",
"Fortify Support",
"Guardian's Blessing Support",
"Intensify Support",
"Lightning Penetration Support",
"Pulverise Support",
"Swiftbrand Support"
],
"Sever the Right Hand": [
"Armageddon Brand",
"Consecrated Path",
"Divine Ire",
"Dominating Blow",
"Firestorm",
"Flameblast",
"Ice Crash",
"Penance Brand",
"Shock Nova",
"Shockwave Totem",
"Stormbind"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Arcanist Brand",
"Chain Support",
"Fist of War Support",
"Frigid Bond Support",
"Greater Multiple Projectiles Support",
"Ignite Proliferation Support",
"Increased Area of Effect Support",
"Multiple Totems Support",
"Multistrike Support",
"Spell Echo Support",
"Spellblade Support",
"Unleash Support"
],
"Breaking the Seal": [
"Frozen Legion",
"Hydrosphere",
"Sigil of Power",
"Summon Carrion Golem",
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",
"Summon Stone Golem",
"Void Sphere"
]
}
},
"Scion": {
"Act 1": {
"Enemy at the Gate": [
"Lightning Tendrils",
"Molten Strike",
"Split Arrow",
"Splitting Steel"
],
"The Caged Brute": [
"Added Cold Damage Support",
"Added Fire Damage Support",
"Added Lightning Damage Support",
"Blink Arrow",
"Faster Attacks Support",
"Flame Dash",
"Leap Slam",
"Lifetap Support",
"Melee Splash Support",
"Multiple Projectiles Support",
"Unbound Ailments Support",
"Withering Step"
],
"The Siren's Cadence": [
"Blade Vortex",
"Exsanguinate",
"Ice Nova",
"Rain of Arrows",
"Scorching Ray",
"Spectral Helix",
"Static Strike",
"Storm Burst"
],
"Breaking Some Eggs": [
"Bear Trap",
"Dash",
"Decoy Totem",
"Frost Bomb",
"Frostblink",
"Shield Charge",
"Vigilant Strike"
],
"Mercy Mission": [
"Ancestral Call Support",
"Arcane Surge Support",
"Chance to Bleed Support",
"Chance to Poison Support",
"Elemental Proliferation Support",
"Pierce Support",
"Ruthless Support",
"Spell Cascade Support",
"Summon Phantasm Support",
"Volley Support"
]
},
"Act 2": {
"The Great White Beast": [
"Rustic Sash"
],
"Sharp and Cruel": [
"Concentrated Effect Support",
"Cruelty Support",
"Deadly Ailments Support",
"Elemental Damage with Attacks Support",
"Faster Casting Support",
"Melee Physical Damage Support",
"Sadism Support",
"Vicious Projectiles Support"
],
"Intruders in Black": [
"Herald of Ash",
"Arctic Armour",
"Corrupting Fever",
"Frenzy",
"Herald of Ice",
"Herald of Thunder"
]
},
"Act 3": {
"Lost in Love": [
"Anger",
"Bane",
"Conductivity",
"Elemental Weakness",
"Flammability",
"Frostbite",
"Hatred",
"Malevolence",
"Petrified Blood",
"Punishment",
"Temporal Chains",
"Vulnerability",
"Wrath",
"Zealotry"
],
"A Fixture of Fate": [
"Arrogance Support",
"Bloodthirst Support",
"Cold Penetration Support",
"Energy Leech Support",
"Fire Penetration Support",
"Fortify Support",
"Ice Bite Support",
"Impending Doom Support",
"Innervate Support",
"Intensify Support",
"Life Leech Support",
"Lightning Penetration Support"
],
"Sever the Right Hand": [
"Blade Flurry",
"Bladefall",
"Charged Dash",
"Cyclone",
"Divine Ire",
"Flameblast",
"Hexblast",
"Reap",
"Soulrend",
"Tectonic Slam",
"Tornado Shot"
]
},
"Act 4": {
"The Eternal Nightmare": [
"Barrage Support",
"Chain Support",
"Decay Support",
"Frigid Bond Support",
"Greater Multiple Projectiles Support",
"Greater Volley Support",
"Immolate Support",
"Increased Area of Effect Support",
"Multistrike Support",
"Returning Projectiles Support",
"Spell Echo Support",
"Unleash Support"
],
"Breaking the Seal": [
"Flame Link",
"Intuitive Link",
"Soul Link",
"Summon Chaos Golem",
"Summon Flame Golem",
"Summon Ice Golem",
"Summon Lightning Golem",