forked from NeverSinkDev/NeverSink-Filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeverSink's filter - 0-SOFT.filter
9541 lines (8544 loc) · 397 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.10.3
# 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
#
#------------------------------------
# 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]] High tier influenced items
# [0201] Influenced Maps
# [0202] Common Tier - T1
# [0203] Specialised Tier - T1
# [0204] Common Tier - T2
# [0205] Specialised Tier - T2
# [0206] Remaining
# [[0300]] ELDRITCH ITEMS
# [[0400]] Exotic Bases
# [[0500]] IDENTIFIED MOD FILTERING - COMBINATIONS
# [0501] ID Mod exceptions - override id mod matching section
# [0502] Physical
# [0503] Elemental
# [0504] Gembased
# [0505] Caster
# [0506] Spellslinger
# [0507] Helmets
# [0508] Boots
# [0509] Gloves
# [0510] Shields
# [0511] Amulets
# [0512] Rings
# [0513] Quivers
# [0514] Body Armours
# [0515] Belts
# [0516] Jewels
# [[0600]] IDENTIFIED MOD FILTERING - SINGLE MODS
# [0601] Top Value
# [0602] Uncorrupted Mods
# [0603] Multiple Mods
# [[0700]] IDENTIFIED MOD - CORRUPTED ITEMS
# [[0800]] Exotic Mods Filtering
# [0801] Veiled/Betrayal - low prio veiled items
# [0802] Incursion/Temple Mods
# [0803] Bestiary
# [0804] Other
# [[0900]] Exotic Item Classes
# [0901] Voidstones
# [0902] Trinkets
# [0903] Secret Society Equipment
# [0904] Pieces
# [0905] Craftable Invitations
# [0906] Relics
# [[1000]] Exotic Item Variations
# [1001] Double Corruptions
# [1002] Specific Single Corruptions
# [1003] Abyss Jeweled Rares
# [1004] Synthesised
# [1005] Fractured
# [1006] Enchanted
# [1007] Crucible
# [[1100]] Recipes and 5links
# [1101] Link Based
# [[1200]] High Level Crafting Bases
# [1201] Expensive Atlas 86 Bases - matched by economy
# [1202] Perfection-Based-Filtering
# [1203] ILVL 86
# [1204] ILVL 84
# [1205] ILVL ANY
# [1206] Early Endgame Crafting projects
# [1207] RGB Endgame
# [1208] Chisel Recipes
# [[1300]] Chancing Bases
# [[1400]] Endgame Flasks
# [1401] Endgame Flasks
# [1402] Quality High
# [1403] Utility OR quality flasks
# [1404] Quality Low
# [1405] Early mapping life/mana/utility flasks
# [[1500]] Misc Rules
# [[1600]] Hide Layer 1 - Normal and Magic Endgame Gear
# [[1700]] Rare Item Decorators
# [[1800]] Endgame - Rare - Exotic Corrupted Items
# [[1900]] Endgame - Rare - Accessoires
# [[2000]] Endgame - Rare - Accessoires
# [[2100]] Endgame - Rare - Gear - T1 - handpicked
# [[2200]] Endgame - Rare - Gear - T2 - handpicked
# [[2300]] Endgame - Rare - Gear - T2 - handpicked
# [[2400]] Endgame - Rare - Gear - T3 - droplevel-based
# [[2500]] Endgame - Rare - Gear - T4 - rest
# [[2600]] Hide Layer 2 - Rare Gear
# [[2700]] Jewels
# [2701] Special Cases
# [2702] Leveling Exceptions
# [2703] Abyss Jewels
# [2704] Generic Jewels
# [2705] Cluster Jewels: Eco-Based-Large
# [2706] Cluster Jewels: Random
# [[2800]] Heist Gear
# [2801] Heist Cloak
# [2802] Heist Brooch
# [2803] Heist Gear
# [2804] Heist Tool
# [[2900]] Gem Tierlists
# [2901] Exceptional Gems - Awakened and AltQuality
# [2902] Exceptional Gems - Special gems
# [2903] High Quality and Leveled Gems
# [[3000]] REPLICA UNIQUES
# [[3100]] Special Maps
# [3101] Unique Maps
# [3102] Blighted maps
# [3103] Delirium/Blight/Enchanted Maps!
# [3104] Beyond-Nemesis Maps, for those juicy sextants.
# [[3200]] Normal Map Progression
# [3201] Generic Decorators
# [3202] Map progression
# [[3300]] Pseudo-Map-Items
# [[3400]] Fragments
# [3401] Exceptions
# [3402] Scarabs
# [3403] Regular Fragment Tiering
# [[3500]] Currency - Exceptions - Leveling Currencies
# [[3600]] Currency - Exceptions - Stacked Currency
# [3601] Supplies: High Stacking
# [3602] Supplies: Low Stacking
# [3603] Supplies: Portal Stacking
# [3604] Supplies: Wisdom Stacking
# [3605] Stacked Currencies: 6x
# [3606] Stacked Currencies: 3x
# [3607] Heist Coins
# [[3700]] Currency - Regular Currency Tiering
# [[3800]] Currency - SPECIAL
# [3801] Incursion - Vials
# [3802] Delirum Orbs
# [3803] Delve - Resonators
# [3804] Delve - Fossils
# [3805] Blight - Oils
# [3806] Essences
# [3807] Incubators
# [3808] Invocations
# [3809] Crucible
# [3810] Others
# [[3900]] Currency - Splinters
# [3901] Breach and Legion Splinters - stacked
# [3902] Breach and Legion Splinters - single
# [3903] Simulacrum Splinters
# [[4000]] Divination Cards
# [[4100]] Remaining Currency
# [[4200]] Questlike-Items1 (override uniques)
# [[4300]] Uniques
# [4301] Exceptions #1
# [4302] Tier 1 and 2 uniques
# [4303] Exceptions #2
# [4304] Multi-Unique bases.
# [4305] Low tier exceptions
# [4306] Tier 3 uniques
# [4307] Tier 4 uniques
# [[4400]] Misc Map Items
# [[4500]] Questlike-Items2
# [[4600]] Hide outdated leveling flasks
# [[4700]] Leveling - Flasks
# [4701] Utility Flasks
# [4702] Hybrid flasks
# [4703] Life flasks
# [4704] Mana flasks
# [[4800]] Leveling - Rules
# [4801] Links and Sockets
# [4802] Rares - Decorators
# [4803] Rares - Universal
# [4804] Rares - Caster
# [4805] Rares - Archer
# [4806] Rares - Melee
# [[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
#===============================================================================================================
# !! Chapter "High Priority Rules"
# !! Override 010 : "ALL Rules"
Show # $type->6l $tier->arm
Corrupted False
LinkedSockets 6
Rarity Normal Magic Rare
Class "Body Armours"
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 # $type->6l $tier->wep
LinkedSockets 6
Rarity Normal Magic 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 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
#------------------------------------
# [0202] 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" "Archdemon Crown" "Assembler Wand" "Astrolabe Amulet" "Atonement Mask" "Banishing Blade" "Basemetal Treads" "Battery Staff" "Blasting Blade" "Blizzard Crown" "Blunt Force Condenser" "Boom Mace" "Brimstone Treads" "Capacity Rod" "Capricious Spiritblade" "Cloudwhisper Boots" "Cogwork Ring" "Cold-attuned Buckler" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Darksteel Treads" "Debilitation Gauntlets" "Demon Crown" "Disapprobation Axe" "Dreamquest Slippers" "Duskwalk Slippers" "Endothermic Buckler" "Eventuality Rod" "Exhausting Spirit Shield" "Exothermic Tower Shield" "Fickle Spiritblade" "Flare Mace" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Gale Crown" "Gauche Gloves" "Geodesic Ring" "Gruelling Gauntlets" "Heat-attuned Tower Shield" "Hedron Bow" "Hollowpoint Dagger" "Honed Cleaver" "Imp Crown" "Impact Force Propagator" "Infernal Blade" "Leyline Gloves" "Magmatic Tower Shield" "Malign Fangs" "Maltreatment Axe" "Mechalarm Belt" "Micro-Distillery Belt" "Nexus Gloves" "Nightwind Slippers" "Ornate Quiver" "Oscillating Sceptre" "Penitent Mask" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Prime Cleaver" "Psychotic Axe" "Rebuking Blade" "Reciprocation Staff" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets" "Shadow Fangs" "Simplex Amulet" "Sinistral Gloves" "Solarine Bow" "Sorrow Mask" "Southswing Gloves" "Stabilising Sceptre" "Stormrider Boots" "Subsuming Spirit Shield" "Taxing Gauntlets" "Transfer-attuned Spirit Shield" "Transformer Staff" "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 Cross
#------------------------------------
# [0203] Specialised Tier - T1
#------------------------------------
Show # $type->rare->crusader $tier->t11
HasInfluence Crusader
ItemLevel >= 82
Rarity Rare
BaseType "Crystal Belt" "Dusk 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->crusader $tier->t12
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType "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->crusader $tier->t13
HasInfluence Crusader
ItemLevel >= 86
Rarity Rare
BaseType "Artillery Quiver" "Fugitive Boots" "Iolite Ring" "Marble Amulet" "Seaglass Amulet" "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->warlord $tier->t11
HasInfluence Warlord
ItemLevel >= 82
Rarity Rare
BaseType "Steel Ring" "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 Cross
Show # $type->rare->warlord $tier->t12
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType "Dusk Ring" "Opal Ring" "Sacrificial Garb" "Spiked 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 Cross
Show # $type->rare->warlord $tier->t13
HasInfluence Warlord
ItemLevel >= 86
Rarity Rare
BaseType "Apothecary's Gloves" "Artillery Quiver" "Crystal Belt" "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 Cross
Show # $type->rare->redeemer $tier->t11
HasInfluence Redeemer
ItemLevel >= 82
Rarity Rare
BaseType "Fugitive Boots" "Opal Ring" "Sacrificial Garb" "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->redeemer $tier->t12
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType "Dusk 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->redeemer $tier->t13
HasInfluence Redeemer
ItemLevel >= 86
Rarity Rare
BaseType "Blue Pearl Amulet" "Gripped Gloves" "Seaglass Amulet" "Spiraled Wand" "Steel Ring" "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->hunter $tier->t11
HasInfluence Hunter
ItemLevel >= 82
Rarity Rare
BaseType "Artillery Quiver" "Broadhead Arrow Quiver" "Fugitive Boots" "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 Cross
Show # $type->rare->hunter $tier->t12
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType "Crystal Belt" "Iolite Ring" "Opal Ring" "Sacrificial Garb" "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->t13
HasInfluence Hunter
ItemLevel >= 86
Rarity Rare
BaseType "Apothecary's Gloves" "Gripped Gloves" "Steel Ring" "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->t11
# HasInfluence Shaper
# 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 Cross
Show # $type->rare->shaper $tier->t12
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType "Sacrificial Garb" "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->shaper $tier->t13
# HasInfluence Shaper
# ItemLevel >= 86
# 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 Cross
#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 Cross
Show # $type->rare->elder $tier->t12
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType "Sacrificial Garb" "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->elder $tier->t13
HasInfluence Elder
ItemLevel >= 86
Rarity Rare
BaseType "Bone Helmet" "Elegant Ringmail" "Engraved Hatchet" "Fingerless Silk Gloves" "Iolite Ring" "Ochre Sceptre" "Royal Burgonet"
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
#------------------------------------
# [0204] 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 Cross
#Show # $type->influenced->common $tier->t2_86
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# ItemLevel >= 84
# Rarity Rare
# BaseType "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Ancient Greaves" "Apothecary's Gloves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Artillery Quiver" "Assassin's Boots" "Assassin's Mitts" "Blue Pearl Amulet" "Bone Helmet" "Bone Ring" "Broadhead Arrow Quiver" "Bronzescale Boots" "Calling Wand" "Cardinal Round Shield" "Cerulean Ring" "Champion Kite Shield" "Citadel Bow" "Citrine Amulet" "Colossal Tower Shield" "Conjurer Boots" "Convening Wand" "Convoking Wand" "Copper Kris" "Coral Ring" "Crusader Boots" "Crusader Buckler" "Crusader Gloves" "Crystal Belt" "Deicide Mask" "Demon's Horn" "Despot Axe" "Diamond Ring" "Dragonscale Boots" "Dragonscale Gauntlets" "Eclipse Staff" "Elegant Round Shield" "Eternal Burgonet" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fencer Helm" "Fiend Dagger" "Fingerless Silk Gloves" "Fluted Bascinet" "Fossilised Spirit Shield" "Fugitive Boots" "Full Dragonscale" "Gemini Claw" "Golden Kris" "Goliath Gauntlets" "Goliath Greaves" "Gripped Gloves" "Harmonic Spirit Shield" "Heavy Arrow Quiver" "Heavy Belt" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Iolite Ring" "Jade Amulet" "Jewelled Foil" "Lacquered Buckler" "Lacquered Helmet" "Lapis Amulet" "Leather Belt" "Legion Boots" "Legion Gloves" "Lion Pelt" "Maraketh Bow" "Marble Amulet" "Mind Cage" "Mirrored Spiked Shield" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Onyx Amulet" "Opal Ring" "Opal Sceptre" "Opal Wand" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Platinum Kris" "Praetor Crown" "Primal Arrow Quiver" "Prismatic Ring" "Profane Wand" "Prophecy Wand" "Royal Burgonet" "Ruby Ring" "Rustic Sash" "Saintly Chainmail" "Sambar Sceptre" "Sapphire Ring" "Seaglass Amulet" "Serpentscale Boots" "Serpentscale Gauntlets" "Shagreen Boots" "Sharkskin Boots" "Short Bow" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Soldier Boots" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spine Bow" "Stealth Boots" "Stealth Gloves" "Steel Ring" "Steelscale Boots" "Steelscale Gauntlets" "Stygian Vise" "Supreme Spiked Shield" "Thicket Bow" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Tornado Wand" "Triumphant Lamellar" "Turquoise Amulet" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Gauntlets" "Vaal Greaves" "Vaal Mask" "Vaal Regalia" "Vaal Sceptre" "Vaal Spirit Shield" "Vanguard Belt" "Vermillion Ring" "Void Sceptre" "Wyrmscale Boots" "Wyrmscale 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 Cross
#------------------------------------
# [0205] Specialised Tier - T2
#------------------------------------
Show # %D5 $type->rare->crusader $tier->t21
HasInfluence Crusader
ItemLevel >= 80
Rarity Rare
BaseType "Amethyst Ring" "Crystal Belt" "Dusk Ring" "Fugitive Boots" "Iolite Ring" "Lapis Amulet" "Marble Amulet" "Moonstone Ring" "Opal Ring" "Penetrating Arrow Quiver" "Penumbra Ring" "Sambar Sceptre" "Sorcerer Boots" "Spiked Gloves" "Spike-Point Arrow Quiver" "Steel Kite Shield" "Steel Ring" "Steelwood Bow" "Stygian Vise" "Turquoise Amulet" "Unset Ring" "Vanguard Belt"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->crusader $tier->t22
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType "Agate Amulet" "Apothecary's Gloves" "Artillery Quiver" "Behemoth Mace" "Blazing Arrow Quiver" "Blood Raiment" "Bone Helmet" "Bronze Tower Shield" "Cardinal Round Shield" "Cerulean Ring" "Conjurer's Vestment" "Corrugated Buckler" "Crimson Raiment" "Crusader Buckler" "Crystal Sceptre" "Engraved Wand" "Exquisite Blade" "Ezomyte Blade" "Faun's Horn" "Fire Arrow Quiver" "Girded Tower Shield" "Glorious Leather" "Golden Kris" "Grasping Mail" "Gripped Gloves" "Harmonic Spirit Shield" "Heathen Wand" "Imperial Staff" "Midnight Blade" "Mosaic Kite Shield" "Nightmare Mace" "Paua Amulet" "Reaver Sword" "Royal Skean" "Sacrificial Garb" "Sage Wand" "Seaglass Amulet" "Sekhem" "Sharkskin Gloves" "Stag Sceptre" "Talon Axe" "Titanium Spirit Shield" "Twin Claw" "Two-Stone Ring" "Two-Toned Boots" "Vaal Regalia" "Vermillion Ring" "Vile Arrow Quiver" "Wraith Sword"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->warlord $tier->t21
HasInfluence Warlord
ItemLevel >= 80
Rarity Rare
BaseType "Amethyst Ring" "Antique Gauntlets" "Apothecary's Gloves" "Cerulean Ring" "Eternal Burgonet" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Fugitive Boots" "Highborn Staff" "Iolite Ring" "Onyx Amulet" "Royal Sceptre" "Runic Hatchet" "Steel Ring" "Stygian Vise" "Topaz Ring" "Two-Stone Ring" "Unset Ring" "Vermillion Ring" "Vile Arrow Quiver" "Wyrmscale 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 Cross
Show # %D5 $type->rare->warlord $tier->t22
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType "Agate Amulet" "Amber Amulet" "Artillery Quiver" "Baroque Round Shield" "Blazing Arrow Quiver" "Blue Pearl Amulet" "Bone Helmet" "Branded Kite Shield" "Broadhead Arrow Quiver" "Bronze Tower Shield" "Butcher Axe" "Calling Wand" "Chain Hauberk" "Citrine Amulet" "Coral Amulet" "Coral Ring" "Crystal Belt" "Crystal Sceptre" "Despot Axe" "Dragonscale Gauntlets" "Dusk Ring" "Ezomyte Staff" "Faun's Horn" "Fossilised Spirit Shield" "Grappler" "Grinning Fetish" "Gripped Gloves" "Harpy Rapier" "Heathen Wand" "Infernal Axe" "Jade Amulet" "Lapis Amulet" "Lithe Blade" "Marble Amulet" "Moonstone Ring" "Opal Ring" "Pagan Wand" "Regicide Mask" "Royal Burgonet" "Ruby Ring" "Sapphire Ring" "Satin Gloves" "Seaglass Amulet" "Sekhem" "Shadow Sceptre" "Shagreen Gloves" "Sharktooth Arrow Quiver" "Slink Gloves" "Spiked Gloves" "Steel Kite Shield" "Talon Axe" "Thorium Spirit Shield" "Tiger Hook" "Turquoise Amulet" "Twin Claw" "Two-Toned Boots" "Vaal Axe" "Void Axe" "Zealot Boots" "Zealot Gloves" "Zealot Helmet"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->redeemer $tier->t21
HasInfluence Redeemer
ItemLevel >= 80
Rarity Rare
BaseType "Agate Amulet" "Ambush Boots" "Amethyst Ring" "Bone Ring" "Broadhead Arrow Quiver" "Citrine Amulet" "Crystal Belt" "Fugitive Boots" "Jade Amulet" "Lapis Amulet" "Opal Ring" "Phantom Mace" "Slink Boots" "Stygian Vise" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Regalia" "Vile Arrow Quiver"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->redeemer $tier->t22
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType "Amber Amulet" "Ambusher" "Angelic Kite Shield" "Apothecary's Gloves" "Archon Kite Shield" "Artillery Quiver" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Bronze Tower Shield" "Butcher Axe" "Cerulean Ring" "Colossal Tower Shield" "Corrugated Buckler" "Courtesan Sword" "Desert Brigandine" "Dragon Mace" "Dragonscale Boots" "Dusk Ring" "Engraved Hatchet" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fencer Helm" "Fingerless Silk Gloves" "Gemstone Sword" "Gold Amulet" "Grasping Mail" "Gripped Gloves" "Harpy Rapier" "Highborn Bow" "Imperial Buckler" "Infernal Axe" "Iolite Ring" "Ivory Bow" "Karui Axe" "Karui Maul" "Lathi" "Lithe Blade" "Maraketh Bow" "Nightmare Mace" "Noble Tricorne" "Ornate Ringmail" "Pagan Wand" "Paua Amulet" "Prehistoric Claw" "Primal Arrow Quiver" "Primeval Rapier" "Ritual Sceptre" "Ruby Ring" "Sage Wand" "Sambar Sceptre" "Seaglass Amulet" "Serrated Arrow Quiver" "Shagreen Boots" "Sinner Tricorne" "Spiked Gloves" "Spiraled Wand" "Stag Sceptre" "Steel Ring" "Talon Axe" "Teak Round Shield" "Tiger Hook" "Titan Greaves" "Titanium Spirit Shield" "Two-Point Arrow Quiver" "Vaal Rapier" "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 Cross
Show # %D5 $type->rare->hunter $tier->t21
HasInfluence Hunter
ItemLevel >= 80
Rarity Rare
BaseType "Agate Amulet" "Amethyst Ring" "Artillery Quiver" "Astral Plate" "Blazing Arrow Quiver" "Broadhead Arrow Quiver" "Citrine Amulet" "Crimson Raiment" "Dragonscale Gauntlets" "Engraved Wand" "Feathered Arrow Quiver" "Fingerless Silk Gloves" "Fire Arrow Quiver" "Fugitive Boots" "Grasping Mail" "Heavy Arrow Quiver" "Hubris Circlet" "Imperial Buckler" "Jade Amulet" "Marble Amulet" "Moonstone Ring" "Onyx Amulet" "Opal Ring" "Penetrating Arrow Quiver" "Primal Arrow Quiver" "Ruby Ring" "Sapphire Ring" "Slink Boots" "Sorcerer Boots" "Spiked Gloves" "Spike-Point Arrow Quiver" "Stygian Vise" "Topaz Ring" "Two-Point Arrow Quiver" "Two-Stone Ring" "Unset Ring" "Vaal Regalia" "Vile Arrow Quiver"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->hunter $tier->t22
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType "Amber Amulet" "Ambusher" "Ancient Gauntlets" "Antique Gauntlets" "Antique Greaves" "Apothecary's Gloves" "Assassin's Garb" "Behemoth Mace" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Bone Ring" "Butcher Axe" "Calling Wand" "Cardinal Round Shield" "Cerulean Ring" "Colossal Tower Shield" "Coral Amulet" "Corrugated Buckler" "Crusader Chainmail" "Crystal Belt" "Cutthroat's Garb" "Fencer Helm" "Frontier Leather" "Gavel" "Gladius" "Glorious Leather" "Golden Buckler" "Gripped Gloves" "Harmonic Spirit Shield" "Heavy Belt" "Hellion's Paw" "Hunter Hood" "Hussar Brigandine" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Claw" "Iolite Ring" "Iron Ring" "Ivory Spirit Shield" "Lacquered Buckler" "Laminated Kite Shield" "Lapis Amulet" "Leather Belt" "Lion Sword" "Lithe Blade" "Maraketh Bow" "Necromancer Silks" "Ornate Mace" "Ritual Sceptre" "Royal Burgonet" "Sai" "Satin Gloves" "Seaglass Amulet" "Serrated Arrow Quiver" "Shagreen Gloves" "Sharktooth Arrow Quiver" "Slink Gloves" "Solar Maul" "Spine Bow" "Spiny Round Shield" "Stag Sceptre" "Stealth Boots" "Stealth Gloves" "Steel Kite Shield" "Steel Ring" "Steelwood Bow" "Sun Plate" "Talon Axe" "Thicket Bow" "Titan Greaves" "Triumphant Lamellar" "Turquoise Amulet" "Twin Claw" "Two-Toned Boots" "Vaal Claw" "Vaal Gauntlets" "Vaal Greaves" "Vanguard Belt" "Vermillion Ring" "Wyrmscale Boots" "Zealot Boots" "Zealot Helmet" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->shaper $tier->t21
HasInfluence Shaper
ItemLevel >= 80
Rarity Rare
BaseType "Broadhead Arrow Quiver" "Crested Tower Shield" "Crusader Buckler" "Crystal Belt" "Ezomyte Tower Shield" "Fossilised Spirit Shield" "Harpy Rapier" "Marble Amulet" "Pinnacle Tower Shield" "Spine Bow" "Steel Kite Shield" "Steel Ring" "Titanium Spirit Shield" "Turquoise Amulet" "Vermillion Ring" "Vile Arrow Quiver"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->shaper $tier->t22
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Apex Rapier" "Apothecary's Gloves" "Artillery Quiver" "Battle Buckler" "Blue Pearl Amulet" "Bone Helmet" "Bronze Tower Shield" "Carved Wand" "Chiming Spirit Shield" "Citrine Amulet" "Colossal Tower Shield" "Enameled Buckler" "Faun's Horn" "Fingerless Silk Gloves" "Flanged Mace" "Fugitive Boots" "Gold Amulet" "Gripped Gloves" "Horned Sceptre" "Imperial Buckler" "Iolite Ring" "Iron Sceptre" "Lacewood Spirit Shield" "Moon Staff" "Ochre Sceptre" "Opal Ring" "Pagan Wand" "Prismatic Ring" "Ritual Sceptre" "Royal Burgonet" "Sambar Sceptre" "Sovereign Spiked Shield" "Spiked Gloves" "Stygian Vise"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->elder $tier->t21
HasInfluence Elder
ItemLevel >= 80
Rarity Rare
BaseType "Crystal Belt" "Eternal Burgonet" "Ezomyte Burgonet" "Fugitive Boots" "Gripped Gloves" "Maraketh Bow" "Opal Ring" "Royal Burgonet" "Sage Wand" "Sorcerer Boots" "Steel Ring" "Titan Greaves" "Vermillion Ring" "Vile Arrow Quiver"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->elder $tier->t22
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType "Amethyst Ring" "Apothecary's Gloves" "Artillery Quiver" "Assassin's Garb" "Behemoth Mace" "Bone Helmet" "Boot Blade" "Broadhead Arrow Quiver" "Calling Wand" "Cerulean Ring" "Chest Splitter" "Commander's Brigandine" "Courtesan Sword" "Dragon Mace" "Eelskin Tunic" "Elegant Ringmail" "Engraved Hatchet" "Engraved Wand" "Exquisite Blade" "Fingerless Silk Gloves" "Fleshripper" "Full Wyrmscale" "General's Brigandine" "Heathen Wand" "Hunter Hood" "Hussar Brigandine" "Iolite Ring" "Ivory Spirit Shield" "Lapis Amulet" "Lithe Blade" "Marble Amulet" "Moon Staff" "Ochre Sceptre" "Poignard" "Prismatic Ring" "Raven Mask" "Reinforced Greaves" "Royal Axe" "Royal Sceptre" "Runic Hatchet" "Secutor Helm" "Serpentine Staff" "Shadow Sceptre" "Spiked Gloves" "Steel Kite Shield" "Stygian Vise" "Tiger's Paw" "Two-Toned Boots" "Wraith Axe"
SetFontSize 45
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0206] 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 # %D3 $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
#===============================================================================================================
# [[0300]] ELDRITCH ITEMS
#===============================================================================================================
# !! Override 045 : "eldritch items"
Show # %D3 $type->rare->exarch $tier->anyhigh
HasSearingExarchImplicit >= 2
Rarity Normal Magic Rare
BaseType == "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Pig-Faced Bascinet" "Praetor Crown" "Royal Burgonet" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Titan Gauntlets" "Titan Greaves"
SetFontSize 40
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D3 $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 >= 2
Rarity Normal Magic Rare
BaseType == "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Pig-Faced Bascinet" "Praetor Crown" "Royal Burgonet" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Titan Gauntlets" "Titan Greaves"
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->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
#===============================================================================================================
# [[0400]] 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 Normal Magic 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 Normal Magic 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->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 # %D6 $type->exoticbaseslower $tier->exoticsacrificial
Corrupted False
Rarity Normal Magic Rare
BaseType == "Sacrificial Garb"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#===============================================================================================================
# [[0500]] IDENTIFIED MOD FILTERING - COMBINATIONS
#===============================================================================================================
# !! Override 040 : "identified mod filtering"
#------------------------------------
# [0501] ID Mod exceptions - override id mod matching section
#------------------------------------
Show # %DS5 $type->exoticmods $tier->t1veil
Identified True
Rarity Rare
HasExplicitMod "Catarina's Veiled" "Elreon's Veiled" "Leo's Veiled" "Rin's Veiled" "Vagan's Veiled" "Vorici's Veiled"
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 # %DS4 $type->exoticmods $tier->t2veil
Identified True
Rarity Rare
HasExplicitMod "Gravicius' Veiled" "Guff's Veiled" "Haku's" "It That Fled's Veiled" "Korell's Veiled" "of Aisling's Veil" "of Cameria's Veil" "of Hillock's Veil" "of Janus' Veil" "of Jorgin's Veil" "Riker" "Tora's Veiled"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 0 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#------------------------------------
# [0502] Physical
#------------------------------------
Show # $type->rareid $tier->weapon_phys
Identified True
DropLevel >= 55
Rarity Rare
Class == "Bows" "Claws" "Daggers" "One Hand Axes" "One Hand Maces" "One Hand Swords" "Thrusting One Hand Swords" "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Wands" "Warstaves"
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod >=3 "Merciless" "Tyrannical" "Flaring" "Dictator's" "Emperor's" "of Celebration" "of Incision" "of Dissolution" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->weapon_physpure
Identified True
Corrupted False
DropLevel >= 55
Rarity Rare
Class == "Bows" "Claws" "Daggers" "One Hand Axes" "One Hand Maces" "One Hand Swords" "Thrusting One Hand Swords" "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Wands" "Warstaves"
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod >=2 "Merciless" "Tyrannical" "Flaring" "Dictator's" "Emperor's" "of Celebration" "of Incision" "of Dissolution" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0503] Elemental
#------------------------------------
Show # $type->rareid $tier->weapon_ele
Identified True
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Imperial Skean" "Jewelled Foil" "Maraketh Bow" "Spine Bow" "Spiraled Foil" "Thicket Bow"
HasExplicitMod "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many"
HasExplicitMod >=4 "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity" "of Fury" "Devastating" "Overpowering" "of the Essence" "Essences" "Veiled" "of the Veil" "of the Underground" "Subterranean" "of Many"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->weapon_elepure
Identified True
Corrupted False
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Imperial Skean" "Jewelled Foil" "Maraketh Bow" "Spine Bow" "Spiraled Foil" "Thicket Bow"
HasExplicitMod "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many"
HasExplicitMod >=3 "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity" "of Fury" "Devastating" "Overpowering" "of the Essence" "Essences" "Veiled" "of the Veil" "of the Underground" "Subterranean" "of Many"
SetFontSize 45
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0504] Gembased
#------------------------------------