-
Notifications
You must be signed in to change notification settings - Fork 19
/
affix-completion.json
2503 lines (2493 loc) · 166 KB
/
affix-completion.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
{
"[Unique explicit] #% increased Physical Damage taken": null,
"[Explicit] #% faster start of Energy Shield Recharge": null,
"[Crafted] #% faster start of Energy Shield Recharge": null,
"[Unique explicit] #% increased Quantity of Items Dropped by Slain Normal Enemies": null,
"[Unique explicit] #% increased Rarity of Items Dropped by Slain Magic Enemies": null,
"[Explicit] #% increased Armour": null,
"[Crafted] #% increased Armour": null,
"[Explicit] #% increased Attack Speed with Wands": null,
"[Explicit] #% increased Attack Speed with Bows": null,
"[Explicit] #% increased Cast Speed with Cold Skills": null,
"[Explicit] #% increased Cast Speed with Fire Skills": null,
"[Explicit] #% increased Cast Speed with Lightning Skills": null,
"[Explicit] #% increased Chaos Damage": null,
"[Implicit] #% increased Chaos Damage": null,
"[Explicit] #% increased Cold Damage": null,
"[Crafted] #% increased Cold Damage": null,
"[Implicit] #% increased Cold Damage": null,
"[Explicit] #% increased Critical Strike Chance with Cold Skills": null,
"[Explicit] #% increased Critical Strike Chance with Fire Skills": null,
"[Explicit] #% increased Critical Strike Chance with Lightning Skills": null,
"[Unique explicit] #% increased Duration": null,
"#% increased Elemental Damage with Weapons": null,
"[Explicit] #% increased Energy Shield Recharge Rate": null,
"[Explicit] #% increased Evasion Rating": null,
"[Crafted] #% increased Evasion Rating": null,
"[Explicit] #% increased Fire Damage": null,
"[Implicit] #% increased Fire Damage": null,
"[Crafted] #% increased Fire Damage": null,
"[Explicit] #% increased Fishing Line Strength": null,
"[Explicit] #% increased Lightning Damage": null,
"[Implicit] #% increased Lightning Damage": null,
"[Crafted] #% increased Lightning Damage": null,
"[Explicit] #% increased Mana Regeneration Rate": null,
"[Crafted] #% increased Mana Regeneration Rate": null,
"[Implicit] #% increased Mana Regeneration Rate": null,
"[Explicit] #% increased Mine Laying Speed": null,
"[Crafted] #% increased Mine Laying Speed": null,
"[Explicit] #% increased Physical Damage": null,
"[Crafted] #% increased Physical Damage": null,
"[Implicit] #% increased Physical Damage": null,
"[Explicit] #% increased Physical Damage with Wands": null,
"[Implicit] #% increased Rarity of Items found": null,
"[Explicit] #% increased Rarity of Items found": null,
"[Explicit] #% increased Spell Damage": null,
"[Implicit] #% increased Spell Damage": null,
"[Crafted] #% increased Spell Damage": null,
"[Explicit] #% increased Totem Damage": null,
"[Explicit] #% increased Totem Life": null,
"[Explicit] #% increased Trap Throwing Speed": null,
"[Crafted] #% increased Trap Throwing Speed": null,
"[Explicit] #% increased Energy Shield": null,
"[Crafted] #% increased Energy Shield": null,
"[Explicit] #% increased maximum Life": null,
"[Implicit] #% increased maximum Life": null,
"[Explicit] #% increased maximum Mana": null,
"[Implicit] #% increased maximum Mana": null,
"[Explicit] #% of Physical Attack Damage Leeched as Life": null,
"[Implicit] #% of Physical Attack Damage Leeched as Life": null,
"[Crafted] #% of Physical Attack Damage Leeched as Life": null,
"[Explicit] #% of Physical Attack Damage Leeched as Mana": null,
"[Crafted] #% of Physical Attack Damage Leeched as Mana": null,
"[Unique explicit] #% reduced Charges used": null,
"[Explicit] #% reduced Fishing Pool Consumption": null,
"[Explicit] +# Extra Charges": null,
"[Implicit] Creates a Smoke Cloud on Use": null,
"[Explicit] +# to Armour": null,
"[Crafted] +# to Armour": null,
"[Explicit] +# to Evasion Rating": null,
"[Crafted] +# to Evasion Rating": null,
"[Explicit] +# to Level of Socketed Bow Gems": null,
"[Explicit] +# to Level of Socketed Gems": null,
"[Implicit] +# to Level of Socketed Gems": null,
"[Explicit] +# to Level of Socketed Melee Gems": null,
"[Explicit] +# to maximum Energy Shield": null,
"[Crafted] +# to maximum Energy Shield": null,
"[Implicit] +# to maximum Energy Shield": null,
"[Explicit] #% increased maximum Energy Shield": null,
"[Crafted] #% increased maximum Energy Shield": null,
"[Explicit] +# to maximum Life": null,
"[Crafted] +# to maximum Life": null,
"[Implicit] +# to maximum Life": null,
"[Explicit] +# to maximum Mana": null,
"[Crafted] +# to maximum Mana": null,
"[Implicit] +# to maximum Mana": null,
"[Explicit] +#% to Critical Strike Multiplier with Cold Skills": null,
"[Explicit] +#% to Critical Strike Multiplier with Fire Skills": null,
"[Explicit] +#% to Critical Strike Multiplier with Lightning Skills": null,
"[Explicit] Adds # to # Chaos Damage": null,
"[Implicit] Adds # to # Chaos Damage": null,
"[Explicit] Adds # to # Cold Damage": null,
"[Implicit] Adds # to # Cold Damage": null,
"[Crafted] Adds # to # Cold Damage": null,
"[Explicit] Adds # to # Cold Damage to Attacks": null,
"[Implicit] Adds # to # Cold Damage to Attacks": null,
"[Crafted] Adds # to # Cold Damage to Attacks": null,
"[Explicit] Adds # to # Fire Damage": null,
"[Implicit] Adds # to # Fire Damage": null,
"[Crafted] Adds # to # Fire Damage": null,
"[Explicit] Adds # to # Fire Damage to Attacks": null,
"[Implicit] Adds # to # Fire Damage to Attacks": null,
"[Crafted] Adds # to # Fire Damage to Attacks": null,
"[Explicit] Adds # to # Lightning Damage": null,
"[Implicit] Adds # to # Lightning Damage": null,
"[Crafted] Adds # to # Lightning Damage": null,
"[Explicit] Adds # to # Lightning Damage to Attacks": null,
"[Implicit] Adds # to # Lightning Damage to Attacks": null,
"[Crafted] Adds # to # Lightning Damage to Attacks": null,
"[Explicit] Adds # to # Physical Damage": null,
"[Crafted] Adds # to # Physical Damage": null,
"[Explicit] Adds # to # Physical Damage to Attacks": null,
"[Crafted] Adds # to # Physical Damage to Attacks": null,
"[Implicit] Adds # to # Physical Damage to Attacks": null,
"[Explicit] Instant Recovery": null,
"[Explicit] Instant Recovery when on Low Life": null,
"[Explicit] #% of Recovery applied Instantly": null,
"[Explicit] Minions deal #% increased Damage": null,
"[Implicit] Minions deal #% increased Damage": null,
"[Crafted] Minions deal #% increased Damage": null,
"[Explicit] Minions have #% increased maximum Life": null,
"[Crafted] Minions have #% increased maximum Life": null,
"[Explicit] Reflects # Physical Damage to Melee Attackers": null,
"[Crafted] Reflects # Physical Damage to Melee Attackers": null,
"[Implicit] Reflects # Physical Damage to Melee Attackers": null,
"[Explicit] Totemic Wood Lure": null,
"[Explicit] # Life Regenerated per second": null,
"[Implicit] # Life Regenerated per second": null,
"[Explicit] #% chance to Knock Enemies Back on hit": null,
"[Explicit] #% increased Accuracy Rating": null,
"[Implicit] #% increased Accuracy Rating": null,
"[Explicit] #% increased Area Damage": null,
"[Explicit] #% increased Attack Speed": null,
"[Crafted] #% increased Attack Speed": null,
"[Implicit] #% increased Attack Speed": null,
"[Explicit] #% increased Attack and Cast Speed": null,
"[Implicit] #% increased Attack and Cast Speed": null,
"[Explicit] #% increased Cast Speed": null,
"[Crafted] #% increased Cast Speed": null,
"[Implicit] #% increased Cast Speed": null,
"[Explicit] #% increased Critical Strike Chance": null,
"[Implicit] #% increased Critical Strike Chance": null,
"[Crafted] #% increased Critical Strike Chance": null,
"[Explicit] #% increased Critical Strike Chance for Spells": null,
"[Crafted] #% increased Critical Strike Chance for Spells": null,
"[Explicit] #% increased Critical Strike Chance with Elemental Skills": null,
"[Explicit] #% increased Damage over Time": null,
"[Crafted] #% increased Damage over Time": null,
"[Explicit] #% increased Fishing Range": null,
"[Explicit] #% increased Flask effect duration": null,
"[Crafted] #% increased Flask effect duration": null,
"[Explicit] #% increased Global Critical Strike Chance": null,
"[Implicit] #% increased Global Critical Strike Chance": null,
"[Crafted] #% increased Global Critical Strike Chance": null,
"[Explicit] #% increased Melee Critical Strike Chance": null,
"[Explicit] #% increased Projectile Speed": null,
"[Crafted] #% increased Projectile Speed": null,
"[Explicit] #% increased Quantity of Fish Caught": null,
"[Implicit] #% increased Quantity of Fish Caught": null,
"[Explicit] #% increased Rarity of Fish Caught": null,
"[Implicit] #% increased Rarity of Fish Caught": null,
"[Explicit] #% increased Stun Duration on Enemies": null,
"[Implicit] #% increased Stun Duration on Enemies": null,
"[Crafted] #% increased Stun Duration on Enemies": null,
"[Explicit] #% increased Stun and Block Recovery": null,
"[Implicit] #% increased Stun and Block Recovery": null,
"[Explicit] #% reduced Attribute Requirements": null,
"[Explicit] #% reduced Enemy Stun Threshold": null,
"[Explicit] #% reduced Mana Cost of Skills": null,
"[Explicit] +# Energy Shield gained for each Enemy hit by your Attacks": null,
"[Explicit] +# Life gained for each Enemy hit by Attacks": null,
"[Implicit] +# Life gained for each Enemy hit by Attacks": null,
"[Explicit] +# Life gained for each Enemy hit by your Attacks": null,
"[Implicit] +# Life gained for each Enemy hit by your Attacks": null,
"[Crafted] +# Life gained for each Enemy hit by your Attacks": null,
"[Explicit] +# Life gained on Kill": null,
"[Explicit] +# Mana gained for each Enemy hit by your Attacks": null,
"[Implicit] +# Mana gained for each Enemy hit by your Attacks": null,
"[Explicit] +# Mana gained on Kill": null,
"[Explicit] +# to Accuracy Rating": null,
"[Implicit] +# to Accuracy Rating": null,
"[Crafted] +# to Accuracy Rating": null,
"[Explicit] +# to Dexterity": null,
"[Implicit] +# to Dexterity": null,
"[Crafted] +# to Dexterity": null,
"[Explicit] +# to Dexterity and Intelligence": null,
"[Implicit] +# to Dexterity and Intelligence": null,
"[Explicit] +# to Intelligence": null,
"[Crafted] +# to Intelligence": null,
"[Implicit] +# to Intelligence": null,
"[Explicit] +# to Strength": null,
"[Crafted] +# to Strength": null,
"[Implicit] +# to Strength": null,
"[Explicit] +# to Strength and Dexterity": null,
"[Implicit] +# to Strength and Dexterity": null,
"[Explicit] +# to Strength and Intelligence": null,
"[Implicit] +# to Strength and Intelligence": null,
"[Explicit] +# to all Attributes": null,
"[Implicit] +# to all Attributes": null,
"[Crafted] +# to all Attributes": null,
"[Explicit] +#% to Chaos Resistance": null,
"[Implicit] +#% to Chaos Resistance": null,
"[Explicit] +#% to Cold Resistance": null,
"[Crafted] +#% to Cold Resistance": null,
"[Implicit] +#% to Cold Resistance": null,
"[Explicit] +#% to Cold and Lightning Resistances": null,
"[Crafted] +#% to Cold and Lightning Resistances": null,
"[Implicit] +#% to Cold and Lightning Resistances": null,
"[Explicit] +#% to Critical Strike Multiplier for Spells": null,
"[Explicit] +#% to Critical Strike Multiplier with Elemental Skills": null,
"[Explicit] +#% to Fire Resistance": null,
"[Implicit] +#% to Fire Resistance": null,
"[Crafted] +#% to Fire Resistance": null,
"[Explicit] +#% to Fire and Cold Resistances": null,
"[Implicit] +#% to Fire and Cold Resistances": null,
"[Crafted] +#% to Fire and Cold Resistances": null,
"[Explicit] +#% to Fire and Lightning Resistances": null,
"[Implicit] +#% to Fire and Lightning Resistances": null,
"[Crafted] +#% to Fire and Lightning Resistances": null,
"[Explicit] +#% to Global Critical Strike Multiplier": null,
"[Crafted] +#% to Global Critical Strike Multiplier": null,
"[Implicit] +#% to Global Critical Strike Multiplier": null,
"[Explicit] +#% to Lightning Resistance": null,
"[Implicit] +#% to Lightning Resistance": null,
"[Crafted] +#% to Lightning Resistance": null,
"[Explicit] +#% to Melee Critical Strike Multiplier": null,
"[Explicit] +#% to all Elemental Resistances": null,
"[Implicit] +#% to all Elemental Resistances": null,
"[Crafted] +#% to all Elemental Resistances": null,
"[Explicit] Eternal Iron Hook": null,
"[Explicit] Grants #% of Life Recovery to Minions": null,
"[Explicit] Immunity to Poison during Flask": null,
"[Explicit] Immunity to Bleeding during Flask": null,
"[Explicit] Immunity to Freeze and Chill during Flask": null,
"[Explicit] Immunity to Ignite during Flask": null,
"[Explicit] Immunity to Shock during Flask": null,
"[Explicit] Minions have #% Chance to Block": null,
"[Explicit] Minions have +#% to all Elemental Resistances": null,
"[Explicit] Totems gain +#% to all Elemental Resistances": null,
"[Explicit] #% Chance to Block": null,
"[Implicit] #% Chance to Block": null,
"[Unique explicit] #% Chance to Block": null,
"[Implicit] #% Chance to Block Spells": null,
"[Unique explicit] #% Chance to Block Spells": null,
"[Explicit] #% additional Block Chance while Dual Wielding": null,
"[Implicit] #% additional Block Chance while Dual Wielding": null,
"[Crafted] #% additional Block Chance while Dual Wielding": null,
"[Implicit] #% additional Chance to receive a Critical Strike": null,
"[Implicit] #% chance of Arrows Piercing": null,
"[Explicit] #% chance of Projectiles Piercing": null,
"[Implicit] #% chance of Projectiles Piercing": null,
"[Explicit] #% chance to Avoid being Frozen": null,
"[Implicit] #% chance to Avoid being Frozen": null,
"[Crafted] #% chance to Avoid being Frozen": null,
"[Explicit] #% chance to Avoid being Ignited": null,
"[Implicit] #% chance to Avoid being Ignited": null,
"[Explicit] #% chance to Avoid being Shocked": null,
"[Implicit] #% chance to Avoid being Shocked": null,
"[Implicit] #% chance to Cause Monsters to Flee": null,
"[Implicit] #% increased Chaos Damage per equipped Corrupted Item": null,
"[Implicit] #% increased Damage while Dead": null,
"[Implicit] #% increased Life Leeched per second per equipped Corrupted Item": null,
"[Implicit] #% increased Mana Leeched per second per equipped Corrupted Item": null,
"[Explicit] #% increased Movement Speed": null,
"[Implicit] #% increased Movement Speed": null,
"[Crafted] #% increased Movement Speed": null,
"[Unique explicit] #% increased Radius of Area Skills": null,
"[Unique explicit] #% increased Area of Effect of Area Skills": null,
"[Implicit] #% increased Skill Effect Duration": null,
"[Implicit] #% increased Vaal Skill Damage": null,
"[Crafted] #% of Cold Damage Leeched as Life": null,
"[Implicit] #% of Cold Damage Leeched as Life": null,
"[Unique explicit] #% of Cold Damage Leeched as Life": null,
"#% of Damage taken gained as Mana when Hit": null,
"[Crafted] #% of Fire Damage Leeched as Life": null,
"[Implicit] #% of Fire Damage Leeched as Life": null,
"[Unique explicit] #% of Fire Damage Leeched as Life": null,
"[Explicit] #% of Lightning Damage Leeched as Life": null,
"[Implicit] #% of Lightning Damage Leeched as Life": null,
"[Crafted] #% of Lightning Damage Leeched as Life": null,
"[Implicit] #% of Physical Damage Converted to Cold Damage": null,
"[Implicit] #% of Physical Damage Converted to Fire Damage": null,
"[Implicit] #% of Physical Damage Converted to Lightning Damage": null,
"[Implicit] #% reduced Character Size": null,
"[Implicit] #% reduced Chill Duration on You": null,
"[Implicit] #% reduced Freeze Duration on You": null,
"[Implicit] #% reduced Ignite Duration on You": null,
"[Implicit] #% reduced Shock Duration on You": null,
"[Implicit] -# Physical Damage taken from Attacks": null,
"[Implicit] +# to Maximum Endurance Charges": null,
"[Implicit] +# to Maximum Frenzy Charges": null,
"[Implicit] +# to Maximum Power Charges": null,
"[Explicit] +# to Weapon range": null,
"[Implicit] +# to Weapon range": null,
"[Crafted] +# to Weapon range": null,
"[Implicit] +#% to all maximum Resistances": null,
"[Implicit] Adds # to # Chaos Damage to Attacks": null,
"[Crafted] Adds # to # Chaos Damage to Attacks": null,
"[Implicit] Adds an additional Arrow": null,
"[Implicit] Can have up to # additional Trap placed at a time": null,
"[Implicit] Culling Strike": null,
"[Implicit] Enemies can have # additional Curse": null,
"[Implicit] Grants level # Anger Skill": null,
"[Implicit] Grants level # Elemental Weakness Skill": null,
"[Implicit] Grants level # Projectile Weakness Skill": null,
"[Implicit] Grants level # Vulnerability Skill": null,
"[Unique explicit] Grants level # Doryani's Touch Skill": null,
"[Crafted] Socketed Gems are Supported by Level # Blood Magic": null,
"[Implicit] Socketed Gems are Supported by Level # Faster Casting": null,
"[Implicit] Socketed Gems are Supported by level # Added Fire Damage": null,
"[Implicit] Socketed Gems are Supported by level # Elemental Proliferation": null,
"[Implicit] Socketed Gems are Supported by level # Increased Area of Effect": null,
"[Implicit] Socketed Gems are supported by level # Additional Accuracy": null,
"[Implicit] Socketed Gems are supported by level # Fork": null,
"[Implicit] Socketed Gems are supported by level # Increased Critical Damage": null,
"[Implicit] Socketed Gems are supported by level # Life Leech": null,
"[Implicit] Socketed Gems are supported by level # Melee Splash": null,
"[Implicit] Socketed Gems are supported by level # Multistrike": null,
"[Implicit] Socketed Gems are supported by level # Stun": null,
"[Implicit] Socketed Gems are supported by level # Weapon Elemental Damage": null,
"[Unique explicit] Socketed Gems are supported by level # Generosity": null,
"[Implicit] You can catch Corrupted Fish": null,
"[Implicit] You cannot be Cursed with Silence" : null,
"[Unique explicit] Adds # to # Lightning Damage to Spells during Flask effect": null,
"[Unique explicit] #% increased Charges used": null,
"[Unique explicit] Shocks nearby Enemies during Flask effect, causing #% increased Damage taken": null,
"[Unique explicit] You are Shocked during Flask effect, causing 50% increased Damage taken": null,
"[Unique explicit] #% of Lightning Damage Leeched as Life during Flask effect": null,
"[Unique explicit] #% of Lightning Damage Leeched as Mana during Flask effect": null,
"[Unique explicit] Adds # to # Lightning Damage to Attacks during Flask effect": null,
"[Unique explicit] #% of Physical Damage Converted to Lightning during Flask effect": null,
"[Unique explicit] Damage Penetrates #% Lightning Resistance during Flask effect": null,
"[Unique explicit] Socketed Gems fire Projectiles in a Nova": null,
"[Unique explicit] Socketed Gems fire # additional Projectiles": null,
"[Unique explicit] Chaos Damage does not bypass Energy Shield": null,
"[Unique explicit] Cast a Socketed Lightning Spell on Hit": null,
"[Unique explicit] Socketed Lightning Spells deal #% increased Spell Damage if Triggered": null,
"[Unique explicit] Your Flasks grant #% chance to Ignite while using a Flask": null,
"[Unique explicit] #% of Physical Damage Leeched as Life": null,
"[Unique explicit] #% increased Damage with Hits against Rare monsters": null,
"[Unique explicit] When you Kill a Rare monster, you gain its mods for 20 seconds": null,
"[Unique explicit] #% increased Rarity of Items found during Flask effect": null,
"[Unique explicit] #% increased Quantity of Items found during Flask effect": null,
"[Unique explicit] #% increased Light Radius during Flask effect": null,
"[Unique explicit] +#% to all maximum Elemental Resistances during Flask effect": null,
"[Explicit] #% increased Quantity of Items found": null,
"[Talisman implicit] #% increased Quantity of Items found": null,
"[Unique explicit] Rampage": null,
"[Unique explicit] #% increased Rarity of Items found per 15 Rampage Kills": null,
"[Unique explicit] #% Chance to Block during Flask effect": null,
"[Unique explicit] #% Chance to Block Spells during Flask effect": null,
"[Unique explicit] #% of Physical Damage taken as Cold Damage during Flask effect": null,
"[Unique explicit] Gain #% of Physical Damage as Extra Cold Damage during effect": null,
"[Unique explicit] #% chance to Avoid being Chilled during Flask effect": null,
"[Unique explicit] #% chance to Avoid being Frozen during Flask effect": null,
"[Implicit] Adds # to # Physical Damage to Attacks with Bows": null,
"Projectile Damage increased by #% of Arrow Pierce Chance": null,
"Cast level # Consecrate when you deal a Critical Strike": null,
"[Unique explicit] #% increased Rarity of Items Dropped by Enemies killed with a Critical Strike": null,
"[Unique explicit] #% increased Damage while on Consecrated Ground": null,
"[Unique explicit] #% additional Block Chance while on Consecrated Ground": null,
"[Explicit] #% increased Cast Speed while holding a Shield": null,
"[Explicit] #% increased Critical Strike Chance with One Handed Melee Weapons": null,
"[Explicit] #% increased Physical Damage with Two Handed Melee Weapons": null,
"[Explicit] #% increased Melee Physical Damage while holding a Shield": null,
"[Explicit] #% increased Attack Speed while Dual Wielding": null,
"[Explicit] #% increased Projectile Damage": null,
"[Explicit] #% additional Chance to Block with Staves": null,
"[Explicit] #% increased Physical Damage with Staves": null,
"[Explicit] #% increased Spell Damage while wielding a Staff": null,
"[Explicit] #% increased Melee Damage": null,
"[Implicit] #% increased Melee Damage": null,
"[Explicit] #% increased Physical Damage with Axes": null,
"[Explicit] #% increased Attack Speed with Axes": null,
"[Explicit] #% increased Physical Damage with Bows": null,
"[Explicit] #% increased Ignite Duration on Enemies": null,
"[Crafted] #% increased Ignite Duration on Enemies": null,
"[Explicit] #% chance to Ignite": null,
"[Crafted] #% chance to Ignite": null,
"[Explicit] #% increased Shock Duration on Enemies": null,
"[Crafted] #% increased Shock Duration on Enemies": null,
"[Explicit] #% chance to Shock": null,
"[Crafted] #% chance to Shock": null,
"[Explicit] #% increased Spell Damage while holding a Shield": null,
"[Explicit] #% additional Chance to Block Spells with Shields": null,
"[Explicit] #% additional Chance to Block Spells while Dual Wielding": null,
"[Explicit] #% increased Trap Damage": null,
"[Crafted] #% increased Trap Damage": null,
"[Explicit] Cannot be Frozen": null,
"[Explicit] Cannot be Poisoned": null,
"[Unique explicit] Cannot be Ignited": null,
"[Explicit] #% increased Light Radius": null,
"[Unique explicit] #% chance on Block to create Consecrated Ground": null,
"[Unique explicit] #% of Attack Damage Leeched as Life against Bleeding Enemies": null,
"[Implicit] #% chance to cause Bleeding on Hit": null,
"[Unique explicit] #% increased Physical Damage with Weapons per Red Socket": null,
"[Unique explicit] #% increased Global Attack Speed per Green Socket": null,
"[Unique explicit] #% of Physical Attack Damage Leeched as Mana per Blue Socket": null,
"[Unique explicit] +# to Melee Weapon Range per White Socket": null,
"#% increased Cold Damage with Weapons": null,
"[Unique explicit] #% increased Rarity of Items Dropped by Frozen Enemies": null,
"[Implicit] #% increased Block Recovery": null,
"[Explicit] #% increased Armour and Evasion": null,
"[Crafted] #% increased Armour and Evasion": null,
"[Unique explicit] #% of Block Chance applied to Spells when on Low Life": null,
"[Explicit] +#% Chance to Block": null,
"[Crafted] +#% Chance to Block": null,
"[Unique explicit] #% chance to Block Attacks if you have Blocked a Spell Recently": null,
"[Unique explicit] #% chance to Block Spells if you have Blocked an Attack Recently": null,
"[Explicit] Next Area will contain a Tormented Spirit": null,
"[Explicit] Next Area will have a random Tempest, affecting both Monsters and Players": null,
"[Explicit] Next Area will contain up to # Shrine": null,
"[Explicit] Next Area will contain up to # Monster imprisoned by Essences": null,
"[Explicit] Next Area will contain a Rogue Exile": null,
"[Explicit] Next Area will contain a Strongbox": null,
"[Explicit] Slaying Enemies in a kill streak in next Area will grant Rampage bonuses": null,
"[Explicit] Next Area will contain at least # Warband Pack": null,
"[Explicit] Next Area will contain additional Rare Monsters": null,
"[Explicit] Rare Monsters in next Area will each have a Nemesis Mod": null,
"[Explicit] Next Area will contain a Perandus Chest": null,
"[Explicit] Next Area will have a #% chance to contain Cadiro Perandus": null,
"[Explicit] Next Area will contain a Silver Coin": null,
"[Explicit] Area contains an Invasion Boss": null,
"[Explicit] Next Area will contain a Monster possessed by an Ancient Talisman": null,
"[Explicit] Next Outdoor Area has #% chance to contain a Stone Circle": null,
"[Explicit] Slaying Enemies close together in next Area will attract monsters from Beyond this realm": null,
"[Explicit] Next Area will contain additional Magic Monsters": null,
"[Explicit] Magic Monster Packs in next Area will each have a Bloodline Mod": null,
"[Explicit] #% increased Elemental Damage": null,
"[Implicit] #% increased Elemental Damage": null,
"[Unique explicit] #% increased Elemental Damage": null,
"[Unique explicit] #% chance to gain a Power Charge when you Stun": null,
"[Unique explicit] Gain Unholy Might for # seconds on Critical Strike": null,
"[Unique explicit] Has no Sockets": null,
"[Unique explicit] Melee Attacks have #% chance to cause Bleeding": null,
"[Unique explicit] Melee Attacks have #% chance to Poison on Hit": null,
"[Explicit] #% reduced Chaos Damage taken over time": null,
"[Unique explicit] -# Chaos Damage taken": null,
"[Unique explicit] #% reduced Physical Damage": null,
"[Unique explicit] Mercury Footprints": null,
"[Implicit] Creates Consecrated Ground on Use": null,
"[Unique explicit] #% more Melee Physical Damage during effect": null,
"[Unique explicit] Knocks Back Enemies in an Area on Flask use": null,
"[Unique explicit] Adds Knockback during Flask effect": null,
"[Unique explicit] #% chance to cause Enemies to Flee on use": null,
"[Unique explicit] #% increased Area of Effect while Unarmed": null,
"[Explicit] # to # Cold Damage per Frenzy Charge": null,
"[Explicit] Hits can't be Evaded": null,
"[Explicit] #% increased Damage": null,
"[Talisman implicit] #% increased Damage": null,
"[Implicit] #% increased Attack Damage": null,
"[Explicit] #% increased Flask Life Recovery rate": null,
"[Crafted] #% increased Flask Life Recovery rate": null,
"[Explicit] Damage Penetrates #% Cold Resistance": null,
"#% increased Damage while using a Flask": null,
"[Explicit] #% increased Armour and Energy Shield": null,
"[Crafted] #% increased Armour and Energy Shield": null,
"[Explicit] #% increased Evasion and Energy Shield": null,
"[Crafted] #% increased Evasion and Energy Shield": null,
"[Explicit] #% increased Armour, Evasion and Energy Shield": null,
"[Explicit] Gain #% of Physical Damage as Extra Fire Damage": null,
"[Explicit] Damage Penetrates #% Fire Resistance": null,
"[Explicit] Rhoa Feather Lure": null,
"[Explicit] #% increased Elemental Damage with Attack Skills": null,
"[Implicit] #% increased Elemental Damage with Attack Skills": null,
"[Crafted] #% increased Elemental Damage with Attack Skills": null,
"[Explicit] -# to Mana Cost of Skills": null,
"[Explicit] +# to Level of Socketed Spell Gems": null,
"[Explicit] +# to Level of Socketed Support Gems": null,
"[Explicit] +# to Level of Socketed Fire Gems": null,
"[Explicit] +# to Level of Socketed Cold Gems": null,
"[Explicit] +# to Level of Socketed Lightning Gems": null,
"[Explicit] +# to Level of Socketed Chaos Gems": null,
"[Explicit] +# to Level of Socketed Minion Gems": null,
"[Explicit] #% increased Life Leeched per second": null,
"[Explicit] Damage Penetrates #% Lightning Resistance": null,
"[Explicit] #% reduced Quantity of Items found in next Area": null,
"[Explicit] Area is inhabited by an additional Invasion Boss": null,
"[Explicit] #% of Physical Damage taken as Cold Damage": null,
"[Explicit] #% of Physical Damage taken as Fire Damage": null,
"[Unique explicit] Projectiles Pierce an additional Target": null,
"Projectiles Pierce 2 additional Targets": null,
"[Explicit] #% increased Damage with Poison": null,
"[Unique explicit] #% increased Damage with Poison if you have at least 300 Dexterity": null,
"[Explicit] Your Flasks grant #% increased Rarity of Items found while using a Flask": null,
"[Explicit] Adds # to # Fire Damage to Spells": null,
"[Crafted] Adds # to # Fire Damage to Spells": null,
"[Explicit] Adds # to # Cold Damage to Spells": null,
"[Crafted] Adds # to # Cold Damage to Spells": null,
"[Explicit] Adds # to # Lightning Damage to Spells": null,
"[Crafted] Adds # to # Lightning Damage to Spells": null,
"[Explicit] +#% to Quality of Socketed Support Gems": null,
"[Explicit] Adds # to # Fire Damage if you've Blocked Recently": null,
"[Explicit] #% additional Physical Damage Reduction while using a Flask": null,
"[Explicit] #% increased Area of Effect of Area Skills": null,
"[Implicit] #% increased Area of Effect of Area Skills": null,
"#% increased Attack and Cast Speed while using a Flask": null,
"[Unique explicit] #% chance to Avoid Elemental Ailments": null,
"[Explicit] #% chance to Avoid being Stunned": null,
"[Crafted] #% chance to Avoid being Stunned": null,
"[Explicit] #% increased Flask Charges gained": null,
"[Explicit] #% reduced Flask Charges used": null,
"[Explicit] #% increased Bleed duration": null,
"[Explicit] #% increased Damage with Bleeding": null,
"[Unique explicit] +#% additional Block Chance against Projectiles": null,
"[Explicit] #% increased Burning Damage": null,
"[Unique explicit] Cannot be Chilled": null,
"[Explicit] #% chance to Dodge Attacks": null,
"[Implicit] #% chance to Dodge Attacks": null,
"[Explicit] #% chance to Freeze": null,
"[Crafted] #% chance to Freeze": null,
"[Talisman Implicit] #% chance to Freeze, Shock and Ignite": null,
"[Explicit] #% chance to Recover #% of Maximum Mana when you use a Skill": null,
"[Explicit] #% of Chaos Damage Leeched as Life": null,
"[Explicit] +#% to Chaos Resistance while using a Flask": null,
"[Explicit] #% chance to Avoid Cold Damage when Hit": null,
"[Explicit] Socketed Gems have #% chance to Ignite": null,
"[Explicit] Damage Penetrates #% Elemental Resistances while using a Flask": null,
"[Explicit] #% of Energy Shield Regenerated per second": null,
"[Explicit] #% chance to Avoid Fire Damage when Hit": null,
"[Explicit] Karui Stone Hook": null,
"[Explicit] #% increased effect of Fortify on You": null,
"[Unique explicit] +# Life gained when you Block": null,
"#% chance to Cast Level # Fire Burst on Hit": null,
"[Explicit] Casts level # Spectral Spirits when equipped": null,
"[Unique explicit] +# to Level of Socketed Aura Gems": null,
"#% reduced Elemental Damage Taken while stationary": null,
"[Explicit] Drops Burning Ground while moving, dealing # Fire Damage per second": null,
"[Explicit] #% of Life Regenerated per second": null,
"[Implicit] #% of Life Regenerated per second": null,
"[Unique explicit] #% of Life Regenerated per Second per Frenzy Charge": null,
"[Explicit] #% chance to Avoid Lightning Damage when Hit": null,
"[Explicit] #% chance to Poison on Hit": null,
"[Explicit] Recover #% of your maximum Mana when you Block": null,
"[Explicit] Minions have #% increased Movement Speed": null,
"[Explicit] #% increased Movement Speed while using a Flask": null,
"[Explicit] #% increased Movement Speed during Flask effect": null,
"[Explicit] #% increased Movement speed while on Burning, Chilled or Shocked ground": null,
"Chill Nearby Enemies when you Block": null,
"[Explicit] Gain Onslaught for # seconds when Hit": null,
"[Explicit] #% increased Poison Duration": null,
"[Unique explicit] #% increased Poison Duration at least 150 Intelligence": null,
"[Explicit] #% chance to gain a Power Charge on Block": null,
"[Explicit] #% chance to gain a Power, Frenzy or Endurance Charge on Kill": null,
"[Explicit] #% reduced Mana Reserved": null,
"[Implicit] #% additional Physical Damage Reduction": null,
"[Explicit] #% reduced Reflected Damage taken": null,
"[Explicit] Socketed Gems have +#% Critical Strike Chance": null,
"[Explicit] #% chance to Dodge Spell Damage": null,
"[Unique explicit] #% chance to Dodge Spell Damage": null,
"[Explicit] Socketed Gems deal # to # additional Fire Damage": null,
"[Explicit] Socketed Gems have #% more Attack and Cast Speed": null,
"[Explicit] Socketed Gems gain #% of Physical Damage as extra Lightning Damage": null,
"[Explicit] Socketed Gems deal #% more Elemental Damage": null,
"Socketed Non-Curse Aura Gems have #% increased effect": null,
"[Explicit] Socketed Gems deal #% more Damage over Time": null,
"[Unique explicit] #% increased Damage while Leeching": null,
"[Unique explicit] Extra gore": null,
"[Unique explicit] #% of Life Leech applies to Enemies as Chaos Damage": null,
"[Unique explicit] #% chance to gain a Flask Charge when you deal a Critical Strike": null,
"[Unique explicit] Gain Onslaught for # second per Frenzy Charge on use": null,
"[Unique explicit] #% increased Movement Speed during Flask effect": null,
"[Unique explicit] #% increased Area of Effect during Flask Effect": null,
"[Unique explicit] # additional Projectiles during Flask Effect": null,
"[Unique explicit] #% of Block Chance applied to Spells": null,
"[Unique explicit] #% additional Block Chance": null,
"[Unique explicit] #% additional Chance to receive a Critical Strike": null,
"[Explicit] Area is inhabited by Solaris fanatics": null,
"[Explicit] Area is inhabited by Lunaris fanatics": null,
"[Explicit] Area is inhabited by Ghosts": null,
"[Explicit] Area is inhabited by Abominations": null,
"[Explicit] Area is inhabited by # additional Rogue Exiles": null,
"[Explicit] Area is inhabited by Humanoids": null,
"[Explicit] Area is inhabited by Goatmen": null,
"[Explicit] Area is inhabited by Skeletons": null,
"[Explicit] Area is inhabited by Demons": null,
"[Explicit] Area is inhabited by ranged monsters": null,
"[Explicit] Area is inhabited by Animals": null,
"[Explicit] Area is inhabited by Sea Witches and their Spawn": null,
"[Explicit] Area is inhabited by Undead": null,
"[Explicit] Area has increased monster variety": null,
"[Explicit] Area contains two Unique Bosses": null,
"[Explicit] Monsters' skills Chain # additional times": null,
"[Explicit] All Monster Damage from Hits always Ignites": null,
"[Explicit] Slaying Enemies close together can attract monsters from Beyond": null,
"[Explicit] Rare Monsters each have a Nemesis Mod": null,
"[Explicit] #% more Rare Monsters": null,
"[Explicit] Monsters cannot be slowed below base speed": null,
"[Explicit] Monsters cannot be Taunted": null,
"[Explicit] +#% Monster Physical Damage Reduction": null,
"[Explicit] Monsters deal #% extra Damage as Fire": null,
"[Explicit] Monsters deal #% extra Damage as Cold": null,
"[Explicit] Monsters deal #% extra Damage as Lightning": null,
"[Explicit] #% increased Monster Movement Speed": null,
"[Explicit] #% increased Monster Attack Speed": null,
"[Explicit] #% increased Monster Cast Speed": null,
"[Explicit] #% less effect of Curses on Monsters": null,
"[Explicit] Monsters have a #% chance to avoid Poison, Blind, and Bleed": null,
"[Explicit] Monsters reflect #% of Elemental Damage": null,
"[Explicit] Unique Boss deals #% increased Damage": null,
"[Explicit] Unique Boss has #% increased Attack and Cast Speed": null,
"[Explicit] Monsters reflect #% of Physical Damage": null,
"[Explicit] +#% Monster Chaos Resistance": null,
"[Explicit] +#% Monster Elemental Resistance": null,
"[Explicit] #% increased Monster Damage": null,
"[Explicit] Monsters fire 2 additional Projectiles": null,
"[Explicit] Unique Boss has #% increased Life": null,
"[Explicit] Unique Boss has #% increased Area of Effect": null,
"[Explicit] Monsters cannot be Stunned": null,
"[Explicit] #% more Monster Life": null,
"[Explicit] Monsters have a #% chance to cause Status Ailments": null,
"[Explicit] Monsters are Hexproof": null,
"[Explicit] Players have Elemental Equilibrium": null,
"[Explicit] Magic Monster Packs each have a Bloodline Mod": null,
"[Explicit] #% more Magic Monsters": null,
"[Explicit] Players have Point Blank": null,
"[Explicit] Monsters Poison on Hit": null,
"[Explicit] Monsters have #% increased Critical Strike Chance": null,
"[Explicit] +#% to Monster Critical Strike Multiplier": null,
"[Explicit] Area has patches of desecrated ground": null,
"[Explicit] Area has patches of burning ground": null,
"[Explicit] Area has patches of chilled ground": null,
"[Explicit] Area has patches of shocking ground": null,
"[Explicit] Players gain #% reduced Flask Charges": null,
"[Explicit] Monsters have #% increased Area of Effect": null,
"[Explicit] Players have #% less Area of Effect": null,
"[Explicit] Monsters have #% chance to Avoid Elemental Status Ailments": null,
"[Explicit] Player Dodge chance is Unlucky": null,
"[Explicit] Monsters have #% increased Accuracy Rating": null,
"[Explicit] Players have #% reduced Block Chance": null,
"[Explicit] Players have #% less Armour": null,
"[Explicit] Players have #% less Recovery Rate of Life and Energy Shield": null,
"[Explicit] Monsters take #% reduced Extra Damage from Critical Strikes": null,
"[Explicit] Players are Cursed with Elemental Weakness": null,
"[Explicit] Players are Cursed with Enfeeble": null,
"[Explicit] Players are Cursed with Temporal Chains": null,
"[Explicit] Players are Cursed with Vulnerability": null,
"[Explicit] -#% maximum Player Resistances": null,
"[Explicit] Players cannot Regenerate Life, Mana or Energy Shield": null,
"[Explicit] Cannot Leech Life from Monsters": null,
"[Explicit] Cannot Leech Mana from Monsters": null,
"[Unique explicit] Area becomes fatal after some time": null,
"[Unique explicit] Restless Dead": null,
"[Unique explicit] Area is a large Maze": null,
"[Unique explicit] Area contains a Large Chest": null,
"[Unique explicit] Unique Boss drops # additional Maps": null,
"[Unique explicit] Unique Boss gives #% increased Experience": null,
"[Unique explicit] Contains the Immortalised Grandmasters": null,
"[Unique explicit] PvP damage scaling in effect": null,
"[Unique explicit] 0.5 Flask Charges recovered every 3 seconds": null,
"[Unique explicit] Monsters are Immune to randomly chosen Elemental Ailments or Stun": null,
"[Unique explicit] Monsters' Melee Attacks apply random Curses on Hit": null,
"[Unique explicit] Monsters reflect Curses": null,
"[Unique explicit] Monsters gain # Endurance Charges every 20 seconds": null,
"[Unique explicit] Monsters gain # Power Charges every 20 seconds": null,
"[Unique explicit] Final Boss drops higher Level Items": null,
"[Unique explicit] #% increased Experience gain": null,
"[Unique explicit] Unique Boss drops # additional Rare Life Flasks": null,
"[Unique explicit] Unique Boss drops # additional Rare Belts": null,
"[Unique explicit] Area contains # extra Harbingers": null,
"[Unique explicit] #% increased Quantity of Items found in this Area": null,
"[Unique explicit] #% increased Rarity of Items found in this Area": null,
"[Unique explicit] Area has # waves of monsters": null,
"[Unique explicit] Area has # seconds between monster waves": null,
"[Unique explicit] Players are Cursed with Conductivity": null,
"[Unique explicit] Players are Cursed with Flammability": null,
"[Unique explicit] Players are Cursed with Frostbite": null,
"[Unique explicit] Players are Cursed with Projectile Weakness": null,
"[Unique explicit] Unique Boss drops divination cards": null,
"[Unique explicit] Monsters cannot be Shocked": null,
"[Unique explicit] +#% Monster Lightning Resistance": null,
"[Unique explicit] Area is inhabited by wild Animals": null,
"[Unique explicit] Monsters drop no items": null,
"[Unique explicit] Chests have #% increased Item Rarity": null,
"[Unique explicit] Area contains no monsters": null,
"[Unique explicit] Area contains many Totems": null,
"[Unique explicit] Curses have #% reduced effect on Monsters": null,
"[Unique explicit] Deals # Chaos Damage per second to nearby Enemies": null,
"[Unique explicit] #% reduced Flask Charges gained": null,
"[Unique explicit] #% increased Flask Charges gained while using a Flask": null,
"[Unique explicit] #% increased Mana Regeneration Rate while using a Flask": null,
"[Unique explicit] +#% to all Elemental Resistances with 200 or more Strength": null,
"[Unique explicit] Nearby Enemies are Intimidated": null,
"[Unique explicit] You take #% reduced Extra Damage from Critical Strikes": null,
"[Unique explicit] #% increased Elemental Damage with Attack Skills while using a Flask": null,
"[Unique explicit] Flasks apply to your Zombies and Spectres": null,
"[Unique explicit] Flasks do not apply to You": null,
"[Unique explicit] #% more Maximum Physical Attack Damage": null,
"[Unique explicit] #% less Minimum Physical Attack Damage": null,
"[Unique explicit] Gain # Life when you Stun an Enemy": null,
"[Unique explicit] #% reduced Trap Duration": null,
"[Unique explicit] Traps Trigger at the end of their Duration": null,
"[Unique explicit] You have Phasing if Energy Shield Recharge has started Recently": null,
"[Unique explicit] #% chance to Dodge Attacks while Phasing": null,
"[Unique explicit] #% increased Movement Speed while Phasing": null,
"[Unique explicit] #% increased Shock Duration on You": null,
"[Unique explicit] Shocks you cause are reflected back to you": null,
"[Unique explicit] #% increased Damage while Shocked": null,
"[Unique explicit] #% increased Movement Speed while Shocked": null,
"[Unique explicit] #% reduced Flask Charges gained while using a Flask": null,
"[Unique explicit] #% increased Mana Recovery from Flasks": null,
"[Unique explicit] Gain Soul Eater while using a Flask": null,
"[Unique explicit] Lose Souls gained from Soul Eater on Flask Use": null,
"[Unique explicit] Your Energy Shield starts at zero": null,
"[Unique explicit] You cannot Recharge Energy Shield": null,
"[Unique explicit] You cannot Regenerate Energy Shield": null,
"[Unique explicit] You lose #% of Energy Shield per second": null,
"[Unique explicit] Life Leech is applied to Energy Shield instead while on Full Life": null,
"[Unique explicit] Gain #% of Maximum Life as Extra Maximum Energy Shield": null,
"[Unique explicit] #% increased Armour while not Ignited, Frozen or Shocked": null,
"[Unique explicit] #% of Attack Damage Leeched as Life against Chilled Enemies": null,
"[Unique explicit] Enemies Ignited by an Attack Burn #% faster": null,
"[Unique explicit] Deal no Physical Damage": null,
"[Unique explicit] Grants Summon Harbinger of Time Skill": null,
"[Unique explicit] #% increased Cooldown Recovery Speed": null,
"[Unique explicit] Debuffs on you expire #% faster": null,
"[Unique explicit] Your Flasks grant #% chance to Freeze while using a Flask": null,
"[Unique explicit] Your Flasks grant #% chance to Shock while using a Flask": null,
"[Unique explicit] #% reduced Enemy Stun Threshold while using a Flask": null,
"[Unique explicit] #% chance to Ignite while using a Flask": null,
"[Unique explicit] #% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating": null,
"[Unique explicit] #% chance to gain Fortify on Melee Stun": null,
"[Unique explicit] You have Onslaught while you have Fortify": null,
"[Unique explicit] Chill and Freeze effect on you is based on #% of Energy Shield": null,
"[Unique explicit] You gain # Evasion Rating when on Low Life": null,
"[Unique explicit] #% of Life Regenerated per second while on Low Life": null,
"[Unique explicit] #% reduced Mana Cost of Minion Skills": null,
"[Unique explicit] #% increased Rarity of Items found with a Normal Item equipped": null,
"[Unique explicit] #% increased Quantity of Items found with a Magic Item equipped": null,
"[Unique explicit] Items and Gems have #% reduced Attribute Requirements": null,
"[Unique explicit] #% reduced maximum Energy Shield": null,
"[Unique explicit] #% increased Movement Speed when on Full Life": null,
"[Unique explicit] +# to Melee Weapon and Unarmed range": null,
"[Unique explicit] #% increased Melee Damage when on Full Life": null,
"[Unique explicit] #% chance to grant Unholy Might to nearby Enemies on Kill": null,
"[Unique explicit] #% chance to grant Onslaught to nearby Enemies on Kill": null,
"[Unique explicit] #% chance to gain Unholy Might for 3 seconds on Kill": null,
"[Unique explicit] #% chance to gain Onslaught for 3 seconds on Kill": null,
"[Unique explicit] Recover #% of Maximum Life on Kill": null,
"[Unique explicit] Nearby Allies gain #% of Life Regenerated per second": null,
"[Unique explicit] Nearby Allies gain #% increased Mana Regeneration Rate": null,
"[Unique explicit] #% chance to gain a Frenzy Charge on Kill": null,
"[Unique explicit] #% chance to gain a Power Charge on Kill": null,
"[Unique explicit] #% increased Projectile Speed per Frenzy Charge": null,
"[Unique explicit] #% increased Projectile Damage per Power Charge": null,
"[Unique explicit] Grants level # Gluttony of Elements Skill": null,
"[Unique explicit] #% reduced maximum Life": null,
"[Unique explicit] Cannot be Stunned": null,
"[Unique explicit] Cannot be Blinded": null,
"[Unique explicit] #% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons": null,
"[Unique explicit] #% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons": null,
"[Unique explicit] #% increased Damage with Poison per Frenzy Charge": null,
"[Unique explicit] #% increased Poison Duration per Power Charge": null,
"[Unique explicit] Grants level # Purity of Elements Skill": null,
"[Unique explicit] Socketed Gems are Supported by level # Added Chaos Damage": null,
"[Unique explicit] Socketed Gems are supported by level # Blind": null,
"[Unique explicit] Socketed Gems are supported by level # Cast when Stunned": null,
"[Unique explicit] #% slower start of Energy Shield Recharge while using a Flask": null,
"[Unique explicit] #% increased Energy Shield Recharge Rate while using a Flask": null,
"[Unique explicit] +#% Unarmed Critical Strike Chance": null,
"[Unique explicit] Modifiers to Claw Damage also apply to Unarmed": null,
"[Unique explicit] Modifiers to Claw Attack Speed also apply to Unarmed": null,
"[Unique explicit] Modifiers to Claw Critical Strike Chance also apply to Unarmed": null,
"[Unique explicit] #% increased Area of Effect of Curse Skills": null,
"[Unique explicit] You cannot be Cursed with Silence": null,
"[Unique explicit] Grants level # Illusory Warp Skill": null,
"[Unique explicit] +# to Maximum Power Charges": null,
"[Unique explicit] #% increased Mana Regeneration Rate per Power Charge": null,
"[Unique explicit] #% increased Power Charge Duration": null,
"[Unique explicit] #% of Damage is taken from Mana before Life per Power Charge": null,
"[Unique explicit] #% reduced Critical Strike Chance per Power Charge": null,
"[Unique explicit] #% reduced Endurance Charge Duration": null,
"[Unique explicit] #% reduced Power Charge Duration": null,
"[Unique explicit] Gain an Endurance Charge when a Power Charge expires or is consumed": null,
"[Unique explicit] #% increased Freeze Duration on Enemies": null,
"[Unique explicit] #% increased Damage if you've Frozen an Enemy Recently": null,
"[Unique explicit] Cover Enemies in Ash when they Hit you": null,
"[Unique explicit] #% less Critical Strike Chance": null,
"[Unique explicit] Critical Strikes have Culling Strike": null,
"[Unique explicit] Critical Strike Chance is increased by Lightning Resistance": null,
"[Unique explicit] Trigger Level # Lightning Bolt when you deal a Critical Strike": null,
"[Unique explicit] #% of Life Regenerated per second while Frozen": null,
"[Unique explicit] #% reduced Attack Speed": null,
"[Unique explicit] #% reduced Cast Speed": null,
"[Unique explicit] +# Mana gained when you Block": null,
"[Unique explicit] +#% to maximum Block Chance": null,
"[Unique explicit] #% reduced Skill Effect Duration": null,
"[Unique explicit] Implicit Modifier magnitudes are doubled": null,
"[Unique explicit] #% increased Duration of Elemental Ailments on Enemies": null,
"[Unique explicit] #% chance to Freeze, Shock and Ignite": null,
"[Unique explicit] Cannot gain Power Charges": null,
"[Unique explicit] Chill Enemy for # second when Hit": null,
"[Unique explicit] Blind Chilled Enemies on Hit": null,
"[Unique explicit] Damage Penetrates #% Cold Resistance against Chilled Enemies": null,
"[Unique explicit] #% increased Strength": null,
"[Unique explicit] Avatar of Fire": null,
"[Unique explicit] #% increased Damage while Ignited": null,
"[Unique explicit] Take # Fire Damage when you Ignite an Enemy": null,
"[Unique explicit] #% of Fire Damage Leeched as Life while Ignited": null,
"[Unique explicit] Moving while Bleeding doesn't cause you to take extra Damage": null,
"[Unique explicit] #% increased Life Recovery from Flasks": null,
"[Unique explicit] Recover Full Life at the end of the Flask effect": null,
"[Unique explicit] #% increased Recovery Speed": null,
"[Unique explicit] Removes #% of your maximum Energy Shield on use": null,
"[Unique explicit] You take #% of your maximum Life as Chaos Damage on use": null,
"[Unique explicit] You gain a Power Charge on use": null,
"[Unique explicit] You gain a Frenzy Charge on use": null,
"[Unique explicit] You gain an Endurance Charge on use": null,
"[Unique explicit] Skills used during Flask effect grant #% of Mana Cost as Life": null,
"[Unique explicit] #% increased Amount Recovered": null,
"[Unique explicit] Your Skills have no Mana Cost during Flask effect": null,
"[Unique explicit] #% reduced Amount Recovered": null,
"[Unique explicit] # Enemy Writhing Worms escape the Flask when used": null,
"[Unique explicit] During Flask Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest": null,
"[Unique explicit] During Flask Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest": null,
"[Unique explicit] Gain Unholy Might during Flask Effect": null,
"[Unique explicit] Immunity to Ignite during Flask effect": null,
"[Unique explicit] Removes Burning on use": null,
"[Unique explicit] Chaos Damage does not bypass Energy Shield during effect": null,
"[Unique explicit] Removes all but one Life on use": null,
"[Unique explicit] Removed life is regenerated as Energy Shield over 2 seconds 100% increased Duration": null,
"[Unique explicit] Immune to Freeze, Chill, Curses and Stuns during Flask Effect": null,
"[Unique explicit] #% reduced Duration": null,
"[Unique explicit] Recover #% of your maximum Life on use": null,
"[Unique explicit] #% of maximum Life taken as Chaos Damage per second": null,
"[Unique explicit] Gains no Charges during Effect of any Overflowing Chalice Flask": null,
"[Unique explicit] #% increased Charges gained by Other Flasks during Flask Effect": null,
"[Unique explicit] Zealot's Oath during Flask effect": null,
"[Unique explicit] Consumes Frenzy Charges on use": null,
"[Unique explicit] #% increased Damage Over Time during Flask Effect": null,
"[Unique explicit] Grants level # Vulnerability Curse Aura during Flask Effect": null,
"[Unique explicit] #% of Chaos Damage Leeched as Life during Flask effect": null,
"[Unique explicit] Gain #% of Physical Damage as Extra Chaos Damage during effect": null,
"[Unique explicit] Gain #% of Elemental Damage as Extra Chaos Damage during effect": null,
"[Unique explicit] #% chance to double Stun Duration": null,
"[Unique explicit] Grants level # Frostbite Skill": null,
"[Unique explicit] #% increased Chill Duration on Enemies": null,
"[Unique explicit] Gain #% of Physical Damage as Extra Cold Damage": null,
"[Unique explicit] Curses on Slain Enemies are transferred to a nearby Enemy": null,
"[Unique explicit] Attack skills can have # additional Totem Summoned at a time": null,
"[Unique explicit] #% of Physical Damage Converted to Fire Damage": null,
"[Unique explicit] Adds # to # Physical Damage to Attacks with Bows": null,
"[Unique explicit] Arrows Pierce an additional Target": null,
"[Unique explicit] Arrows deal #% increased Damage to Targets they Pierce": null,
"[Unique explicit] #% increased Lightning Damage per 10 Intelligence": null,
"[Unique explicit] #% chance to create a Smoke Cloud when Hit": null,
"[Unique explicit] #% increased Damage with Hits and Ailments against Blinded Enemies": null,
"[Unique explicit] #% reduced Projectile Speed": null,
"[Unique explicit] Projectiles Fork": null,
"[Unique explicit] Grants Summon Harbinger of Directions Skill": null,
"[Unique explicit] Adds # to # Fire Damage to Spells and Attacks": null,
"[Unique explicit] Adds # to # Cold Damage to Spells and Attacks": null,
"[Unique explicit] #% reduced Energy Shield Recharge Rate": null,
"[Unique explicit] #% chance to Cause Monsters to Flee": null,
"[Unique explicit] Enemies can have # additional Curse": null,
"[Unique explicit] +# to Maximum Endurance Charges": null,
"[Unique explicit] #% increased Intelligence for each Unique Item you have equipped": null,
"[Unique explicit] #% additional chance for Slain monsters to drop Scrolls of Wisdom": null,
"[Unique explicit] Socketed Gems have Elemental Equilibrium": null,
"[Unique explicit] Socketed Gems have #% reduced Elemental Equilibrium effect": null,
"[Unique explicit] -#% to all Elemental Resistances": null,
"[Unique explicit] +#% to Fire Resistance when Socketed with a Red Gem": null,
"[Unique explicit] +#% to Cold Resistance when Socketed with a Green Gem": null,
"[Unique explicit] +#% to Lightning Resistance when Socketed with a Blue Gem": null,
"[Unique explicit] All Sockets are White": null,
"[Unique explicit] #% of Cold Damage Converted to Fire Damage": null,
"[Unique explicit] Ignited Enemies you hit are destroyed on Kill": null,
"[Unique explicit] You can inflict an additional Ignite on an Enemy": null,
"[Unique explicit] Ignited Enemies Burn #% slower": null,
"[Unique explicit] #% increased Attack Speed while Ignited": null,
"[Unique explicit] #% increased Cast Speed while Ignited": null,
"[Unique explicit] +#% chance to be Ignited": null,
"[Unique explicit] Adds # to # Lightning Damage to Spells and Attacks": null,
"[Unique explicit] #% of Damage Leeched as Life against Shocked Enemies": null,
"[Unique explicit] #% of Damage Leeched as Mana against Frozen Enemies": null,
"[Unique explicit] +# to Armour while Frozen": null,
"[Unique explicit] When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy": null,
"[Unique explicit] When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy": null,
"[Unique explicit] #% of Lightning Damage Converted to Cold Damage": null,
"[Unique explicit] Your spells have #% chance to Shock against Frozen Enemies": null,
"[Unique explicit] Minions have #% increased Area of Effect of Area Skills": null,
"[Unique explicit] # Physical Damage taken on Minion Death": null,
"[Unique explicit] #% reduced Effect of Curses on You": null,
"[Unique explicit] # Life Regenerated per second per Level": null,
"[Unique explicit] #% chance to Avoid being Chilled": null,
"[Unique explicit] Adds # to # Cold Damage against Chilled Enemies": null,
"[Unique explicit] #% of Damage taken gained as Mana over 4 seconds when Hit": null,
"[Unique explicit] Temporal Chains has #% reduced Effect on You": null,
"[Unique explicit] #% reduced Effect of Chill on You": null,
"[Unique explicit] #% increased Movement Speed while Ignited": null,
"[Unique explicit] Trigger level # Consecrate when you deal a Critical Strike": null,
"[Unique explicit] Recover # Life when you Ignite an Enemy": null,
"[Unique explicit] #% increased Movement Speed when on Low Life": null,
"[Unique explicit] +#% Chaos Resistance when on Low Life": null,
"[Unique explicit] While on Low Life, Enemies are Unlucky when Damaging you": null,
"[Unique explicit] Right ring slot: You cannot Regenerate Mana": null,
"[Unique explicit] Right ring slot: #% of Energy Shield Regenerated per second": null,
"[Unique explicit] Right ring slot: +# to maximum Mana": null,
"[Unique explicit] Left ring slot: You cannot Recharge or Regenerate Energy Shield": null,
"[Unique explicit] Left ring slot: # Mana Regenerated per Second": null,
"[Unique explicit] Left ring slot: +# to maximum Energy Shield": null,
"[Unique explicit] #% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy": null,
"[Unique explicit] #% chance to gain a Frenzy Charge when you Stun an Enemy": null,
"[Unique explicit] Can't use other Rings": null,
"[Unique explicit] #% of maximum Life Regenerated per second per Endurance Charge": null,
"[Unique explicit] You can catch Corrupted Fish": null,
"[Unique explicit] #% increased Fish Bite Sensitivity": null,
"[Unique explicit] Socketed Gems Reserve No Mana": null,
"[Unique explicit] #% increased Mana Reserved": null,
"[Unique explicit] #% increased Damage with Hits against Shocked Enemies": null,
"[Unique explicit] -#% to Cold Resistance": null,
"[Unique explicit] Stun Threshold is based on Energy Shield instead of Life": null,
"[Unique explicit] #% increased Effect of Buffs granted by Socketed Golem Skills": null,
"[Unique explicit] Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield": null,
"[Unique explicit] +# to Level of Socketed Golem Gems": null,
"[Unique explicit] Socketed Golem Skills have #% increased Attack and Cast Speed": null,
"[Unique explicit] Gain Onslaught for # seconds when you Cast Socketed Golem Skill": null,
"[Unique explicit] Socketed Golem Skills have #% chance to Taunt on Hit": null,
"[Unique explicit] Socketed Golem Skills have #% Life Regenerated per second": null,
"[Unique explicit] #% reduced Rarity of Items found": null,
"[Unique explicit] Left ring slot: #% reduced Reflected Elemental Damage taken": null,
"[Unique explicit] Right ring slot: #% reduced Reflected Physical Damage taken": null,
"[Unique explicit] You gain Onslaught for # seconds on Kill": null,
"[Unique explicit] #% Chance to Trigger Level 18 Summon Spectral Wolf on Kill": null,
"[Unique explicit] Gain a Power Charge on non-Critical Strike": null,
"[Unique explicit] Lose all Power Charges on Critical Strike": null,
"[Unique explicit] +# to Maximum Life per Red Socket": null,
"[Unique explicit] +# to Maximum Energy Shield per Blue Socket": null,
"[Unique explicit] +# to Maximum Mana per Green Socket": null,
"[Unique explicit] #% increased Item Quantity per White Socket": null,
"[Unique explicit] Spells have an additional Projectile": null,
"[Unique explicit] Gain #% of Physical Damage as Extra Chaos Damage": null,
"[Unique explicit] #% increased Character Size": null,
"[Unique explicit] #% increased Dexterity": null,
"[Unique explicit] #% increased Global Defences": null,
"[Unique explicit] #% increased Attributes": null,
"[Unique explicit] #% increased Intelligence": null,
"[Unique explicit] #% reduced Movement Speed": null,
"[Unique explicit] #% increased Vaal Skill Critical Strike Chance": null,
"[Unique explicit] You can have one additional Curse": null,
"[Unique explicit] #% increased Damage per Curse on You": null,
"[Unique explicit] #% chance to gain an additional Vaal Soul on Kill": null,
"[Unique explicit] -# to Maximum Power Charges": null,
"[Unique explicit] -# to Maximum Frenzy Charges": null,
"[Unique explicit] #% increased Experience Gain for Corrupted Gems": null,
"[Unique explicit] With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead": null,
"[Unique explicit] -# to Maximum Endurance Charges": null,
"[Unique explicit] #% increased Mana Cost of Skills": null,
"[Unique explicit] With # Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield, and 50% of Physical Damage bypasses Energy Shield": null,
"[Unique explicit] #% reduced Quantity of Items found": null,
"[Unique explicit] #% chance to gain an additional Vaal Soul per Enemy Shattered": null,
"[Unique explicit] #% increased Damage taken while Energy Shield is Full": null,
"[Unique explicit] Removes #% of maximum Energy Shield on Kill": null,
"[Unique explicit] Removes #% of maximum Life on Kill": null,
"[Unique explicit] #% of maximum Mana gained on Kill": null,
"[Unique explicit] #% increased Vaal Skill Effect Duration": null,
"[Unique explicit] #% reduced Mana Cost of Totem Skills that cast an Aura": null,
"[Unique explicit] #% increased Attack Damage": null,
"[Unique explicit] #% increased effect of Flasks": null,
"[Unique explicit] #% increased effect of Non-Curse Auras you Cast": null,
"[Unique explicit] #% increased Effect of your Curses": null,
"[Unique explicit] #% increased Skill Effect Duration": null,
"[Unique explicit] Adds # to Maximum Life per 3 Intelligence Allocated in Radius": null,
"[Unique explicit] Minions have #% additional chance to Dodge Attacks": null,
"[Unique explicit] #% reduced Intelligence": null,
"[Unique explicit] Strength from Passives in Radius is Transformed to Intelligence": null,
"[Unique explicit] Intelligence from Passives in Radius is Transformed to Dexterity": null,
"[Unique explicit] Can have up to # additional Trap placed at a time": null,
"[Unique explicit] #% increased Spell Damage while no Mana is Reserved": null,
"[Unique explicit] Traps and Mines deal # to # additional Physical Damage": null,
"[Unique explicit] Traps and Mines have a #% chance to Poison on Hit": null,
"[Unique explicit] Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage": null,
"[Unique explicit] Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage": null,
"[Unique explicit] With at least 40 Dexterity in Radius, Shrapnel Shot's cone has a 50% chance to deal Double Damage": null,
"[Unique explicit] With at least 40 Dexterity in Radius, Shrapnel Shot has 25% increased Area of Effect": null,
"[Unique explicit] With at least 40 Intelligence in Radius, Summon Skeleton can summon up to 5 Skeleton Mages": null,
"[Unique explicit] Intelligence from Passives in Radius is Transformed to Strength": null,
"[Unique explicit] #% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius": null,
"[Unique explicit] Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value": null,
"[Unique explicit] Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield": null,
"[Unique explicit] Dexterity from Passives in Radius is Transformed to Intelligence": null,
"[Unique explicit] With at least 40 Dexterity in Radius, Melee Damage dealt by Frost Blades Penetrates 15% Cold Resistance": null,
"[Unique explicit] With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed": null,
"[Unique explicit] Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage": null,
"[Unique explicit] With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles": null,
"[Unique explicit] With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if you've Shattered an Enemy Recently": null,
"[Unique explicit] Strength from Passives in Radius is Transformed to Dexterity": null,
"[Unique explicit] Minions Recover #% of their Maximum Life when they Block": null,
"[Unique explicit] #% increased Damage taken": null,
"[Unique explicit] Summon # additional Skeleton Warriors with Summon Skeleton": null,
"[Unique explicit] +# second to Summon Skeleton Cooldown": null,
"[Unique explicit] With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second": null,
"[Unique explicit] With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles": null,
"[Unique explicit] Gain # Armour per Grand Spectrum": null,
"[Unique explicit] Gain # Mana per Grand Spectrum": null,
"[Unique explicit] #% increased Elemental Damage per Grand Spectrum": null,
"[Unique explicit] With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy": null,
"[Unique explicit] With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit": null,
"[Unique explicit] #% increased Trap Trigger Area of Effect": null,
"[Unique explicit] With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova": null,