forked from NeverSinkDev/NeverSink-Filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeverSink's filter - 0-SOFT.filter
7415 lines (6628 loc) · 295 KB
/
NeverSink's filter - 0-SOFT.filter
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
#===============================================================================================================
# NeverSink's Indepth Loot Filter - for Path of Exile
#===============================================================================================================
# VERSION: 8.1.0
# TYPE: 0-SOFT
# STYLE: DEFAULT
# AUTHOR: NeverSink
# BUILDNOTES: Filter generated with NeverSink's FilterpolishZ and the domainlanguage Exo.
#
#------------------------------------
# LINKS TO LATEST VERSION AND FILTER EDITOR
#------------------------------------
#
# EDIT/CUSTOMIZE FILTER ON: https://www.FilterBlade.xyz
# GET THE LATEST VERSION ON: https://www.FilterBlade.xyz or https://github.com/NeverSinkDev/NeverSink-Filter
# POE FORUM THREAD: https://goo.gl/oQn4EN
#
#------------------------------------
# SUPPORT THE DEVELOPMENT:
#------------------------------------
#
# SUPPORT ME ON PATREON: https://www.patreon.com/Neversink
# SUPPORT THE FILTERBLADE TEAM: https://www.filterblade.xyz/About
#
#------------------------------------
# INSTALLATION / UPDATE :
#------------------------------------
#
# 0) It's recommended to check for updates once a month or at least before new leagues, to receive economy finetuning and new features!
# 1) Paste this file into the following folder: %userprofile%/Documents/My Games/Path of Exile
# 2) INGAME: Escape -> Options -> UI -> Scroll down -> Select the filter from the Dropdown box
#
#------------------------------------
# CONTACT - if you want to get notifications about updates or just get in touch:
#------------------------------------
# PLEASE READ THE FAQ ON https://goo.gl/oQn4EN BEFORE ASKING QUESTIONS
#
# TWITTER: @NeverSinkGaming
# TWITCH: https://www.twitch.tv/neversink
# DISCORD: https://discord.gg/mye6xhF
# GITHUB: NeverSinkDev
#===============================================================================================================
# [WELCOME] TABLE OF CONTENTS + QUICKJUMP TABLE
#===============================================================================================================
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
# [[0100]] Global overriding rules
# [[0200]] High tier influenced items
# [0201] Influenced Maps
# [0202] Crusader
# [0203] Warlord
# [0204] Redeemer
# [0205] Hunter
# [0206] Shaper
# [0207] Elder
# [0208] Remaining
# [[0300]] Exotic Bases
# [[0400]] IDENTIFIED MOD FILTERING
# [0401] Physical
# [0402] Elemental
# [0403] Gembased
# [0404] Caster and Spellslinger
# [0405] Boots
# [0406] Gloves
# [0407] Helmets
# [0408] Amulets
# [0409] Rings
# [0410] Quivers
# [0411] Belts
# [0412] Shields
# [0413] Jewels
# [0414] Misc
# [[0500]] Exotic Mods Filtering
# [0501] Veiled/Betrayal
# [0502] Incursion/Temple Mods
# [0503] Bestiary
# [0504] Other
# [[0600]] Exotic Item Classes
# [0601] Trinkets
# [0602] Magic Watchstones
# [0603] Secret Society Equipment
# [0604] Craftable Invitations
# [[0700]] Exotic Item Variations
# [0701] Double Corruptions
# [0702] Abyss Jeweled Rares
# [0703] Synthesised
# [0704] Fractured
# [0705] Enchanted
# [[0800]] Jewels
# [0801] Special Cases
# [0802] Cluster Jewels
# [0803] Abyss Jewels
# [0804] Generic Jewels
# [[0900]] Recipes and 5links
# [[1000]] High Level Crafting Bases
# [1001] ILVL 84
# [1002] ILVL ANY
# [1003] RGB Endgame
# [1004] Chisel Recipes
# [[1100]] Chancing Bases
# [[1200]] Endgame Flasks
# [1201] High quality assorted flasks
# [1202] Utility OR quality flasks
# [1203] Early mapping life/mana/utility flasks
# [[1300]] Misc Rules
# [[1400]] Hide Layer 1 - Normal and Magic Endgame Gear
# [[1500]] Rare Item Decorators
# [[1600]] Endgame - Rare - Exotic Corrupted Items
# [[1700]] Endgame - Rare - Accessoires
# [[1800]] Endgame - Rare - Accessoires
# [[1900]] Endgame - Rare - Gear - T1 - handpicked
# [[2000]] Endgame - Rare - Gear - T2 - handpicked
# [[2100]] Endgame - Rare - Gear - T2 - handpicked
# [[2200]] Endgame - Rare - Gear - T3 - droplevel-based
# [[2300]] Endgame - Rare - Gear - T4 - rest
# [[2400]] Hide Layer 2 - Rare Gear
# [[2500]] Heist Gear
# [2501] Heist Cloak
# [2502] Heist Brooch
# [2503] Heist Gear
# [2504] Heist Tool
# [[2600]] Gem Tierlists
# [2601] Exceptional Gems - Awakened and AltQuality
# [2602] Exceptional Gems - Special gems
# [2603] High Quality and Leveled Gems
# [[2700]] REPLICA UNIQUES
# [[2800]] Special Maps
# [2801] Unique Maps
# [2802] Blighted maps
# [2803] Delirium/Blight/Enchanted Maps!
# [2804] Beyond-Nemesis Maps, for those juicy sextants.
# [[2900]] Normal Map Progression
# [2901] Map progression
# [2902] Labyrinth items, Offerings
# [[3000]] Heist Contracts and Blueprints
# [[3100]] Fragments
# [3101] Scarabs
# [3102] Regular Fragment Tiering
# [[3200]] Currency - Exceptions - Stacked Currency
# [3201] Perandus Coins
# [3202] Heist Coins
# [[3300]] Currency - Exceptions - Leveling Currencies
# [[3400]] Currency - Regular Currency Tiering
# [[3500]] Currency - SPECIAL
# [3501] Delirum Orbs
# [3502] Delve - Resonators
# [3503] Delve - Fossils
# [3504] Blight - Oils
# [3505] Essences
# [3506] Incubators
# [3507] Others
# [[3600]] Currency - Prophecies
# [[3700]] Currency - Splinters
# [3701] Simulacrum Splinters
# [[3800]] Divination Cards
# [[3900]] Remaining Currency
# [[4000]] Questlike-Items1 (override uniques)
# [[4100]] Uniques
# [4101] Exceptions #1
# [4102] Tier 1 uniques
# [4103] Exceptions #2
# [4104] Tier 2 uniques
# [4105] Multi-Unique bases.
# [4106] Tier 3 uniques
# [4107] Tier 4 uniques
# [[4200]] Misc Map Items
# [[4300]] Questlike-Items2
# [[4400]] Hide outdated leveling flasks
# [[4500]] Leveling - Flasks
# [4501] Hybrid flasks
# [4502] Life flasks
# [4503] Mana flasks
# [[4600]] Leveling - Rules
# [4601] Rares - Decorators
# [4602] Rares - Universal
# [4603] Rares - Caster
# [4604] Rares - Archer
# [4605] Rares - Melee
# [[4700]] Leveling - Useful magic and normal items
# [4701] Normals
# [4702] Weapon Progression
# [4703] Remaining Magics
# [4704] Show All unknown Section
#===============================================================================================================
# [[0100]] Global overriding rules
#===============================================================================================================
# !! Chapter "High Priority Rules"
# !! Override 010 : "ALL Rules"
Show # $type->6l $tier->arm
Corrupted False
LinkedSockets 6
Rarity <= Rare
Class "Body Armours"
SetFontSize 45
SetTextColor 200 0 0 255
SetBorderColor 200 0 0 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 6 300
PlayEffect Red
MinimapIcon 0 Red Star
Show # $type->6l $tier->wep
LinkedSockets 6
Rarity <= Rare
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 200 0 0 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
#===============================================================================================================
# [[0200]] High tier influenced items
#===============================================================================================================
# !! Override 020 : "influenced rules"
#------------------------------------
# [0201] Influenced Maps
#------------------------------------
Show # $type->maps->influenced $tier->infshaper
HasInfluence Shaper
Rarity <= Rare
Class "Maps"
SetFontSize 45
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
Show # $type->maps->influenced $tier->infelder
HasInfluence Elder
Rarity <= Rare
Class "Maps"
SetFontSize 45
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
#------------------------------------
# [0202] Crusader
#------------------------------------
Show # $type->rare->crusader $tier->t11
HasInfluence Crusader
ItemLevel >= 82
Rarity <= Rare
BaseType "Banishing Blade" "Battery Staff" "Blasting Blade" "Boom Mace" "Capricious Spiritblade" "Cerulean Ring" "Crystal Belt" "Disapprobation Axe" "Flashfire Blade" "Hedron Bow" "Honed Cleaver" "Infernal Blade" "Malign Fangs" "Opal Ring" "Potentiality Rod" "Psychotic Axe" "Reciprocation Staff" "Solarine Bow" "Transformer Staff" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->crusader $tier->t12
HasInfluence Crusader
ItemLevel >= 84
Rarity <= Rare
BaseType "Apothecary's Gloves" "Congregator Wand" "Fingerless Silk Gloves" "Sacrificial Garb" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Titanium Spirit Shield"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->crusader $tier->t13
HasInfluence Crusader
ItemLevel >= 86
Rarity <= Rare
BaseType "Astral Plate" "Blessed Boots" "Blue Pearl Amulet" "Bone Helmet" "Marble Amulet" "Pneumatic Dagger" "Sorcerer Boots" "Two-Toned Boots" "Vaal Regalia" "Void Fangs"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # %D5 $type->rare->crusader $tier->t21
HasInfluence Crusader
ItemLevel >= 80
Rarity <= Rare
BaseType "Alternating Sceptre" "Apothecary's Gloves" "Banishing Blade" "Battery Staff" "Blasting Blade" "Blue Pearl Amulet" "Boom Mace" "Capricious Spiritblade" "Cardinal Round Shield" "Cerulean Ring" "Congregator Wand" "Crystal Belt" "Disapprobation Axe" "Fingerless Silk Gloves" "Flashfire Blade" "Hedron Bow" "Honed Cleaver" "Infernal Blade" "Iolite Ring" "Malign Fangs" "Moonstone Ring" "Opal Ring" "Ornate Quiver" "Pneumatic Dagger" "Potentiality Rod" "Psychotic Axe" "Quartz Sceptre" "Reciprocation Staff" "Sacrificial Garb" "Sage Wand" "Seaglass Amulet" "Solarine Bow" "Spiraled Wand" "Steel Ring" "Stygian Vise" "Titanium Spirit Shield" "Transformer Staff" "Two-Toned Boots" "Unset Ring" "Vermillion Ring" "Void Fangs"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->crusader $tier->t22
HasInfluence Crusader
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Battle Lamellar" "Battle Plate" "Blessed Boots" "Blood Raiment" "Blood Sceptre" "Bone Helmet" "Carnal Armour" "Chain Hauberk" "Citrine Amulet" "Colossal Tower Shield" "Colosseum Plate" "Commander's Brigandine" "Convoking Wand" "Coronal Leather" "Crude Bow" "Crusader Plate" "Crypt Armour" "Cutthroat's Garb" "Desert Brigandine" "Destiny Leather" "Destroyer Regalia" "Devout Chainmail" "Dragonscale Doublet" "Eclipse Staff" "Eternal Burgonet" "Exquisite Leather" "Ezomyte Burgonet" "Ezomyte Spiked Shield" "Fleshripper" "Frontier Leather" "Full Dragonscale" "Full Wyrmscale" "General's Brigandine" "Gladiator Plate" "Glorious Plate" "Golden Plate" "Grinning Fetish" "Gripped Gloves" "Headsman Axe" "Horned Sceptre" "Hubris Circlet" "Imbued Wand" "Imperial Buckler" "Imperial Claw" "Jewelled Foil" "Judgement Staff" "Lacquered Buckler" "Lacquered Garb" "Laminated Kite Shield" "Lapis Amulet" "Lion Pelt" "Loricated Ringmail" "Maelström Staff" "Majestic Plate" "Maraketh Bow" "Marble Amulet" "Mirrored Spiked Shield" "Necromancer Silks" "Occultist's Vestment" "Onyx Amulet" "Opal Sceptre" "Opal Wand" "Pagan Wand" "Paua Ring" "Piledriver" "Pinnacle Tower Shield" "Royal Burgonet" "Ruby Ring" "Sadist Garb" "Saintly Chainmail" "Saint's Hauberk" "Sambar Sceptre" "Sapphire Ring" "Savant's Robe" "Sekhem" "Sentinel Jacket" "Shadow Sceptre" "Sharkskin Tunic" "Sinner Tricorne" "Sorcerer Boots" "Spidersilk Robe" "Spiked Gloves" "Spine Bow" "Spiny Round Shield" "Stabilising Sceptre" "Stag Sceptre" "Sundering Axe" "Talon Axe" "Topaz Ring" "Triumphant Lamellar" "Turquoise Amulet" "Two-Stone Ring" "Vaal Axe" "Vaal Buckler" "Vaal Regalia" "Vanguard Belt" "Void Sceptre" "Widowsilk Robe" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0203] Warlord
#------------------------------------
Show # $type->rare->warlord $tier->t11
HasInfluence Warlord
ItemLevel >= 82
Rarity <= Rare
BaseType "Apex Cleaver" "Apothecary's Gloves" "Banishing Blade" "Battery Staff" "Capricious Spiritblade" "Crack Mace" "Disapprobation Axe" "Eventuality Rod" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flare Mace" "Foundry Bow" "Gripped Gloves" "Hedron Bow" "Hollowpoint Dagger" "Honed Cleaver" "Infernal Blade" "Malign Fangs" "Maltreatment Axe" "Pneumatic Dagger" "Potentiality Rod" "Pressurised Dagger" "Prime Cleaver" "Rebuking Blade" "Reciprocation Staff" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Transformer Staff" "Vermillion Ring" "Void Fangs"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->warlord $tier->t12
HasInfluence Warlord
ItemLevel >= 84
Rarity <= Rare
BaseType "Crystal Belt" "Flashfire Blade" "Opal Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->warlord $tier->t13
HasInfluence Warlord
ItemLevel >= 86
Rarity <= Rare
BaseType "Accumulator Wand" "Alternating Sceptre" "Astral Plate" "Blessed Boots" "Bone Helmet" "Congregator Wand" "Hubris Circlet" "Marble Amulet" "Royal Burgonet" "Sorcerer Boots" "Titanium Spirit Shield" "Two-Toned Boots"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # %D5 $type->rare->warlord $tier->t21
HasInfluence Warlord
ItemLevel >= 80
Rarity <= Rare
BaseType "Accumulator Wand" "Alternating Sceptre" "Apex Cleaver" "Apothecary's Gloves" "Banishing Blade" "Battery Staff" "Blue Pearl Amulet" "Capricious Spiritblade" "Congregator Wand" "Crack Mace" "Crystal Sceptre" "Disapprobation Axe" "Eventuality Rod" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flare Mace" "Flashfire Blade" "Foundry Bow" "Gripped Gloves" "Hedron Bow" "Hollowpoint Dagger" "Honed Cleaver" "Infernal Blade" "Malign Fangs" "Maltreatment Axe" "Marble Amulet" "Opal Ring" "Ornate Quiver" "Pagan Wand" "Pneumatic Dagger" "Potentiality Rod" "Pressurised Dagger" "Prime Cleaver" "Rebuking Blade" "Reciprocation Staff" "Spiked Gloves" "Spine Bow" "Steel Ring" "Stygian Vise" "Transformer Staff" "Two-Toned Boots" "Vermillion Ring" "Void Fangs"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->warlord $tier->t22
HasInfluence Warlord
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Arcanist Gloves" "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Blessed Boots" "Bone Helmet" "Cerulean Ring" "Champion Kite Shield" "Citrine Amulet" "Cogwork Ring" "Colossal Tower Shield" "Conquest Chainmail" "Convoking Wand" "Coral Ring" "Courtesan Sword" "Crystal Belt" "Deicide Mask" "Diamond Ring" "Ebony Tower Shield" "Eclipse Staff" "Eternal Burgonet" "Exquisite Blade" "Ezomyte Burgonet" "Ezomyte Spiked Shield" "Ezomyte Staff" "Ezomyte Tower Shield" "Fleshripper" "Gavel" "General's Brigandine" "Gladius" "Glorious Plate" "Heathen Wand" "Horned Sceptre" "Hubris Circlet" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Imperial Staff" "Iolite Ring" "Jade Amulet" "Jewelled Foil" "Judgement Staff" "Lapis Amulet" "Legion Hammer" "Lion Pelt" "Maelström Staff" "Moonstone Ring" "Nightmare Bascinet" "Onyx Amulet" "Opal Sceptre" "Opal Wand" "Pinnacle Tower Shield" "Quartz Wand" "Ritual Sceptre" "Royal Burgonet" "Ruby Ring" "Runic Hatchet" "Sage Wand" "Sapphire Ring" "Seaglass Amulet" "Sekhem" "Shadow Sceptre" "Silken Hood" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiny Round Shield" "Sun Plate" "Sundering Axe" "Supreme Spiked Shield" "Titan Gauntlets" "Titanium Spirit Shield" "Topaz Ring" "Turquoise Amulet" "Twin Claw" "Two-Stone Ring" "Unset Ring" "Vaal Gauntlets" "Vaal Regalia" "Void Sceptre" "Widowsilk Robe"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0204] Redeemer
#------------------------------------
Show # $type->rare->redeemer $tier->t11
HasInfluence Redeemer
ItemLevel >= 82
Rarity <= Rare
BaseType "Alternating Sceptre" "Anarchic Spiritblade" "Boom Mace" "Capricious Spiritblade" "Cogwork Ring" "Crack Mace" "Disapprobation Axe" "Eventuality Rod" "Fickle Spiritblade" "Flashfire Blade" "Flickerflame Blade" "Geodesic Ring" "Hedron Bow" "Hollowpoint Dagger" "Infernal Blade" "Malign Fangs" "Opal Ring" "Pneumatic Dagger" "Potentiality Rod" "Pressurised Dagger" "Psychotic Axe" "Stygian Vise" "Transformer Staff" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->redeemer $tier->t12
HasInfluence Redeemer
ItemLevel >= 84
Rarity <= Rare
BaseType "Blessed Boots" "Crystal Belt" "Fingerless Silk Gloves" "Spiked Gloves" "Spiraled Wand" "Steel Ring" "Void Fangs"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->redeemer $tier->t13
HasInfluence Redeemer
ItemLevel >= 86
Rarity <= Rare
BaseType "Apothecary's Gloves" "Astral Plate" "Bone Helmet" "Hubris Circlet" "Sorcerer Boots" "Titanium Spirit Shield" "Vaal Regalia"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # %D5 $type->rare->redeemer $tier->t21
HasInfluence Redeemer
ItemLevel >= 80
Rarity <= Rare
BaseType "Alternating Sceptre" "Anarchic Spiritblade" "Apothecary's Gloves" "Blasting Blade" "Blessed Boots" "Boom Mace" "Capricious Spiritblade" "Cogwork Ring" "Crack Mace" "Crystal Belt" "Disapprobation Axe" "Eventuality Rod" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Geodesic Ring" "Hedron Bow" "Hollowpoint Dagger" "Infernal Blade" "Iron Sceptre" "Malign Fangs" "Maltreatment Axe" "Marble Amulet" "Ochre Sceptre" "Opal Ring" "Pneumatic Dagger" "Potentiality Rod" "Pressurised Dagger" "Psychotic Axe" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Sundering Axe" "Transformer Staff" "Two-Toned Boots" "Vermillion Ring" "Void Fangs"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->redeemer $tier->t22
HasInfluence Redeemer
ItemLevel >= 85
Rarity <= Rare
BaseType "Accumulator Wand" "Agate Amulet" "Amber Amulet" "Ambush Boots" "Ambusher" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Blue Pearl Amulet" "Bone Helmet" "Butcher Axe" "Carnal Armour" "Cerulean Ring" "Champion Kite Shield" "Citrine Amulet" "Convoking Wand" "Coral Amulet" "Deicide Mask" "Diamond Ring" "Dragonscale Boots" "Elegant Round Shield" "Engraved Hatchet" "Eternal Burgonet" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Faun's Horn" "Fluted Bascinet" "Gemini Claw" "Girded Tower Shield" "Great Crown" "Gripped Gloves" "Harlequin Mask" "Horned Sceptre" "Hubris Circlet" "Hydrascale Boots" "Imbued Wand" "Imperial Claw" "Iolite Ring" "Judgement Staff" "Lion Pelt" "Magistrate Crown" "Meatgrinder" "Mind Cage" "Moon Staff" "Murder Boots" "Necromancer Circlet" "Nightmare Bascinet" "Onyx Amulet" "Opal Wand" "Pig-Faced Bascinet" "Praetor Crown" "Profane Wand" "Prophet Crown" "Regicide Mask" "Ritual Sceptre" "Royal Burgonet" "Sage Wand" "Sambar Sceptre" "Samite Slippers" "Samnite Helmet" "Seaglass Amulet" "Sekhem" "Shadow Sceptre" "Shagreen Boots" "Shagreen Tower Shield" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Solaris Circlet" "Sorcerer Boots" "Sorcerer Gloves" "Spiraled Wand" "Stag Sceptre" "Stealth Boots" "Supreme Spiked Shield" "Talon Axe" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Turquoise Amulet" "Two-Point Arrow Quiver" "Two-Stone Ring" "Unset Ring" "Ursine Pelt" "Vaal Gauntlets" "Vaal Mask" "Vaal Regalia" "Vaal Spirit Shield" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0205] Hunter
#------------------------------------
Show # $type->rare->hunter $tier->t11
HasInfluence Hunter
ItemLevel >= 82
Rarity <= Rare
BaseType "Anarchic Spiritblade" "Apex Cleaver" "Battery Staff" "Blessed Boots" "Blunt Force Condenser" "Boom Mace" "Capricious Spiritblade" "Crushing Force Magnifier" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Geodesic Ring" "Gripped Gloves" "Honed Cleaver" "Infernal Blade" "Malign Fangs" "Maltreatment Axe" "Marble Amulet" "Potentiality Rod" "Psychotic Axe" "Reciprocation Staff" "Shadow Fangs" "Solarine Bow" "Spiked Gloves" "Transformer Staff" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->hunter $tier->t12
HasInfluence Hunter
ItemLevel >= 84
Rarity <= Rare
BaseType "Alternating Sceptre" "Apothecary's Gloves" "Crystal Belt" "Iolite Ring" "Opal Ring" "Ornate Quiver" "Steel Ring" "Stygian Vise"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->hunter $tier->t13
HasInfluence Hunter
ItemLevel >= 86
Rarity <= Rare
BaseType "Arcanist Slippers" "Assassin's Garb" "Astral Plate" "Blue Pearl Amulet" "Bone Helmet" "Ezomyte Tower Shield" "Horned Sceptre" "Hubris Circlet" "Sorcerer Boots" "Titanium Spirit Shield" "Vaal Regalia"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # %D5 $type->rare->hunter $tier->t21
HasInfluence Hunter
ItemLevel >= 80
Rarity <= Rare
BaseType "Accumulator Wand" "Agate Amulet" "Alternating Sceptre" "Amber Amulet" "Anarchic Spiritblade" "Apex Cleaver" "Apothecary's Gloves" "Astral Plate" "Battery Staff" "Blasting Blade" "Blessed Boots" "Blue Pearl Amulet" "Blunt Force Condenser" "Boom Mace" "Capricious Spiritblade" "Citrine Amulet" "Crushing Force Magnifier" "Crystal Belt" "Crystal Sceptre" "Eventuality Rod" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Geodesic Ring" "Gripped Gloves" "Honed Cleaver" "Infernal Blade" "Iolite Ring" "Iron Gauntlets" "Jade Amulet" "Lapis Amulet" "Malign Fangs" "Maltreatment Axe" "Marble Amulet" "Micro-Distillery Belt" "Onyx Amulet" "Opal Ring" "Ornate Quiver" "Penetrating Arrow Quiver" "Potentiality Rod" "Psychotic Axe" "Reciprocation Staff" "Seaglass Amulet" "Shadow Fangs" "Solarine Bow" "Sorcerer Boots" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Transformer Staff" "Trisula" "Turquoise Amulet" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->hunter $tier->t22
HasInfluence Hunter
ItemLevel >= 85
Rarity <= Rare
BaseType "Ambush Boots" "Ambush Mitts" "Ancient Gauntlets" "Ancient Greaves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Boots" "Assassin's Garb" "Assassin's Mitts" "Battle Lamellar" "Blood Raiment" "Bone Helmet" "Broadhead Arrow Quiver" "Bronze Tower Shield" "Carnal Armour" "Carnal Boots" "Cerulean Ring" "Champion Kite Shield" "Colossal Tower Shield" "Conjurer Boots" "Conjurer Gloves" "Convoking Wand" "Coral Amulet" "Crusader Boots" "Crusader Gloves" "Cutthroat's Garb" "Desert Brigandine" "Diamond Ring" "Dragon Mace" "Dragonscale Boots" "Dragonscale Gauntlets" "Eclipse Staff" "Elegant Round Shield" "Engraved Wand" "Eternal Burgonet" "Exquisite Leather" "Ezomyte Tower Shield" "Faun's Horn" "Fire Arrow Quiver" "Fleshripper" "Fossilised Spirit Shield" "Frontier Leather" "Gavel" "Gemini Claw" "General's Brigandine" "Gladiator Plate" "Glorious Plate" "Gold Amulet" "Golden Plate" "Goliath Gauntlets" "Goliath Greaves" "Grappler" "Harmonic Spirit Shield" "Heavy Belt" "Horned Sceptre" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Iron Hat" "Lacquered Buckler" "Leather Belt" "Legion Boots" "Legion Gloves" "Lion Pelt" "Lithe Blade" "Maelström Staff" "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Mosaic Kite Shield" "Murder Boots" "Murder Mitts" "Necromancer Silks" "Occultist's Vestment" "Opal Wand" "Paua Amulet" "Pecoraro" "Piledriver" "Pinnacle Tower Shield" "Quartz Wand" "Ritual Sceptre" "Royal Burgonet" "Sacrificial Garb" "Sadist Garb" "Sage Wand" "Saintly Chainmail" "Samite Gloves" "Samite Slippers" "Shadow Sceptre" "Shagreen Boots" "Shagreen Gloves" "Sharkskin Boots" "Sharktooth Arrow Quiver" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Solar Maul" "Soldier Boots" "Soldier Gloves" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Spine Bow" "Spiny Round Shield" "Stealth Boots" "Stealth Gloves" "Sundering Axe" "Supreme Spiked Shield" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Stone Ring" "Unset Ring" "Ursine Pelt" "Vaal Gauntlets" "Vaal Greaves" "Vaal Regalia" "Vaal Spirit Shield" "Vanguard Belt" "Widowsilk Robe" "Wyrmscale Boots" "Wyrmscale Gauntlets" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0206] Shaper
#------------------------------------
Show # $type->rare->shaper $tier->t11
HasInfluence Shaper
ItemLevel >= 82
Rarity <= Rare
BaseType "Anarchic Spiritblade" "Apex Cleaver" "Banishing Blade" "Battery Staff" "Boom Mace" "Crack Mace" "Crystal Belt" "Eventuality Rod" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Honed Cleaver" "Infernal Blade" "Malign Fangs" "Opal Ring" "Pneumatic Dagger" "Potentiality Rod" "Pressurised Dagger" "Psychotic Axe" "Solarine Bow" "Steel Ring" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->shaper $tier->t12
HasInfluence Shaper
ItemLevel >= 84
Rarity <= Rare
BaseType "Accumulator Wand" "Apothecary's Gloves" "Iron Gauntlets" "Marble Amulet" "Spiked Gloves" "Stabilising Sceptre" "Stygian Vise" "Titanium Spirit Shield" "Two-Toned Boots"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->shaper $tier->t13
HasInfluence Shaper
ItemLevel >= 86
Rarity <= Rare
BaseType "Astral Plate" "Blessed Boots" "Bone Helmet" "Carved Wand" "Congregator Wand" "Sorcerer Boots"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # %D5 $type->rare->shaper $tier->t21
HasInfluence Shaper
ItemLevel >= 80
Rarity <= Rare
BaseType "Accumulator Wand" "Anarchic Spiritblade" "Apex Cleaver" "Apothecary's Gloves" "Archon Kite Shield" "Banishing Blade" "Battery Staff" "Boom Mace" "Crack Mace" "Crystal Belt" "Disapprobation Axe" "Ebony Tower Shield" "Eventuality Rod" "Ezomyte Tower Shield" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Harmonic Spirit Shield" "Honed Cleaver" "Infernal Blade" "Iron Gauntlets" "Iron Sceptre" "Malign Fangs" "Ochre Sceptre" "Opal Ring" "Pagan Wand" "Pneumatic Dagger" "Potentiality Rod" "Pressurised Dagger" "Prismatic Ring" "Psychotic Axe" "Quartz Wand" "Ritual Sceptre" "Sacrificial Garb" "Shadow Fangs" "Solarine Bow" "Spiked Gloves" "Spiraled Wand" "Splintered Tower Shield" "Stabilising Sceptre" "Steel Ring" "Stygian Vise" "Titanium Spirit Shield" "Two-Toned Boots" "Vermillion Ring" "Void Fangs"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->shaper $tier->t22
HasInfluence Shaper
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Ambusher" "Amethyst Ring" "Angelic Kite Shield" "Arcanist Gloves" "Assassin Bow" "Assassin's Garb" "Astral Plate" "Blessed Boots" "Blue Pearl Amulet" "Bone Helmet" "Bronze Tower Shield" "Carved Wand" "Carving Knife" "Cerulean Ring" "Champion Kite Shield" "Citrine Amulet" "Colossal Tower Shield" "Congregator Wand" "Convoking Wand" "Coral Ring" "Crested Tower Shield" "Crusader Buckler" "Crusader Gloves" "Crystal Wand" "Diamond Ring" "Eclipse Staff" "Exquisite Blade" "Fossilised Spirit Shield" "Gripped Gloves" "Hubris Circlet" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Iolite Ring" "Lacewood Spirit Shield" "Laminated Kite Shield" "Leather Belt" "Lion Pelt" "Maelström Staff" "Maraketh Bow" "Marble Amulet" "Moonstone Ring" "Mosaic Kite Shield" "Onyx Amulet" "Opal Wand" "Pinnacle Tower Shield" "Ruby Ring" "Sapphire Ring" "Seaglass Amulet" "Shagreen Tower Shield" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Spine Bow" "Stealth Gloves" "Steelwood Bow" "Supreme Spiked Shield" "Thorium Spirit Shield" "Topaz Ring" "Turquoise Amulet" "Two-Point Arrow Quiver" "Two-Stone Ring" "Unset Ring" "Vaal Regalia" "Vaal Spirit Shield"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0207] Elder
#------------------------------------
Show # $type->rare->elder $tier->t11
HasInfluence Elder
ItemLevel >= 82
Rarity <= Rare
BaseType "Anarchic Spiritblade" "Apex Cleaver" "Banishing Blade" "Battery Staff" "Boom Mace" "Capacity Rod" "Capricious Spiritblade" "Crack Mace" "Eventuality Rod" "Flickerflame Blade" "Foundry Bow" "Hollowpoint Dagger" "Infernal Blade" "Malign Fangs" "Marble Amulet" "Opal Ring" "Pneumatic Dagger" "Potentiality Rod" "Psychotic Axe" "Reciprocation Staff" "Solarine Bow" "Steel Ring" "Stygian Vise" "Transformer Staff" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->elder $tier->t12
HasInfluence Elder
ItemLevel >= 84
Rarity <= Rare
BaseType "Apothecary's Gloves" "Bone Helmet" "Congregator Wand" "Crystal Belt" "Fingerless Silk Gloves" "Flashfire Blade" "Iron Greaves" "Iron Sceptre" "Prismatic Ring" "Spiked Gloves" "Two-Toned Boots"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->elder $tier->t13
HasInfluence Elder
ItemLevel >= 86
Rarity <= Rare
BaseType "Astral Plate" "Blessed Boots" "Disapprobation Axe" "Gripped Gloves" "Horned Sceptre" "Leather Belt" "Mechalarm Belt" "Pagan Wand" "Sorcerer Boots" "Stabilising Sceptre" "Titanium Spirit Shield"
SetFontSize 45
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # %D5 $type->rare->elder $tier->t21
HasInfluence Elder
ItemLevel >= 80
Rarity <= Rare
BaseType "Accumulator Wand" "Anarchic Spiritblade" "Apex Cleaver" "Apothecary's Gloves" "Banishing Blade" "Battery Staff" "Blessed Boots" "Bone Helmet" "Boom Mace" "Capacity Rod" "Capricious Spiritblade" "Congregator Wand" "Crack Mace" "Crystal Belt" "Disapprobation Axe" "Eventuality Rod" "Faun's Horn" "Fingerless Silk Gloves" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Hollowpoint Dagger" "Horned Sceptre" "Infernal Blade" "Iron Greaves" "Malign Fangs" "Marble Amulet" "Mechalarm Belt" "Ochre Sceptre" "Opal Ring" "Oscillating Sceptre" "Pneumatic Dagger" "Potentiality Rod" "Prismatic Ring" "Psychotic Axe" "Quartz Wand" "Reciprocation Staff" "Sage Wand" "Solarine Bow" "Spiked Gloves" "Stabilising Sceptre" "Steel Ring" "Stygian Vise" "Transformer Staff" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->elder $tier->t22
HasInfluence Elder
ItemLevel >= 85
Rarity <= Rare
BaseType "Amethyst Ring" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Blue Pearl Amulet" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Carved Wand" "Cerulean Ring" "Citrine Amulet" "Cogwork Ring" "Colossal Tower Shield" "Conjurer Boots" "Conquest Chainmail" "Convoking Wand" "Coral Ring" "Crusader Boots" "Deicide Mask" "Diamond Ring" "Dragonscale Boots" "Ebony Tower Shield" "Engraved Hatchet" "Eternal Burgonet" "Exquisite Blade" "Ezomyte Burgonet" "Ezomyte Dagger" "Ezomyte Tower Shield" "Fleshripper" "Fluted Bascinet" "Gemini Claw" "Glorious Plate" "Great Crown" "Grinning Fetish" "Gripped Gloves" "Harlequin Mask" "Heavy Belt" "Hubris Circlet" "Imperial Buckler" "Imperial Claw" "Iolite Ring" "Iron Sceptre" "Jewelled Foil" "Judgement Staff" "Lapis Amulet" "Lathi" "Lead Sceptre" "Leather Belt" "Legion Sword" "Lion Pelt" "Maelström Staff" "Magistrate Crown" "Maraketh Bow" "Mind Cage" "Murder Boots" "Necromancer Circlet" "Nightmare Bascinet" "Occultist's Vestment" "Pagan Wand" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Praetor Crown" "Prophet Crown" "Reaver Axe" "Ritual Sceptre" "Royal Axe" "Royal Burgonet" "Samite Slippers" "Samnite Helmet" "Seaglass Amulet" "Sekhem" "Shadow Sceptre" "Sharktooth Arrow Quiver" "Siege Axe" "Siege Helmet" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Sorcerer Boots" "Sorcerer Gloves" "Spine Bow" "Steelwood Bow" "Supreme Spiked Shield" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Turquoise Amulet" "Two-Stone Ring" "Unset Ring" "Vaal Axe" "Vaal Greatsword" "Vaal Greaves" "Vaal Regalia" "Vanguard Belt" "Zealot Helmet"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 1 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0208] Remaining
#------------------------------------
Show # %D4 $type->rare->any $tier->anytrinket
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity <= Rare
Class "Amulet" "Belts" "Rings"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D5 $type->rare->any $tier->anytoplevel
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 86
Rarity <= Rare
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 50 200 50 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D4 $type->rare->any $tier->any
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity <= Rare
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
#===============================================================================================================
# [[0300]] Exotic Bases
#===============================================================================================================
# !! Override 030 : "heist and ritual bases"
# These bases don't usually drop during normal gameplay and are usually only acquired form certain sources
# These are bases such as heist and ritual bases.
Show # $type->exoticbases $tier->exoticheistbases
Rarity <= Rare
BaseType "Accumulator Wand" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Assembler Wand" "Astrolabe Amulet" "Banishing Blade" "Battery Staff" "Blasting Blade" "Blunt Force Condenser" "Boom Mace" "Capacity Rod" "Capricious Spiritblade" "Cogwork Ring" "Cold-attuned Buckler" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Disapprobation Axe" "Endothermic Buckler" "Eventuality Rod" "Exhausting Spirit Shield" "Exothermic Tower Shield" "Fickle Spiritblade" "Flare Mace" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Geodesic Ring" "Heat-attuned Tower Shield" "Hedron Bow" "Hollowpoint Dagger" "Honed Cleaver" "Impact Force Propagator" "Infernal Blade" "Magmatic Tower Shield" "Malign Fangs" "Maltreatment Axe" "Mechalarm Belt" "Micro-Distillery Belt" "Oscillating Sceptre" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Prime Cleaver" "Psychotic Axe" "Rebuking Blade" "Reciprocation Staff" "Shadow Fangs" "Simplex Amulet" "Solarine Bow" "Stabilising Sceptre" "Subsuming Spirit Shield" "Transfer-attuned Spirit Shield" "Transformer Staff" "Void Fangs"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticritualbases
Rarity <= Rare
BaseType "Aetherwind Gloves" "Archdemon Crown" "Atonement Mask" "Basemetal Treads" "Blizzard Crown" "Brimstone Treads" "Cloudwhisper Boots" "Darksteel Treads" "Debilitation Gauntlets" "Demon Crown" "Dreamquest Slippers" "Duskwalk Slippers" "Gale Crown" "Gauche Gloves" "Gruelling Gauntlets" "Imp Crown" "Leyline Gloves" "Nexus Gloves" "Nightwind Slippers" "Penitent Mask" "Sinistral Gloves" "Sorrow Mask" "Southswing Gloves" "Stormrider Boots" "Taxing Gauntlets" "Windbreak Boots" "Winter Crown"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exotictalismanbases
Rarity <= Rare
BaseType == "Greatwolf Talisman" "Rot Head Talisman"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticbasesmisc
Rarity <= Rare
BaseType == "Grasping Mail"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
#===============================================================================================================
# [[0400]] IDENTIFIED MOD FILTERING
#===============================================================================================================
# !! Override 040 : "identified mod filtering"
#------------------------------------
# [0401] Physical
#------------------------------------
Show # $type->rareid $tier->veiledphys
Identified True
DropLevel >= 55
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=1 "Flaring" "Merciless" "Veiled"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->2highphys
Identified True
DropLevel >= 55
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=2 "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's" "Flaring" "Tempered" "Merciless" "Tyrannical" "Dictator's" "Emperor's" "of Celebration"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->3highphys
Identified True
DropLevel >= 55
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=3 "Veiled" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's" "Flaring" "Tempered" "Razor-sharp" "Merciless" "Tyrannical" "Cruel" "Dictator's" "Emperor's" "Conqueror's" "of Celebration" "of Infamy" "of Incision" "of Destruction"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->4highphys
Identified True
DropLevel >= 55
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=4 "Veiled" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's" "Flaring" "Tempered" "Razor-sharp" "Annealed" "Merciless" "Tyrannical" "Cruel" "Bloodthirsty" "Dictator's" "Emperor's" "Conqueror's" "Champion's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Destruction" "of Ferocity"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0402] Elemental
#------------------------------------
Show # $type->rareid $tier->3highele
Identified True
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imperial Bow" "Imperial Claw" "Jewelled Foil" "Maraketh Bow" "Spiraled Foil" "Thicket Bow"
HasExplicitMod >=3 "Veiled" "of the Underground" "Subterranean" "of Many" "Matatl's" "Tacati" "Topotante's" "Carbonising" "Cremating" "Crystalising" "Entombing" "Vapourising" "Electrocuting" "of Celebration" "of Incision" "of Penetrating" "of Destruction"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->4highele
Identified True
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imperial Bow" "Imperial Claw" "Jewelled Foil" "Maraketh Bow" "Spiraled Foil" "Thicket Bow"
HasExplicitMod >=4 "Veiled" "of the Underground" "Subterranean" "of Many" "Matatl's" "Tacati" "Topotante's" "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "of Celebration" "of Infamy" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0403] Gembased
#------------------------------------
Show # $type->rareid $tier->gemmodsbow
Identified True
Rarity Rare
Class "Bows"
HasExplicitMod >=2 "Paragon's" "Sharpshooter's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->gemmodscaster
Identified True
Rarity Rare
Class "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=2 "of the Underground" "Subterranean" "of Many" "Martinet's" "Matatl's" "Tacati" "Topotante's" "Magister's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->gemmodsstaves
Identified True
Rarity Rare
Class "Staves"
HasExplicitMod >=2 "of the Underground" "Subterranean" "of Many" "Martinet's" "Matatl's" "Tacati" "Topotante's" "Lava Conjurer's" "Winter Beckoner's" "Tempest Master's" "Splintermind's" "Tecton's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0404] Caster and Spellslinger
#------------------------------------
Show # $type->rareid $tier->3highcaster
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=3 "Veiled" "Empress's" "Queen's" "Martinet's" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Xoph's" "Pyroclastic" "Magmatic" "Tul's" "Cryomancer's" "Crystalline" "Esh's" "Ionising" "Smiting" "Electrocuting" "Discharging" "Entombing" "Polar" "Cremating" "Blasting" "Flame Shaper's" "Frost Singer's" "Thunderhand's" "Mad Lord's" "Lithomancer's" "Magister's" "of Unmaking" "of Ruin" "of Finesse" "of Destruction" "Zaffre" "Lich's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->4highcaster
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=4 "Veiled" "of the Veil" "Empress's" "Queen's" "Martinet's" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Xoph's" "Pyroclastic" "Magmatic" "Tul's" "Cryomancer's" "Crystalline" "Esh's" "Ionising" "Smiting" "Electrocuting" "Discharging" "Shocking" "Entombing" "Polar" "Glaciated" "Cremating" "Blasting" "Incinerating" "Flame Shaper's" "Frost Singer's" "Thunderhand's" "Mad Lord's" "Lithomancer's" "Magister's" "of Unmaking" "of Ruin" "of Calamity" "of Finesse" "of Sortilege" "of Destruction" "of Ferocity" "of Nirvana" "Zaffre" "Blue" "Mazarine" "Lich's" "Archmage's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->firecaster
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=3 "Veiled" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Xoph's" "Pyroclastic" "Magmatic" "Electrocuting" "Discharging" "Shocking" "Lava Conjurer's" "Tecton's" "Magister's" "of Unmaking" "of Ruin" "of Calamity" "of Finesse" "of Sortilege" "of Destruction" "of Ferocity" "of Nirvana" "Zaffre" "Blue" "Mazarine" "of Liquefaction" "of Dispersion" "of Conflagrating" "of Combusting" "Carbonising" "Cremating" "Fanatical" "Zealous" "Baleful" "Inimical" "Corrosive" "Dissolving" "Ardent" "Lich's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->coldcaster
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=3 "Veiled" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Tul's" "Cryomancer's" "Crystalline" "Entombing" "Polar" "Glaciated" "Winter Beckoner's" "Tecton's" "Magister's" "of Unmaking" "of Ruin" "of Calamity" "of Finesse" "of Sortilege" "of Destruction" "of Ferocity" "of Nirvana" "Zaffre" "Blue" "Mazarine" "of Liquefaction" "of Dispersion" "Crystalising" "Baleful" "Inimical" "Mortifying" "Festering" "Heartstopping" "Gelid" "Boreal" "Lich's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->lightcaster
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=3 "Veiled" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Esh's" "Ionising" "Smiting" "Cremating" "Blasting" "Incinerating" "Tempest Master's" "Tecton's" "Magister's" "of Unmaking" "of Ruin" "of Calamity" "of Finesse" "of Sortilege" "of Destruction" "of Ferocity" "of Nirvana" "Zaffre" "Blue" "Mazarine" "of Liquefaction" "of Dispersion" "Vapourising" "Electrocuting" "Baleful" "Inimical" "Excruciating" "Harrowing" "Lich's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->chaoscaster
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=3 "Veiled" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Mad Lord's" "Tecton's" "Magister's" "of Unmaking" "of Ruin" "of Calamity" "of Finesse" "of Sortilege" "of Destruction" "of Ferocity" "of Nirvana" "of Euphoria" "Zaffre" "Blue" "Mazarine" "of Liquefaction" "of Dispersion" "Baleful" "Inimical" "Lich's" "Disintegrating" "Atrophying" "Deteriorating"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->3spellslinger
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=3 "Veiled" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Flame Shaper's" "Frost Singer's" "Thunderhand's" "Mad Lord's" "Lithomancer's" "Magister's" "of Unmaking" "of Ruin" "of Destruction" "Baleful" "Lich's" "Xoph's" "Pyroclastic" "Tul's" "Cryomancer's" "Esh's" "Ionising" "Electrocuting" "Discharging" "Entombing" "Polar" "Cremating" "Blasting" "Flaring" "Carbonising" "Crystalising" "Vapourising" "Merciless" "Tyrannical" "Cruel" "Malicious"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->4spellslinger
Identified True
Rarity Rare
Class == "Rune Daggers" "Sceptres" "Wands"
HasExplicitMod >=4 "Veiled" "of the Veil" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many" "Runic" "Glyphic" "Incanter's" "Flame Shaper's" "Frost Singer's" "Thunderhand's" "Mad Lord's" "Lithomancer's" "Magister's" "of Unmaking" "of Ruin" "of Calamity" "of Destruction" "of Ferocity" "of Fury" "Baleful" "Inimical" "Lich's" "Xoph's" "Pyroclastic" "Magmatic" "Tul's" "Cryomancer's" "Crystalline" "Esh's" "Ionising" "Smiting" "Electrocuting" "Discharging" "Shocking" "Entombing" "Polar" "Glaciated" "Cremating" "Blasting" "Incinerating" "Flaring" "Tempered" "Carbonising" "Crystalising" "Vapourising" "Merciless" "Tyrannical" "Cruel" "Malicious" "of Acclaim"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0405] Boots
#------------------------------------
Show # $type->rareid $tier->3lifeboots
Identified True
Rarity Rare
Class "Boots"
HasExplicitMod "Hellion's" "Cheetah's" "Veiled"