-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathhelmet.lua
More file actions
1005 lines (1004 loc) · 31.5 KB
/
helmet.lua
File metadata and controls
1005 lines (1004 loc) · 31.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
-- Item data (c) Grinding Gear Games
return {
-- Helmet: Armour
[[
Abyssus
Ezomyte Burgonet
Variant: Pre 2.2.0
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 60, 138 Str
Adds 40 to 60 Physical Damage to Attacks
+(20-25) to all Attributes
{variant:1}+(100-150)% to Melee Critical Strike Multiplier
{variant:2}+(150-225)% to Melee Critical Strike Multiplier
{variant:3}+(100-125)% to Melee Critical Strike Multiplier
(100-120)% increased Armour
(40-50)% increased Physical Damage taken
]],[[
The Baron
Close Helmet
Requires Level 26, 58 Str
+2 to Level of Socketed Minion Gems
+(20–40) to Strength
Minions have 20% increased maximum Life
Half of your Strength is added to your Minions
+1 to maximum number of Raised Zombies per 300 Strength
With 1000 or more Strength 2% of Damage dealt by your Raised Zombies is Leeched to you as Life
]],[[
Ezomyte Peak
Iron Hat
Upgrade: Upgrades to unique{Ezomyte Hold} via prophecy{The Bloody Flowers Redux}
20% increased Physical Damage
+(15-25) to Armour
+(25-50) to maximum Life
Cannot Evade Enemy Attacks
]],[[
Ezomyte Hold
Iron Hat
Source: Upgraded from unique{Ezomyte Peak} using prophecy{The Bloody Flowers Redux}
20% increased Physical Damage
+(15-25) to Armour
+(25-50) to maximum Life
Cannot Evade Enemy Attacks
Cannot be Stunned
]],[[
The Formless Flame
Siege Helmet
League: Breach
Source: Drops in Xoph Breach or from unique{Xoph, Dark Embers}
Upgrade: Upgrades to unique{The Formless Inferno} using currency{Blessing of Xoph}
Requires Level 48, 101 Str
+(100-120) to Armour
+(40-50) to maximum Life
-20 Fire Damage taken when Hit
Armour is increased by Uncapped Fire Resistance
]],[[
The Formless Inferno
Royal Burgonet
League: Breach
Source: Upgraded from unique{The Formless Flame} using currency{Blessing of Xoph}
Requires Level 65, 148 Str
(80-120)% increased Armour
+(40-50) to maximum Life
-30% to Fire Resistance
8% of Physical Damage taken as Fire Damage
Armour is increased by Uncapped Fire Resistance
]],[[
Hrimnor's Resolve
Samite Helmet
Variant: Pre 2.0.0
Variant: Pre 2.6.0
Variant: Current
Requires Level 55, 114 Str
{variant:1}(10-30)% increased Fire Damage
{variant:2,3}(30-40)% increased Fire Damage
{variant:1}(40-60)% increased Armour
{variant:2,3}(100-120)% increased Armour
{variant:3}+(50-70) to maximum Life
+30% to Cold Resistance
{variant:1,2}50% chance to Avoid being Chilled
{variant:1,2}50% chance to Avoid being Frozen
{variant:1,2}10% increased Stun and Block Recovery
{variant:3}Cannot be Frozen or Chilled if you've used a Fire Skill Recently
]],
-- Helmet: Evasion
[[
Alpha's Howl
Sinner Tricorne
Requires Level 64, 138 Dex
+2 to Level of Socketed Aura Gems
(80-100)% increased Evasion Rating
+(20-30)% to Cold Resistance
25% chance to Avoid being Chilled
Cannot be Frozen
8% reduced Mana Reserved
]],[[
Fairgraves' Tricorne
Tricorne
Requires Level 12, 27 Dex
Adds 6 to 12 Cold Damage to Attacks
70% increased Evasion Rating
+(15-30) to maximum Mana
+(20-30)% to Lightning Resistance
Cannot be Shocked
15% increased Stun Recovery
]],[[
Goldrim
Leather Cap
+(30-50) to Evasion Rating
10% increased Rarity of Items found
+(30-40)% to all Elemental Resistances
Reflects 4 Physical Damage to Melee Attackers
]],[[
Heatshiver
Leather Hood
Upgrade: Upgrades to unique{Frostferno} via prophecy{A Vision of Ice and Fire}
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 20, 46 Dex
{variant:1}+1 to Level of Socketed Fire Gems
{variant:1}+1 to Level of Socketed Cold Gems
{variant:2}(20–30)% increased Cold Damage if you have used a Fire Skill Recently
{variant:2}(20–30)% increased Fire Damage if you have used a Cold Skill Recently
(80-100)% increased Evasion Rating
60% increased Mana Regeneration Rate
{variant:1}−(20-10)% to Fire Resistance
{variant:2}+(20-30)% to Fire Resistance
{variant:1}−(20-10)% to Cold Resistance
{variant:2}+(20-30)% to Cold Resistance
]],[[
Frostferno
Leather Hood
Source: Upgraded from unique{Heatshiver} via prophecy{A Vision of Ice and Fire}
Requires Level 60
+2 to Level of Socketed Fire Gems
+2 to Level of Socketed Cold Gems
Socketed Gems are Supported by Level 30 Cold to Fire
(450–500)% increased Evasion Rating
60% increased Mana Regeneration Rate
+(20–30)% to Fire and Cold Resistances
]],[[
Obscurantis
Lion Pelt
Source: Drops from unique{Guardian of the Chimera}
Variant: {2_6}Pre 3.5.0
Variant: Current
Requires Level 70, 150 Dex
{variant:1}+(300-500) to Accuracy Rating
{variant:2}+(800-1000) to Accuracy Rating
(100-120)% increased Evasion Rating
+(50-80) to maximum Life
1% increased Projectile Attack Damage per 200 Accuracy Rating
]],[[
Rat's Nest
Ursine Pelt
Requires Level 55, 114 Dex
15% increased Attack Speed
(60-75)% increased Global Critical Strike Chance
150% increased Evasion Rating
(20-25)% increased Rarity of Items found
10% increased Movement Speed
10% reduced Character Size
]],[[
Saqawal's Flock
Silken Hood
League: Bestiary
Source: Drops from unique{Saqawal, First of the Sky}
Requires Level 60
25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight
(60–80)% increased Evasion Rating
+(40–60) to maximum Life
+(30–40)% to Lightning Resistance
(10–15)% increased Movement Speed
]],[[
Starkonja's Head
Silken Hood
Variant: Pre 2.6.0
Variant: Current
Requires Level 60, 138 Dex
50% reduced Damage when on Low Life
{variant:2}(100-130)% increased Evasion Rating
{variant:1}+(30-50) to Dexterity
{variant:2}+(50-70) to Dexterity
10% increased Attack Speed
25% increased Global Critical Strike Chance
+(80-100) to maximum Life
{variant:1}50% increased Global Evasion Rating when on Low Life
{variant:2}150% increased Global Evasion Rating when on Low Life
]],
-- Helmet: Energy Shield
[[
Asenath's Mark
Iron Circlet
Upgrade: Upgrades to unique{Asenath's Chant} via prophecy{Song of the Sekhema}
Variant: Pre 2.6.0
Variant: Current
Requires Level 8, 23 Int
(10-15)% increased Attack Speed
(10-15)% increased Cast Speed
30% increased Mana Regeneration Rate
{variant:1}50% increased Energy Shield
{variant:2}+(30-50) to maximum Energy Shield
5% increased Movement Speed
(10-15)% increased Stun Recovery
]],[[
Asenath's Chant
Iron Circlet
Source: Upgraded from unique{Asenath's Mark} via prophecy{Song of the Sekhema}
Requires Level 45
Implicits: 0
25% chance to Trigger a Socketed Spell when you Attack with a Bow
(10–15)% increased Attack Speed
(10–15)% increased Cast Speed
+(100–120) to maximum Energy Shield
(30–40)% increased Stun and Block Recovery
30% increased Mana Regeneration Rate
5% increased Movement Speed
]],[[
Chitus' Apex
Necromancer Circlet
Requires Level 54, 112 Int
+(20-30) to Strength
+(20-30) to maximum Mana
+10% to all Elemental Resistances
5% increased Experience gain
(10-20)% increased Elemental Damage
]],[[
Crown of Eyes
Hubris Circlet
Variant: {2_6}Pre 3.5.0
Variant: Pre 3.7.0
Variant: Current
Requires Level 69, 154 Int
{variant:1,2}+(200-250) to Accuracy Rating
{variant:3}+(300-350) to Accuracy Rating
(120-150)% increased Energy Shield
−30% to Fire Resistance
{variant:1}(0.4-0.8)% of Physical Attack Damage Leeched as Life
{variant:2,3}(0.4-0.8)% of Attack Damage Leeched as Life
{variant:1}(0.2-0.4)% of Physical Attack Damage Leeched as Mana
{variant:2,3}(0.2-0.4)% of Attack Damage Leeched as Mana
Increases and Reductions to Spell Damage also apply to Attacks
]],[[
Crown of Thorns
Vine Circlet
Upgrade: Upgrades to unique{Martyr's Crown} via prophecy{Pleasure and Pain}
Variant: Pre 1.2.0
Variant: Current
{variant:1}+(12-24) to maximum Energy Shield
{variant:2}+(60-80) to maximum Energy Shield
Reflects 5 Physical Damage to Melee Attackers
Take 5 Physical Damage when hit by Attacks
Pain Attunement
]],[[
Martyr's Crown
Vine Circlet
Source: Upgraded from unique{Crown of Thorns} using prophecy{Pleasure and Pain}
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 52
{variant:1}+(260-300) to maximum Energy Shield
{variant:2}+(170–210) to maximum Energy Shield
Reflects 5 Physical Damage to Melee Attackers
Take 5 Physical Damage when hit by Attacks
Pain Attunement
]],[[
The Devouring Diadem
Necromancer Circlet
League: Betrayal
Source: Drops from unique{Catarina, Master of Undeath}
Requires Level 54, 112 Int
Variant: Strength and Quality
Variant: Dexterity and Quality
Variant: Intelligence and Quality
Variant: Fire and Chaos Resistances
Variant: Cold and Chaos Resistances
Variant: Lightning and Chaos Resistances
Variant: Strength and Dexterity
Variant: Dexterity and Intelligence
Variant: Strength and Intelligence
Variant: Mine Laying Speed
Variant: Focus Spell Trigger
Variant: Focus Ailment Duration
+1 to Level of Socketed Gems
Socketed Gems have 20% reduced Mana Reservation
Trigger Level 15 Feast of Flesh every 5 seconds
(180-220)% increased Energy Shield
10% chance for Energy Shield Recharge to start when you use a Skill
Eldritch Battery
{variant:1}{crafted}+(10-25) to Strength
{variant:2}{crafted}+(10-25) to Dexterity
{variant:3}{crafted}+(10-25) to Intelligence
{variant:1,2,3}{crafted}+(7-18) to Quality
{variant:4}{crafted}+(8-15)% to Fire and Chaos Resistances
{variant:5}{crafted}+(8-15)% to Cold and Chaos Resistances
{variant:6}{crafted}+(8-15)% to Lightning and Chaos Resistances
{variant:7}{crafted}+(6-17) to Strength and Dexterity
{variant:8}{crafted}+(6-17) to Dexterity and Intelligence
{variant:9}{crafted}+(6-17) to Strength and Intelligence
{variant:10}{crafted}(7-12)% increased Mine Laying Speed
{variant:11}{crafted}Trigger Socketed Spells when you Focus
{variant:12}{crafted}(81-140)% increased Duration of Ailments you inflict while Focussed
]],[[
Doedre's Scorn
Lunaris Circlet
Variant: Pre 2.6.0
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 39, 83 Int
{variant:1}+1 to Level of Socketed Curse Gems
{variant:2,3}+2 to Level of Socketed Curse Gems
{variant:2,3}+(100-120) to maximum Energy Shield
+(20-30) to Intelligence
(30-50)% increased Curse Duration
20% increased Elemental Damage
{variant:1,2}(10-20)% increased Damage per Curse on Enemy
{variant:3}(10–20)% increased Damage with Hits and Ailments per Curse on Enemy
]],[[
Eber's Unification
Hubris Circlet
Source: Drops from The Pale Council
Requires Level 69, 154 Int
Implicits: 0
Trigger level 10 Void Gaze when you use a Skill
+(50-80) to maximum Mana
(120-150)% increased Energy Shield
50% increased Stun and Block Recovery
Gain (5-8)% of Elemental Damage as Extra Chaos Damage
]],[[
Fenumus' Toxins
Necromancer Circlet
League: Bestiary
Source: Drops from unique{Fenumus, First of the Night}
Requires Level 54
Adds (16–21) to (31–36) Chaos Damage to Spells
(220–250)% increased Energy Shield
10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web
(6–10)% chance to Poison per Power Charge
(15–20)% increased Damage with Poison per Power Charge
Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead
]],[[
Flamesight
Solaris Circlet
Requires Level 59, 122 Int
(240–280)% increased Energy Shield
+(30–40)% to Fire Resistance
(30–40)% increased Elemental Damage
25% chance to Scorch Enemies
Cannot inflict Ignite
10% increased Elemental Damage per Sextant affecting the area
]],[[
Galesight
Solaris Circlet
Requires Level 59, 122 Int
(240–280)% increased Energy Shield
+(30–40)% to Cold Resistance
(30–40)% increased Elemental Damage
25% chance to inflict Brittle
Cannot inflict Freeze or Chill
10% increased Elemental Damage per Sextant affecting the area
]],[[
Hale Negator
Mind Cage
League: Delve
Source: Drops from unique{Kurgal, the Blackblooded}
Variant: One Abyssal Socket
Variant: Two Abyssal Sockets
Requires Level 65
{variant:1}Has 1 Abyssal Socket
{variant:2}Has 2 Abyssal Sockets
(6–8)% increased maximum Life
+1 to Maximum Spirit Charges per Abyss Jewel affecting you
Gain a Spirit Charge every second
You lose all Spirit Charges when taking a Savage Hit
Recover (2–3)% of Life when you lose a Spirit Charge
Recover (2–3)% of Energy Shield when you lose a Spirit Charge
]],[[
Indigon
Hubris Circlet
Source: Drops from unique{The Elder} (Uber)
Variant: Pre 3.5.0
Variant: Current
Requires Level 69
(150–180)% increased Energy Shield
(6–10)% increased maximum Mana
Recover (8–10)% of maximum Life when you use a Mana Flask
Non-instant Mana recovery from Flasks is also recovered as Life
(50–60)% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently
{variant:1}(50–60)% increased Spell Damage for each 200 total Mana you have Spent Recently
{variant:2}(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%
Shaper Item
]],[[
Mark of the Red Covenant
Tribal Circlet
Requires Level 26
+(30–50) to maximum Energy Shield
Minions have (10–15)% increased Movement Speed
Raging Spirits have (130–150)% increased Damage
75% reduced Maximum number of Summoned Raging Spirits
Raging Spirits' Hits always Ignite
Raging Spirits refresh their Duration when they Kill an Ignited Enemy
]],[[
Maw of Conquest
Steel Circlet
League: Legion
Source: Drops from normal{Vaal} legion
Requires Level 48, 101 Int
(60-80)% increased Critical Strike Chance for Spells
(200-250)% increased Energy Shield
+(50-70) to maximum Life
Unaffected by Poison
(10-20)% of Damage taken gained a Life over 4 seconds when Hit
]],[[
Rime Gaze
Mind Cage
Variant: Pre 2.6.0
Variant: {2_6}Pre 3.5.0
Variant: Current
Requires Level 65, 138 Int
{variant:1}Socketed Gems are Supported by level 15 Concentrated Effect
{variant:2,3}Socketed Gems are Supported by level 20 Concentrated Effect
30% increased Cold Damage
+(40-60) to maximum Mana
{variant:1}(100-120)% increased Energy Shield
{variant:2,3}(180-200)% increased Energy Shield
{variant:1}50% slower start of Energy Shield Recharge
{variant:2,3}50% reduced Energy Shield Recharge Rate
{variant:3}+(16-22)% to Cold Damage over Time Multiplier
]],[[
Scold's Bridle
Mind Cage
League: Torment
Requires Level 65, 138 Int
(80-100)% increased Spell Damage
15% reduced Cast Speed
+(30-60) to maximum Mana
Your Skills deal you 400% of Mana Cost as Physical Damage
]],[[
Thundersight
Solaris Circlet
Requires Level 59, 122 Int
(240–280)% increased Energy Shield
+(30–40)% to Lightning Resistance
(30–40)% increased Elemental Damage
25% chance to Sap Enemies
Cannot inflict Shock
10% increased Elemental Damage per Sextant affecting the area
]],[[
Wraithlord
Bone Circlet
Requires Level: 34
+2 to Level of Socketed Minion Gems
(120–150)% increased Energy Shield
Minions Regenerate 1% Life per second
+1000 to Spectre maximum Life
]],[[
Wreath of Phrecia
Iron Circlet
League: Legion
Source: Drops from normal{Eternal} legion
Requires Level 8
Has no Attribute Requirements
Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value
Increases and Reductions to Light Radius also apply to Damage
(15-25)% increased Light Radius
Deal no Chaos Damage
]],[[
Ylfeban's Trickery
Hubris Circlet
League: Tempest
Variant: Pre 2.6.0
Variant: Current
Requires Level 69, 154 Int
{variant:2}Trigger Level 10 Shock Ground when Hit
Adds 1 to (60-80) Lightning Damage to Spells and Attacks
(130-170)% increased Energy Shield
+(25-35)% to Lightning Resistance
{variant:1}10% chance to Curse Enemies with a random Curse on Hit
{variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit
{variant:1}5% chance to create Shocked Ground when Hit
]],
-- Helmet: Armour/Evasion
[[
Black Sun Crest
Lacquered Helmet
Requires Level 51, 57 Str, 57 Dex
+1 to Level of Socketed Gems
(100-150)% increased Armour
40% reduced Light Radius
(5-15)% increased Dexterity
(5-15)% increased Strength
(5-15)% increased Intelligence
]],[[
The Bringer of Rain
Nightmare Bascinet
Variant: Pre 1.1.0
Variant: Pre 1.3.0
Variant: {2_6}Pre 3.5.0
Variant: Current
Requires Level 67, 62 Str, 85 Dex
Socketed Gems are Supported by level 18 Melee Physical Damage
{variant:1,4}Socketed Gems are Supported by level 18 Faster Attacks
{variant:2,3}Socketed Gems are Supported by level 12 Faster Attacks
{variant:1,4}Socketed Gems are Supported by level 18 Blind
{variant:2,3}Socketed Gems are Supported by level 6 Blind
Adds 20 to 30 Physical Damage to Attacks
(200-300)% increased Armour and Evasion
{variant:1,4}+(200-220) to maximum Life
{variant:2,3}+(120-160) to maximum Life
{variant:1,2}10% chance to gain an Endurance Charge when you Block
{variant:3,4}20% chance to gain an Endurance Charge when you Block
Extra gore
Can't use Chest armour
{variant:1,2}15% Chance to Block
{variant:3}6% Chance to Block
]],[[
Deidbell
Gilded Sallet
Upgrade: Upgrades to unique{Deidbellow} via prophecy{Dying Cry}
Variant: Pre 2.6.0
Variant: Current
Requires Level 33, 38 Str, 38 Dex
+(20-30) to Strength
+(20-30) to Dexterity
+(200-300) to Armour
{variant:2}Adds 10-20 Physical Damage to Attacks
20% increased Melee Damage
Cannot Leech when on Low Life
]],[[
Deidbellow
Gilded Sallet
Source: Upgraded from unique{Deidbell} using prophecy{Dying Cry}
Variant: Pre 2.6.0
Variant: Current
Requires Level 33, 38 Str, 38 Dex
+(20-30) to Strength
+(20-30) to Dexterity
+(200-300) to Armour
{variant:2}Adds 10-20 Physical Damage to Attacks
20% increased Melee Damage
Cannot Leech when on Low Life
You and nearby allies have 20% increased Attack, Cast and Movement
Speed if you've used a Warcry Recently
]],[[
Devoto's Devotion
Nightmare Bascinet
Requires Level 67, 62 Str, 85 Dex
10% reduced Physical Damage
+(50-65) to Dexterity
16% increased Attack Speed
(150-200)% increased Armour and Evasion
+(15-25)% to Chaos Resistance
20% increased Movement Speed
Mercury Footprints
]],[[
The Peregrine
Visored Sallet
Variant: Pre 2.6.0
Variant: Pre 3.7.0
Variant: Current
Requires Level 23, 28 Str, 28 Dex
{variant:1}+100 to Accuracy Rating
{variant:2}+300 to Accuracy Rating
{variant:3}+500 to Accuracy Rating
(40-60)% increased Armour and Evasion
(20-30)% increased Rarity of Items found
+30% to Lightning Resistance
{variant:1}0.2% of Physical Attack Damage Leeched as Mana
{variant:2,3}0.4% of Attack Damage Leeched as Mana
10% increased Movement Speed
]],[[
Skullhead
Secutor Helm
Variant: Pre 2.6.0
Variant: Current
Requires Level 36, 42 Str, 42 Dex
(60-80)% increased Armour and Evasion
+(50-70) to maximum Life
+(50-70) to maximum Mana
{variant:2}+(10-20)% to all Elemental Resistances
Minions have 10% Chance to Block
Minions have +(300-350) to Armour
Minions Regenerate 2% Life per Second
]],
-- Helmet: Armour/Energy Shield
[[
Ahn's Contempt
Praetor Crown
Requires Level 68
+(15–20) to all Attributes
(60–140)% increased Armour and Energy Shield
+(60–70) to maximum Life
-1 to Maximum Power Charges
Gain (8–12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges
You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges
]],[[
The Brine Crown
Prophet Crown
Variant: Pre 3.5.0
Variant: Current
Requires Level 63, 85 Str, 62 Int
{variant:1}(100-120)% increased Armour and Energy Shield
{variant:2}(240-300)% increased Armour and Energy Shield
{variant:1}+(50-70) to maximum Life
{variant:2}+(80-100) to maximum Life
+(30-50)% to Cold Resistance
Cannot be Frozen
{variant:1}+800 Armour while stationary
{variant:2}+1500 Armour while stationary
{variant:2}5% reduced Cold Damage taken
60% increased Mana Regeneration Rate while stationary
15% chance to create Chilled Ground when Hit with an Attack
]],[[
The Broken Crown
Prophet Crown
Variant: Pre 2.6.0
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 63, 85 Str, 62 Int
Socketed Gems are supported by level 20 Cast on Death
20% increased Damage when on Low Life
+(10-15) to all Attributes
(60-100)% increased Armour and Energy Shield
20% reduced Mana Regeneration Rate
{variant:1}+(20-30) to maximum Energy Shield
{variant:2}+(70-90) to maximum Energy Shield
{variant:3}+(50–70) to maximum Energy Shield
+(43-61)% to Chaos Resistance
]],[[
Craiceann's Chitin
Magistrate Crown
Variant: Pre 3.4.0
Variant: Current
League: Bestiary
Source: Drops from unique{Craiceann, First of the Deep}
Requires Level 58
{variant:1}+(7-9)% chance to Block Spell Damage
{variant:2}+(4-6)% chance to Block Spell Damage
(140–180)% increased Armour and Energy Shield
(4–7)% increased maximum Life
Cannot lose Crab Barriers if you have lost Crab Barriers Recently
3% additional Chance to Block while you have at least 5 Crab Barriers
5% additional Chance to Block while you have at least 10 Crab Barriers
]],[[
Crown of the Tyrant
Magistrate Crown
League: Delve
Source: Drops from unique{Aul, the Crystal King}
Requires Level 58
Has 1 Socket
+(50–100) to maximum Life
Nearby Enemies have -10% to all Resistances
You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket
You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket
You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket
You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket
]],[[
Geofri's Crest
Great Crown
Upgrade: Upgrades to unique{Geofri's Legacy} via prophecy{The Bishop's Legacy}
Requires Level 53, 59 Str, 59 Int
+1 to Level of Socketed Gems
(60-80)% increased Armour and Energy Shield
+(15-20)% to Fire Resistance
+(15-20)% to Cold Resistance
+(15-20)% to Lightning Resistance
+(20-30)% to Chaos Resistance
]],[[
Geofri's Legacy
Great Crown
Source: Upgraded from unique{Geofri's Crest} via prophecy{The Bishop's Legacy}
Requires Level 62
+1 to Level of Socketed Gems
(60–80)% increased Armour and Energy Shield
+(15–20)% to Fire Resistance
+(15–20)% to Cold Resistance
+(15–20)% to Lightning Resistance
+(20–30)% to Chaos Resistance
+1 to maximum number of Summoned Holy Relics
Summoned Holy Relics have (20–25)% reduced Cooldown Recovery Speed
]],[[
Honourhome
Soldier Helmet
League: Legion
Source: Drops from normal{Eternal} legion
Variant: Pre 3.7.0
Variant: Current
Requires Level 12, 16 Str, 16 Int
{variant:2}+(1-2) to Level of Socketed Gems
{variant:1}Adds 1 to 13 Lightning Damage to Attacks
{variant:2}Adds 1 to 13 Lightning Damage to Spells and Attacks
{variant:1}(40-50)% increased Armour and Energy Shield
{variant:2}(100-150)% increased Armour and Energy Shield
{variant:1}+(10-20)% to all Elemental Resistances
{variant:1}+20% to all Elemental Resistances while on Low Life
{variant:1}20% reduced Mana Cost of Skills when on Low Life
{variant:2}(10-20)% increased Rarity of Items found
{variant:2}(10-20)% reduced Mana Cost of Skills
]],[[
Kitava's Thirst
Zealot Helmet
Requires Level 44, 50 Str, 50 Int
15% reduced Cast Speed
(70-80)% increased Armour and Energy Shield
+(30-50) to maximum Mana
30% chance to Cast Socketed Spells when
you Spend at least 100 Mana to Use a Skill
]],[[
Lightpoacher
Great Crown
League: Abyss
Source: Drops from Abyssal Liches
Variant: One Abyssal Socket
Variant: Two Abyssal Sockets
{variant:1}Has 1 Abyssal Socket
{variant:2}Has 2 Abyssal Sockets
Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge
+(10–15)% to all Elemental Resistances
Recover (4–5)% of Life when a Spirit Charge expires or is consumed
(15–20)% chance to gain a Spirit Charge on Kill
+1 to Maximum Spirit Charges per Abyss Jewel affecting you
]],[[
Malachai's Vision
Praetor Crown
Source: Use currency{Vaal Orb} on unique{Voll's Vision}
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 68, 62 Str, 91 Int
Adds (13-17) to (29-37) Chaos Damage
{variant:1}+(200-250) to maximum Energy Shield
{variant:2}+(150–200) to maximum Energy Shield
+(32-40)% to Cold Resistance
+(15-20)% to Lightning Resistance
Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted
Regenerate 35 Mana per second if all Equipped Items are Corrupted
Corrupted
]],[[
Mask of the Spirit Drinker
Crusader Helmet
League: Incursion
Upgrade: Upgrades to unique{Mask of the Stitched Demon} via currency{Vial of Summoning}
Requires Level 31
(60-80)% increased Armour and Energy Shield
+(30-50) to maximum Life
Your Energy Shield starts at zero
Cannot gain Energy Shield
50 Life Regenerated per second if you have at least 500 Maximum Energy Shield
100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield
150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield
]],[[
Mask of the Stitched Demon
Magistrate Crown
League: Incursion
Source: Upgraded from unique{Mask of the Spirit Drinker} via currency{Vial of Summoning}
Requires Level 58
+(40-50) to Intelligence
+(160-180) to maximum Energy Shield
Strength provides no bonus to Maximum Life
Intelligence provides no bonus to Maximum Mana
+1 to Maximum Life per 2 Intelligence
Your Energy Shield starts at zero
Cannot gain Energy Shield
1% of Life Regenerated per second per 500 Maximum Energy Shield
]],[[
Mask of the Tribunal
Magistrate Crown
Fractured Item
League: Synthesis
Requires Level 58, 64 Str, 64 Int
{fractured}+(25-30) to all Attributes
(150-200)% increased Armour and Energy Shield
Nearby Allies have (4-6)% increased Defences per 100 Strength you have
Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have
Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have
1% reduced Mana Reserved per 250 total attributes
]],[[
Memory Vault
Praetor Crown
Source: Drops from unique{The Enslaver}
Requires Level 68
+(130–160) to maximum Energy Shield
+(150–200) to maximum Mana
(30–40)% increased Mana Regeneration Rate
+(20–25)% to Fire Resistance
10% increased Mana Reserved
Gain Armour equal to your Reserved Mana
]],[[
Mindspiral
Aventail Helmet
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 37, 42 Str, 42 Int
(10-15)% increased Cold Damage
(10-15)% increased Lightning Damage
{variant:1}+(100-150) to maximum Mana
{variant:2}+(100-120) to maximum Mana
{variant:2}Gain (5-10)% of Maximum Mana as Extra Maximum Energy Shield
Enemies Cannot Leech Mana From You
(5-10)% of Damage taken Gained as Mana over 4 seconds when Hit
Cannot Leech Mana
]],[[
Speaker's Wreath
Prophet Crown
Quality: +20%
Armour: 268
Energy Shield: 36
Requires Level 63, 85 Str, 62 Int
+(20-40) to Dexterity
(10-15)% increased Skill Effect Duration
2% increased Minion Attack Speed per 50 Dexterity
2% increased Minion Movement Speed per 50 Dexterity
Minions' Hits can only Kill Ignited Enemies
]],[[
Veil of the Night
Great Helmet
Requires Level 22, 27 Str, 27 Int
(20-22)% increased Stun Recovery
40% reduced Light Radius
Reflects 1 to (180-220) Lightning Damage to Attackers on Block
(18-22)% increased Global Defences
Elemental Resistances are Zero
]],[[
Voll's Vision
Praetor Crown
Requires Level 68, 62 Str, 91 Int
+(260-300) to Armour
+(26-32)% to Fire Resistance
+(8-16)% to Chaos Resistance
20% increased Light Radius
(8-12)% increased maximum Life if no Equipped Items are Corrupted
Regenerate 100 Life per second if no Equipped Items are Corrupted
]],
-- Helmet: Evasion/Energy Shield
[[
Crown of the Pale King
Regicide Mask
League: Tempest
Variant: Pre 2.6.0
Variant: Current
Requires Level 52, 58 Dex, 58 Int
{variant:2}+(60-80) to maximum Life
(150-200)% increased Evasion and Energy Shield
(0.4-0.8)% of Physical Attack Damage Leeched as Life
Reflects 100 to 150 Physical Damage to Melee Attackers
30% of Damage you Reflect to enemies is gained as Life
]],[[
Curtain Call
Plague Mask
Requires Level 20
+23 to maximum Life
(10–15)% reduced Mine Laying Speed
(40–50)% increased Mine Arming Speed
Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity
Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence
]],[[
Farrul's Bite
Harlequin Mask
League: Bestiary
Source: Drops from unique{Farrul, First of the Plains}
Requires Level 57
Grants Level 20 Aspect of the Cat Skill
(180–220)% increased Evasion and Energy Shield
+(25–35)% to Cold Resistance
+1% to Critical Strike Chance while affected by Aspect of the Cat
Critical Strikes have (10–20)% chance to Blind Enemies while you have Cat's Stealth
(40–50)% increased Damage with Hits and Ailments against Blinded Enemies
]],[[
Fractal Thoughts
Vaal Mask
Requires Level 62
(140–180)% increased Evasion and Energy Shield
+(25–40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence
15% increased Dexterity if Strength is higher than Intelligence
1% increased Elemental Damage per 10 Dexterity
+2 to Maximum Life per 10 Intelligence
]],[[
Gorgon's Gaze
Regicide Mask
Requires Level 52
Implicits: 0
Grants Level 20 Summon Petrification Statue Skill
(200–250)% increased Energy Shield
+(60–80) to maximum Life
(5–10)% increased Attack and Cast Speed
5% additional Physical Damage Reduction while moving
5% reduced Elemental Damage taken while stationary
]],[[
The Gull
Raven Mask
League: Domination
Variant: Pre 2.6.0
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 38, 44 Dex, 44 Int
{variant:2,3}Trigger level 1 Create Lesser Shrine when you Kill an Enemy
(120-150)% increased Evasion and Energy Shield
{variant:2}+(40-65) to maximum Energy Shield
{variant:3}+(30–45) to maximum Energy Shield
{variant:1}+(30-40) to maximum Mana
{variant:2,3}+(60-80) to maximum Life
{variant:2,3}+(30-40)% to Cold Resistance
{variant:1}+(15-20) Life gained on Kill
{variant:1}+(10-15) Energy Shield gained on Kill
75% increased Effect of Shrine Buffs on you
50% increased Duration of Shrine Effects on you
]],[[
Heretic's Veil
Deicide Mask
Variant: Pre 2.6.0
Variant: {2_6}Pre 3.0.0
Variant: Current
Requires Level 67, 73 Dex, 88 Int
+(40-50) to maximum Energy Shield
{variant:1,2}(130-150)% increased Evasion and Energy Shield
{variant:3}(90–110)% increased Evasion and Energy Shield
{variant:1}+2 to Level of Socketed Curse Gems
{variant:2,3}+1 to Level of Socketed Curse Gems
Socketed Curse Gems are Supported by Level 22 Blasphemy
Socketed Curse Gems have 12% reduced Mana Reservation
]],[[
Leer Cast
Festival Mask
Requires Level 28, 33 Dex, 33 Int
30% reduced Damage
+(20-30) to Dexterity
+(20-30) to maximum Life
+(20-30) to maximum Mana
You and nearby allies gain 15% increased Damage
]],[[
Malachai's Simula
Iron Mask
Upgrade: Upgrades to unique{Malachai's Awakening} via prophecy{The Nightmare Awakens}
Variant: Pre 1.0.0
Variant: Pre 2.0.0
Variant: Pre 3.7.0
Variant: Current
Requires Level 17, 21 Dex, 21 Int
(15-30)% increased Spell Damage
+20 to Strength
(20-30)% increased Lightning Damage
+10% to Lightning Resistance
{variant:1}100% increased Mana Cost of Skills
{variant:2}20% increased Mana Cost of Skills
Blood Magic
{variant:4}Mortal Conviction
]],[[
Malachai's Awakening
Iron Mask
Source: Upgraded from unique{Malachai's Simula} via prophecy{The Nightmare Awakens}
Variant: Pre 3.7.0
Variant: Current
Requires Level 60
(15–30)% increased Spell Damage
+20 to Strength
+10% to all Elemental Resistances
Adds (42–54) to (78–88) Cold Damage to Spells while no Life is Reserved
Adds (54–64) to (96–107) Fire Damage to Spells while no Life is Reserved
Adds (5–14) to (160–173) Lightning Damage to Spells while no Life is Reserved
Blood Magic
{variant:2}Mortal Conviction
]],[[
Mind of the Council
Harlequin Mask
Source: prophecy{Unbearable Whispers V}
Requires Level 57, 64 Dex, 64 Int
(230-260)% increased Evasion and Energy Shield
(20-30)% increased maximum Mana
10% chance to Shock
+20% chance to be Shocked
30% of Lightning Damage is taken from Mana before Life when Hit
Recover 3% of Maximum Mana when you Shock an Enemy
]],[[
The Tempest's Binding
Callous Mask
League: Harbinger
Requires Level 45, 51 Dex, 51 Int
Socketed Gems are Supported by Level 18 Ice Bite
Socketed Gems are Supported by Level 18 Innervate
Grants Summon Harbinger of Storms Skill
+(100-150) to Evasion Rating
+(60-80) to maximum Life
+(40-60) to maximum Energy Shield
+(10-15)% to all Elemental Resistances
]],[[
The Three Dragons
Golden Mask
Requires Level 35, 40 Dex, 40 Int
+(26-30)% to all Elemental Resistances
Your Fire Damage can Shock but not Ignite
Your Cold Damage can Ignite but not Freeze or Chill
Your Lightning Damage can Freeze but not Shock
]],[[
The Vertex
Vaal Mask
Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss}
Requires Level 62, 79 Dex, 72 Int
+1 to Level of Socketed Gems
(245-280)% increased Evasion and Energy Shield
+(30-40) to maximum Energy Shield