-
-
Notifications
You must be signed in to change notification settings - Fork 494
/
NeverSink's filter - 1-REGULAR.filter
10372 lines (9328 loc) · 446 KB
/
NeverSink's filter - 1-REGULAR.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.15.4
# TYPE: 1-REGULAR
# 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
#
#------------------------------------
# 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
#
#------------------------------------
# AUTO-UPDATER SERVICE AND SUPPORT THE DEVELOPMENT
#------------------------------------
#
# Patreon supporters get access to the FilterBlade Auto-Updater that combines 100% automated updates with custom styles and your customizations!
# It's a great way to support us and get something in return and it helps us on our journey of making our own company and potentially game. Thank you
# Learn more about the feature here: https://www.youtube.com/watch?v=i8RJx0s0zsA
#
# PATREON: https://www.patreon.com/Neversink
# OTHER: https://www.filterblade.xyz/About
#
#------------------------------------
# CONTACT - if you want to get notifications about updates or just get in touch:
#------------------------------------
# For feedback, questions and suggestions please join our discord!
#
# DISCORD: https://discord.gg/mye6xhF
# TWITTER: @NeverSinkDev
# TWITCH: https://www.twitch.tv/neversink
# GITHUB: NeverSinkDev
# FORUM: https://goo.gl/oQn4EN
#===============================================================================================================
# [WELCOME] TABLE OF CONTENTS + QUICKJUMP TABLE
#===============================================================================================================
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
# [[0100]] Global overriding rules
# [[0200]] Gold
# [[0300]] High tier influenced items
# [0301] Influenced Maps
# [0302] Common Tier - T1
# [0303] Specialised Tier - T1
# [0304] Common Tier - T2
# [0305] Specialised Tier - T2
# [0306] Remaining
# [[0400]] ELDRITCH ITEMS
# [[0500]] Exotic Bases
# [[0600]] IDENTIFIED MOD FILTERING - COMBINATIONS
# [0601] ID Mod exceptions - override id mod matching section
# [0602] Physical
# [0603] Elemental
# [0604] Blade Blast Daggers
# [0605] Gembased
# [0606] Caster
# [0607] Spellslinger
# [0608] Helmets
# [0609] Boots
# [0610] Gloves
# [0611] Shields
# [0612] Amulets
# [0613] Rings
# [0614] Quivers
# [0615] Body Armours
# [0616] Belts
# [0617] Jewels
# [[0700]] IDENTIFIED MOD FILTERING - SINGLE MODS
# [0701] Top Value
# [0702] Uncorrupted Mods
# [[0800]] IDENTIFIED MOD - CORRUPTED ITEMS
# [[0900]] Exotic Mods Filtering
# [0901] Veiled/Betrayal - low prio veiled items
# [0902] Incursion/Temple Mods
# [0903] Necropolis
# [0904] Bestiary
# [0905] Other
# [[1000]] Exotic Item Classes
# [1001] Voidstones
# [1002] Trinkets
# [1003] Secret Society Equipment
# [1004] Pieces
# [1005] Craftable Invitations
# [1006] Relics
# [[1100]] Exotic Item Variations
# [1101] Double Corruptions
# [1102] Specific Single Corruptions
# [1103] Abyss Jeweled Rares
# [1104] Synthesised
# [1105] Fractured
# [1106] Enchanted
# [1107] Crucible
# [[1200]] Recipes and 5links
# [1201] Link Based
# [[1300]] High Level Crafting Bases
# [1301] Expensive Atlas 86 Bases - matched by economy
# [1302] Perfection and Overquality Filtering
# [1303] RGB Endgame
# [1304] ILVL 86
# [1305] ILVL 84
# [1306] ILVL ANY
# [1307] Early Endgame Crafting projects
# [1308] Chisel Recipes
# [[1400]] Chancing Bases
# [[1500]] Endgame Flasks & Tinctures
# [1501] Endgame Flasks
# [1502] Quality High
# [1503] Utility OR quality flasks
# [1504] Quality Low
# [1505] Early mapping life/mana/utility flasks
# [[1600]] Misc Rules
# [[1700]] Hide Layer 1 - Normal and Magic Endgame Gear
# [[1800]] Rare Item Decorators
# [[1900]] Endgame - Rare - Exotic Corrupted Items
# [[2000]] Endgame - Rare - Accessoires
# [[2100]] Endgame - Conditional Hide Layers
# [[2200]] Endgame - Rare - Accessoires
# [[2300]] Endgame - Rare - Gear - Droplevel Hiding
# [[2400]] Endgame - Rare - Gear
# [[2500]] Hide Layer 2 - Rare Gear
# [[2600]] Jewels
# [2601] Special Cases
# [2602] Leveling Exceptions
# [2603] Abyss Jewels
# [2604] Generic Jewels
# [2605] Cluster Jewels: Eco-Based-Large
# [2606] Cluster Jewels: Random
# [[2700]] Heist Gear
# [2701] Heist Cloak
# [2702] Heist Brooch
# [2703] Heist Gear
# [2704] Heist Tool
# [[2800]] Gem Tierlists
# [2801] Exceptional Gems - Awakened and AltQuality
# [2802] Exceptional Gems - Special gems
# [2803] High Quality and Leveled Gems
# [[2900]] REPLICA UNIQUES
# [[3000]] Special Maps
# [3001] Unique Maps
# [3002] T17
# [3003] Blighted maps
# [3004] Special Maps
# [[3100]] Normal Map Progression
# [3101] Generic Decorators
# [3102] Map progression
# [[3200]] Pseudo-Map-Items
# [[3300]] Fragments
# [3301] Exceptions
# [3302] Scarabs
# [3303] Regular Fragment Tiering
# [[3400]] Currency - Exceptions - Leveling Currencies
# [[3500]] Currency - Exceptions - Stacked Currency
# [3501] Supplies: High Stacking
# [3502] Supplies: Low Stacking
# [3503] Supplies: Portal Stacking
# [3504] Supplies: Wisdom Stacking
# [3505] Stacked Currencies: 6x
# [3506] Stacked Currencies: 3x
# [3507] Heist Coins
# [[3600]] Currency - Regular Currency Tiering
# [[3700]] Currency - SPECIAL
# [3701] Incursion - Vials
# [3702] Delirum Orbs
# [3703] Delve - Resonators
# [3704] Delve - Fossils
# [3705] Blight - Oils
# [3706] Runes
# [3707] Corpses
# [3708] Essences
# [3709] Incubators
# [3710] Trial of the Ancestors
# [3711] Others
# [[3800]] Currency - Splinters
# [3801] Breach and Legion Splinters - stacked
# [3802] Breach and Legion Splinters - single
# [3803] Simulacrum Splinters
# [[3900]] Divination Cards
# [[4000]] Remaining Currency
# [[4100]] Questlike-Items1 (override uniques)
# [[4200]] Uniques
# [4201] Exceptions #1
# [4202] Tier 1 and 2 uniques
# [4203] Exceptions #2
# [4204] Multi-Unique bases.
# [4205] Low tier exceptions
# [4206] Tier 3 uniques
# [4207] Tier 4 uniques
# [[4300]] Misc Map Items
# [[4400]] Questlike-Items2
# [[4500]] Hide outdated leveling flasks
# [[4600]] Leveling - Utility Flasks and Tinctures
# [[4700]] Leveling - Life, Mana, Hybrid
# [4701] Hybrid Flasks
# [4702] Life flasks
# [4703] Mana flasks
# [[4800]] Leveling - Rules
# [4801] Links and Sockets
# [4802] Rares - Decorators
# [4803] Rares - Universal
# [4804] Rares - Caster
# [4805] Rares - Archer
# [4806] Rares - Melee
# [4807] Rares - Other
# [[4900]] Leveling - Useful magic and normal items
# [4901] Purpose Picked Items
# [4902] Normals
# [4903] Weapon Progression
# [4904] Remaining Magics
# [4905] Hide All known Section
# [4906] Show All unknown Section
#===============================================================================================================
# [[0100]] Global overriding rules
#===============================================================================================================
# !! Waypoint c0.alpha : "All Rules - Highest priority - DANGER ZONE"
Show # $type->6l $tier->hightier
Mirrored False
Corrupted False
LinkedSockets 6
ItemLevel >= 75
Rarity Normal Magic Rare
BaseType == "Apex Cleaver" "Arcane Vestment" "Assassin's Garb" "Astral Leather" "Banishing Blade" "Battery Staff" "Carnal Armour" "Conquest Lamellar" "Despot Axe" "Destiny Leather" "Eventuality Rod" "Exquisite Leather" "Full Dragonscale" "Full Wyvernscale" "General's Brigandine" "Gladiator Plate" "Glorious Plate" "Grand Ringmail" "Grove Bow" "Harbinger Bow" "Impact Force Propagator" "Imperial Bow" "Ivory Bow" "Legion Plate" "Maraketh Bow" "Marshall's Brigandine" "Necrotic Armour" "Nightweave Robe" "Paladin's Hauberk" "Royal Plate" "Sacred Chainmail" "Sadist Garb" "Saintly Chainmail" "Saint's Hauberk" "Sanguine Raiment" "Short Bow" "Solarine Bow" "Spine Bow" "Supreme Leather" "Syndicate's Garb" "Thicket Bow" "Titan Plate" "Torturer Garb" "Triumphant Lamellar" "Twilight Regalia" "Vaal Regalia" "Zodiac Leather"
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
Show # %D5 $type->6l $tier->others
LinkedSockets 6
Rarity Normal Magic Rare
SetFontSize 45
SetTextColor 0 0 0 255
SetBorderColor 0 0 0 255
SetBackgroundColor 200 0 0 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 1 Red Diamond
#===============================================================================================================
# [[0200]] Gold
#===============================================================================================================
Show # $type->gold $tier->stack3
StackSize >= 3000
BaseType == "Gold"
SetFontSize 45
SetTextColor 235 200 110 255
SetBorderColor 235 200 110 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 2 300
PlayEffect Orange
MinimapIcon 1 Yellow Cross
Show # $type->gold $tier->stack2
StackSize >= 500
BaseType == "Gold"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 20 0 255
PlayEffect Orange Temp
MinimapIcon 1 White Cross
Show # $type->gold $tier->stack1
StackSize >= 150
BaseType == "Gold"
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 20 0 255
MinimapIcon 2 Grey Cross
Show # $type->gold $tier->stacklvl1
StackSize >= 50
BaseType == "Gold"
AreaLevel <= 68
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 20 0 255
MinimapIcon 2 Grey Cross
Show # $type->gold $tier->anyother
BaseType == "Gold"
SetFontSize 35
SetTextColor 180 180 180 255
SetBorderColor 0 0 0 255
SetBackgroundColor 20 20 0 180
MinimapIcon 2 Grey Cross
#===============================================================================================================
# [[0300]] High tier influenced items
#===============================================================================================================
#------------------------------------
# [0301] Influenced Maps
#------------------------------------
Show # $type->maps->influenced $tier->infshaper
HasInfluence Shaper
Rarity Normal Magic 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 Normal Magic 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->infconquerors
HasInfluence Crusader Hunter Redeemer Warlord
Rarity Normal Magic 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
# !! Waypoint c1.infl.all : "All rules - except 6links and influenced maps"
#------------------------------------
# [0302] Common Tier - T1
#------------------------------------
Show # $type->influenced->common $tier->t1_exo
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Rare
BaseType == "Accumulator Wand" "Aetherwind Gloves" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Apprentice Gloves" "Archdemon Crown" "Astrolabe Amulet" "Atonement Mask" "Banishing Blade" "Basemetal Treads" "Battery Staff" "Blasting Blade" "Blizzard Crown" "Boom Mace" "Brimstone Treads" "Capricious Spiritblade" "Cloudwhisper Boots" "Cogwork Ring" "Cold-attuned Buckler" "Composite Ring" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Darksteel Treads" "Demon Crown" "Disapprobation Axe" "Dreamquest Slippers" "Duskwalk Slippers" "Eventuality Rod" "Flashfire Blade" "Focused Amulet" "Foundry Bow" "Gale Crown" "Geodesic Ring" "Guarding Gauntlets" "Heat-attuned Tower Shield" "Helical Ring" "Honed Cleaver" "Imp Crown" "Impact Force Propagator" "Infernal Blade" "Leyline Gloves" "Magmatic Tower Shield" "Malign Fangs" "Manifold Ring" "Mechanical Belt" "Micro-Distillery Belt" "Nexus Gloves" "Nightwind Slippers" "Ornate Quiver" "Oscillating Sceptre" "Penitent Mask" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Preserving Gauntlets" "Pressurised Dagger" "Psychotic Axe" "Ratcheting Ring" "Reciprocation Staff" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets" "Simplex Amulet" "Solarine Bow" "Sorrow Mask" "Stabilising Sceptre" "Stormrider Boots" "Subsuming Spirit Shield" "Thwarting Gauntlets" "Tinker Gloves" "Transfer-attuned Spirit Shield" "Trapsetter Gloves" "Void Fangs" "Windbreak Boots" "Winter Crown"
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 Diamond
#------------------------------------
# [0303] Specialised Tier - T1
#------------------------------------
Show # $type->rare->crusader $tier->t11
HasInfluence Crusader
ItemLevel >= 82
Rarity Rare
BaseType == "Dusk Ring" "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 Diamond
Show # $type->rare->crusader $tier->t12
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType == "Crystal Belt" "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 Diamond
Show # $type->rare->crusader $tier->t13
HasInfluence Crusader
ItemLevel >= 86
Rarity Rare
BaseType == "Cerulean Ring" "Iolite Ring" "Paladin Boots" "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 Diamond
Show # $type->rare->warlord $tier->t11
HasInfluence Warlord
ItemLevel >= 82
Rarity Rare
BaseType == "Iolite 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 Diamond
Show # $type->rare->warlord $tier->t12
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType == "Amethyst Ring" "Dusk Ring" "Runic Hatchet" "Spiked Gloves" "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 Diamond
Show # $type->rare->warlord $tier->t13
HasInfluence Warlord
ItemLevel >= 86
Rarity Rare
BaseType == "Cardinal Round Shield" "Cerulean Ring" "Fugitive Boots" "Gripped Gloves"
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 Diamond
#Show # $type->rare->redeemer $tier->t11
# HasInfluence Redeemer
# ItemLevel >= 82
# Rarity Rare
# 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 Diamond
Show # $type->rare->redeemer $tier->t12
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType == "Dusk Ring" "Fugitive Boots" "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 Diamond
Show # $type->rare->redeemer $tier->t13
HasInfluence Redeemer
ItemLevel >= 86
Rarity Rare
BaseType == "Crystal Belt" "Gripped Gloves" "Opal Ring" "Twilight Regalia" "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 Diamond
#Show # $type->rare->hunter $tier->t11
# HasInfluence Hunter
# ItemLevel >= 82
# Rarity Rare
# 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 Diamond
Show # $type->rare->hunter $tier->t12
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Fugitive Boots" "Iolite Ring" "Spiked Gloves" "Stygian Vise" "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 Diamond
Show # $type->rare->hunter $tier->t13
HasInfluence Hunter
ItemLevel >= 86
Rarity Rare
BaseType == "Artillery Quiver" "Broadhead Arrow Quiver" "Cerulean Ring" "Chimerascale Boots" "Crystal Belt" "Two-Toned Boots" "Vanguard Belt"
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 Diamond
Show # $type->rare->shaper $tier->t11
HasInfluence Shaper
ItemLevel >= 82
Rarity Rare
BaseType == "Colossal Tower Shield" "Fingerless Silk Gloves"
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 Diamond
Show # $type->rare->shaper $tier->t12
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType == "Ezomyte Tower Shield" "Pinnacle Tower Shield" "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 Diamond
Show # $type->rare->shaper $tier->t13
HasInfluence Shaper
ItemLevel >= 86
Rarity Rare
BaseType == "Cardinal Round Shield" "Crystal Belt" "Lacquered Buckler" "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 Diamond
#Show # $type->rare->elder $tier->t11
# HasInfluence Elder
# ItemLevel >= 82
# Rarity Rare
# 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 Diamond
Show # $type->rare->elder $tier->t12
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType == "Conqueror's Helmet" "Fingerless Silk Gloves" "Giantslayer Helmet" "Sacrificial Garb" "Spiked Gloves" "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 Diamond
Show # $type->rare->elder $tier->t13
HasInfluence Elder
ItemLevel >= 86
Rarity Rare
BaseType == "Apothecary's Gloves" "Artillery Quiver" "Cerulean Ring" "Crystal Belt" "General's Helmet" "Iolite Ring" "Reaver Axe" "Royal Burgonet" "Steel Ring" "Vanguard Belt" "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 Diamond
#------------------------------------
# [0304] Common Tier - T2
#------------------------------------
#Show # $type->influenced->common $tier->t2_exo
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# Rarity Rare
# BaseType == "Apothecary's Gloves" "Blue Pearl Amulet" "Bone Helmet" "Cerulean Ring" "Crystal Belt" "Fingerless Silk Gloves" "Fugitive Boots" "Gripped Gloves" "Iolite Ring" "Marble Amulet" "Opal Ring" "Sacrificial Garb" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Two-Toned Boots" "Vanguard Belt" "Vermillion Ring"
# SetFontSize 45
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 20 110 220
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Diamond
#Show # $type->influenced->common $tier->t2_86
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# ItemLevel >= 86
# Rarity Rare
# BaseType == "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Ancient Mask" "Apothecary's Gloves" "Arcane Vestment" "Archon Kite Shield" "Assassin's Boots" "Assassin's Mitts" "Astral Leather" "Blue Pearl Amulet" "Bone Helmet" "Bone Ring" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Cerulean Ring" "Chimerascale Boots" "Chimerascale Gauntlets" "Citrine Amulet" "Colossal Tower Shield" "Conqueror's Helmet" "Conquest Helmet" "Conquest Lamellar" "Convening Wand" "Convoking Wand" "Coral Ring" "Crusader Boots" "Crusader Gloves" "Crystal Belt" "Deicide Mask" "Despot Axe" "Diamond Ring" "Dire Pelt" "Divine Crown" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Faithful Helmet" "Feathered Arrow Quiver" "Fugitive Boots" "Full Wyvernscale" "Gemini Claw" "General's Helmet" "Giantslayer Helmet" "Goliath Greaves" "Grand Ringmail" "Gripped Gloves" "Grizzly Pelt" "Harpyskin Boots" "Harpyskin Gloves" "Haunted Bascinet" "Heavy Belt" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Claw" "Infiltrator Boots" "Infiltrator Mitts" "Iolite Ring" "Jade Amulet" "Jester Mask" "Knight Helm" "Lacquered Buckler" "Lapis Amulet" "Leather Belt" "Legion Boots" "Legion Plate" "Leviathan Gauntlets" "Leviathan Greaves" "Lich's Circlet" "Lion Pelt" "Majestic Pelt" "Marble Amulet" "Marshall's Brigandine" "Martyr Boots" "Martyr Gloves" "Moonlit Circlet" "Murder Boots" "Murder Mitts" "Necrotic Armour" "Nightmare Bascinet" "Nightweave Robe" "Onyx Amulet" "Opal Ring" "Opal Sceptre" "Paladin Boots" "Paladin Crown" "Paladin Gloves" "Paladin's Hauberk" "Phantom Boots" "Phantom Mitts" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Praetor Crown" "Precursor Gauntlets" "Precursor Greaves" "Prismatic Ring" "Profane Wand" "Prophecy Wand" "Reaver Axe" "Royal Burgonet" "Royal Plate" "Ruby Ring" "Sacred Chainmail" "Sage Gloves" "Sage Slippers" "Sanguine Raiment" "Sapphire Ring" "Shagreen Boots" "Short Bow" "Siege Axe" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spine Bow" "Stealth Boots" "Stealth Gloves" "Steel Ring" "Sunfire Circlet" "Supreme Leather" "Syndicate's Garb" "Titan Gauntlets" "Titan Greaves" "Titan Plate" "Titanium Spirit Shield" "Topaz Ring" "Torturer Garb" "Torturer's Mask" "Turquoise Amulet" "Twilight Regalia" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Axe" "Vaal Greaves" "Vaal Mask" "Vanguard Belt" "Velour Boots" "Velour Gloves" "Vermillion Ring" "Void Sceptre" "Warlock Boots" "Warlock Gloves" "Wyrmscale Boots" "Wyvernscale Boots" "Wyvernscale Gauntlets"
# SetFontSize 45
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 20 110 220
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Diamond
#------------------------------------
# [0305] Specialised Tier - T2
#------------------------------------
Show # %D5 $type->rare->crusader $tier->t21
HasInfluence Crusader
ItemLevel >= 80
Rarity Rare
BaseType == "Cerulean Ring" "Dusk Ring" "Iolite Ring" "Opal Ring" "Penumbra Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->crusader $tier->t22
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType == "Ancient Mask" "Cardinal Round Shield" "Colossal Tower Shield" "Conquest Helmet" "Courtesan Sword" "Crystal Belt" "Fingerless Silk Gloves" "Fugitive Boots" "Marble Amulet" "Paladin Boots" "Phantom Mitts" "Profane Wand" "Royal Plate" "Sage Wand" "Seaglass Amulet" "Siege Helmet" "Steel Circlet" "Steel Ring" "Stygian Vise" "Two-Toned Boots" "Vanguard Belt" "Vermillion Ring" "Wyvernscale Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->warlord $tier->t21
HasInfluence Warlord
ItemLevel >= 80
Rarity Rare
BaseType == "Iolite Ring" "Sacrificial Garb" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->warlord $tier->t22
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType == "Amethyst Ring" "Ancient Gauntlets" "Apothecary's Gloves" "Cardinal Round Shield" "Cerulean Ring" "Chimerascale Gauntlets" "Colossal Tower Shield" "Conquest Lamellar" "Courtesan Sword" "Crystal Belt" "Dusk Ring" "Eclipse Staff" "Ezomyte Tower Shield" "Faun's Horn" "Fingerless Silk Gloves" "Fugitive Boots" "Giantslayer Helmet" "Gripped Gloves" "Leviathan Gauntlets" "Leviathan Greaves" "Lich's Circlet" "Martyr Gloves" "Opal Ring" "Pinnacle Tower Shield" "Reaver Axe" "Royal Plate" "Runic Hatchet" "Sage Gloves" "Sapphire Ring" "Spiked Gloves" "Steel Ring" "Steelwood Bow" "Stygian Vise" "Tiger Hook" "Two-Stone Ring" "Unset Ring" "Wyvernscale Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
#Show # %D5 $type->rare->redeemer $tier->t21
# HasInfluence Redeemer
# ItemLevel >= 80
# Rarity Rare
# SetFontSize 45
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 20 110 220
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->redeemer $tier->t22
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType == "Amethyst Ring" "Apothecary's Gloves" "Baroque Round Shield" "Blood Sceptre" "Bone Helmet" "Cardinal Round Shield" "Cerulean Ring" "Chimerascale Boots" "Crystal Belt" "Dusk Ring" "Ebony Tower Shield" "Elegant Round Shield" "Ezomyte Tower Shield" "Fugitive Boots" "Giantslayer Helmet" "Grasping Mail" "Gripped Gloves" "Iolite Ring" "Nightweave Robe" "Opal Ring" "Paladin Gloves" "Pinnacle Tower Shield" "Profane Wand" "Runic Hatchet" "Siege Helmet" "Spiny Round Shield" "Steel Circlet" "Steel Ring" "Stygian Vise" "Terror Maul" "Twilight Regalia" "Twin Claw" "Vanguard Belt" "Vermillion Ring" "Wyvernscale Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->hunter $tier->t21
HasInfluence Hunter
ItemLevel >= 80
Rarity Rare
BaseType == "Two-Toned Boots"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->hunter $tier->t22
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType == "Amethyst Ring" "Apothecary's Gloves" "Artillery Quiver" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Cerulean Ring" "Chimerascale Boots" "Colossal Tower Shield" "Conquest Lamellar" "Crystal Belt" "Divine Crown" "Exquisite Blade" "Ezomyte Tower Shield" "Faun's Horn" "Fingerless Silk Gloves" "Fugitive Boots" "Giantslayer Helmet" "Gripped Gloves" "Heathen Wand" "Infernal Sword" "Iolite Ring" "Lich's Circlet" "Lion Sword" "Majestic Pelt" "Marble Amulet" "Marshall's Brigandine" "Paladin Boots" "Reaver Axe" "Reaver Sword" "Runic Hatchet" "Spiked Gloves" "Steel Ring" "Steelwood Bow" "Stygian Vise" "Sunfire Circlet" "Turquoise Amulet" "Vaal Greatsword" "Vanguard Belt" "Velour Boots" "Vermillion Ring" "Wyvernscale Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->shaper $tier->t21
HasInfluence Shaper
ItemLevel >= 80
Rarity Rare
BaseType == "Cardinal Round Shield" "Colossal Tower Shield" "Fingerless Silk Gloves" "Iolite Ring" "Lacquered Buckler" "Steel Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->shaper $tier->t22
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType == "Blue Pearl Amulet" "Bone Helmet" "Calling Wand" "Cerulean Ring" "Crested Tower Shield" "Crusader Buckler" "Crystal Belt" "Ebony Tower Shield" "Elegant Round Shield" "Ezomyte Tower Shield" "Girded Tower Shield" "Imperial Buckler" "Mahogany Tower Shield" "Pinnacle Tower Shield" "Reaver Sword" "Shagreen Tower Shield" "Spiked Gloves" "Stygian Vise" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->elder $tier->t21
HasInfluence Elder
ItemLevel >= 80
Rarity Rare
BaseType == "Opal Ring" "Royal Burgonet" "Steel Ring" "Vanguard Belt" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
Show # %D5 $type->rare->elder $tier->t22
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Artillery Quiver" "Bone Helmet" "Cardinal Round Shield" "Cerulean Ring" "Conqueror's Helmet" "Conquest Lamellar" "Crystal Belt" "Eternal Burgonet" "Ezomyte Burgonet" "Fingerless Silk Gloves" "Fugitive Boots" "General's Helmet" "Giantslayer Helmet" "Haunted Bascinet" "Iolite Ring" "Leviathan Greaves" "Lich's Circlet" "Pagan Wand" "Profane Wand" "Reaver Axe" "Reaver Helmet" "Sacrificial Garb" "Samnite Helmet" "Siege Helmet" "Spiked Gloves" "Stygian Vise" "Wyvernscale Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Diamond
#------------------------------------
# [0306] Remaining
#------------------------------------
Show # %D4 $type->rare->any $tier->anytrinket
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Rare
Class == "Amulets" "Belts" "Rings"
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D4 $type->rare->any $tier->anytoplevel
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 86
Rarity Rare
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 50 200 50 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D3 $type->rare->any $tier->any
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Normal Magic Rare
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
#===============================================================================================================
# [[0400]] ELDRITCH ITEMS
#===============================================================================================================
# !! Waypoint c1.eldritch.all : "Eldritch Items - Exarch and Eater"
Show # %D3 $type->rare->exarch $tier->anyhigh
HasSearingExarchImplicit >= 1
Rarity Normal Magic Rare
BaseType == "Ancient Mask" "Assassin's Mitts" "Chimerascale Boots" "Chimerascale Gauntlets" "Conqueror's Helmet" "Conquest Helmet" "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dire Pelt" "Divine Crown" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Faithful Helmet" "General's Helmet" "Giantslayer Helmet" "Grizzly Pelt" "Harpyskin Boots" "Harpyskin Gloves" "Haunted Bascinet" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Infiltrator Boots" "Infiltrator Mitts" "Jester Mask" "Knight Helm" "Leviathan Gauntlets" "Leviathan Greaves" "Lich's Circlet" "Lion Pelt" "Majestic Pelt" "Martyr Boots" "Martyr Gloves" "Moonlit Circlet" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Paladin Boots" "Paladin Crown" "Paladin Gloves" "Phantom Boots" "Phantom Mitts" "Pig-Faced Bascinet" "Praetor Crown" "Precursor Gauntlets" "Precursor Greaves" "Sage Gloves" "Sage Slippers" "Shagreen Gloves" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Stealth Boots" "Stealth Gloves" "Sunfire Circlet" "Titan Gauntlets" "Titan Greaves" "Torturer's Mask" "Vaal Gauntlets" "Vaal Greaves" "Velour Boots" "Velour Gloves" "Warlock Boots" "Warlock Gloves" "Wyrmscale Gauntlets" "Wyvernscale Boots" "Wyvernscale Gauntlets"
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D1 $type->rare->exarch $tier->any
HasSearingExarchImplicit >= 1
Rarity Normal Magic Rare
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D3 $type->rare->eater $tier->anyhigh
HasEaterOfWorldsImplicit >= 1
Rarity Normal Magic Rare
BaseType == "Ancient Mask" "Assassin's Mitts" "Chimerascale Boots" "Chimerascale Gauntlets" "Conqueror's Helmet" "Conquest Helmet" "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dire Pelt" "Divine Crown" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Faithful Helmet" "General's Helmet" "Giantslayer Helmet" "Grizzly Pelt" "Harpyskin Boots" "Harpyskin Gloves" "Haunted Bascinet" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Infiltrator Boots" "Infiltrator Mitts" "Jester Mask" "Knight Helm" "Leviathan Gauntlets" "Leviathan Greaves" "Lich's Circlet" "Lion Pelt" "Majestic Pelt" "Martyr Boots" "Martyr Gloves" "Moonlit Circlet" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Paladin Boots" "Paladin Crown" "Paladin Gloves" "Phantom Boots" "Phantom Mitts" "Pig-Faced Bascinet" "Praetor Crown" "Precursor Gauntlets" "Precursor Greaves" "Sage Gloves" "Sage Slippers" "Shagreen Gloves" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Stealth Boots" "Stealth Gloves" "Sunfire Circlet" "Titan Gauntlets" "Titan Greaves" "Torturer's Mask" "Vaal Gauntlets" "Vaal Greaves" "Velour Boots" "Velour Gloves" "Warlock Boots" "Warlock Gloves" "Wyrmscale Gauntlets" "Wyvernscale Boots" "Wyvernscale Gauntlets"
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D1 $type->rare->eater $tier->any
HasEaterOfWorldsImplicit >= 1
Rarity Normal Magic Rare
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
#===============================================================================================================
# [[0500]] Exotic Bases
#===============================================================================================================
# !! Waypoint c1.exotic.all : "Exotic - Expedition, exotic Talismans, Sacrificial garbs"
# 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 Normal Magic Rare
BaseType == "Accumulator Wand" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Astrolabe Amulet" "Banishing Blade" "Battery Staff" "Blasting Blade" "Boom Mace" "Capricious Spiritblade" "Cogwork Ring" "Cold-attuned Buckler" "Composite Ring" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Disapprobation Axe" "Eventuality Rod" "Flashfire Blade" "Focused Amulet" "Foundry Bow" "Geodesic Ring" "Heat-attuned Tower Shield" "Helical Ring" "Honed Cleaver" "Impact Force Propagator" "Infernal Blade" "Magmatic Tower Shield" "Malign Fangs" "Manifold Ring" "Mechalarm Belt" "Mechanical Belt" "Micro-Distillery Belt" "Oscillating Sceptre" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Psychotic Axe" "Ratcheting Ring" "Reciprocation Staff" "Simplex Amulet" "Solarine Bow" "Stabilising Sceptre" "Subsuming Spirit Shield" "Transfer-attuned Spirit Shield" "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 Normal Magic Rare
BaseType == "Aetherwind Gloves" "Apprentice Gloves" "Archdemon Crown" "Atonement Mask" "Basemetal Treads" "Blizzard Crown" "Brimstone Treads" "Cloudwhisper Boots" "Darksteel Treads" "Demon Crown" "Dreamquest Slippers" "Duskwalk Slippers" "Gale Crown" "Guarding Gauntlets" "Imp Crown" "Leyline Gloves" "Nexus Gloves" "Nightwind Slippers" "Penitent Mask" "Preserving Gauntlets" "Sorrow Mask" "Stormrider Boots" "Thwarting Gauntlets" "Tinker Gloves" "Trapsetter Gloves" "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->exoticlakekala
Rarity Normal Magic Rare
BaseType == "Dusk Ring" "Gloam Ring" "Penumbra Ring" "Shadowed Ring" "Tenebrous Ring"
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 # %D5 $type->exoticbases $tier->exoticexpeditionbases
Rarity Normal Magic Rare
BaseType == "Iron Flask" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets"
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 $artefactex
Rarity Normal Magic 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 Normal Magic 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
Show # $type->exoticbases $tier->exoticuniquebases
Rarity Normal Magic Rare
BaseType == "Nameless Ring" "Ornate Quiver" "Prismatic Jewel" "Ring" "Ruby Amulet" "Unset Amulet"
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 # %D6 $type->exoticbaseslower $tier->stygian86
Mirrored False
Corrupted False
ItemLevel >= 86
Rarity Normal Magic Rare
BaseType == "Stygian Vise"
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 # %D5 $type->exoticbaseslower $tier->stygian
Mirrored False
Corrupted False
Rarity Normal Magic Rare
BaseType == "Stygian Vise"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
Show # %D6 $type->exoticbaseslower $tier->exoticsacrificial
Mirrored False
Corrupted False
Rarity Normal Magic Rare
BaseType == "Sacrificial Garb"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#===============================================================================================================
# [[0600]] IDENTIFIED MOD FILTERING - COMBINATIONS
#===============================================================================================================
# !! Waypoint c1.idmod.all : "Identified Mods - Best Veiled mods and combinations of expensive ID mods"
#------------------------------------
# [0601] ID Mod exceptions - override id mod matching section
#------------------------------------
Show # %DS5 $type->exoticmods $tier->t1veil