-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaster Voices_2_Semi-Strict.filter
7032 lines (6228 loc) · 255 KB
/
Master Voices_2_Semi-Strict.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: 6.6
# TYPE: 2-SEMI-STRICT
# STYLE: VELVET
# AUTHOR: NeverSink
# BUILDNOTES: Filter improved with NeverSink's Filterpolish tool (v0.5)
#
#------------------------------------
# LINKS TO LATEST VERSION / REPOSITORY / FILTER EDITOR:
#------------------------------------
#
# EDIT/CUSTOMIZE FILTER ON: http://www.FilterBlade.xyz
# GET THE LATEST VERSION ON: http://www.FilterBlade.xyz or https://github.com/NeverSinkDev/NeverSink-Filter
# DETAILED EXPLANATIONS: https://goo.gl/oQn4EN
#
#------------------------------------
# LINKS TO LATEST VERSION / REPOSITORY / FILTER EDITOR:
#------------------------------------
#
# SUPPORT ME ON PATREON: https://www.patreon.com/Neversink
# SUPPORT THE FILTERBLADE TEAM: http://www.filterblade.xyz/About
#
#------------------------------------
# INSTALLATION / UPDATE :
#------------------------------------
#
# 0) It's recommended to check for updates once a month or at least before new leagues, to receive economy finetuning and new features!
# 1) Paste this file into the following folder: %userprofile%/Documents/My Games/Path of Exile
# 2) INGAME: Escape -> Options -> UI -> Scroll down -> Select the filter from the Dropdown box
#
#------------------------------------
# CONTACT - if you want to get notifications about updates or just get in touch:
#------------------------------------
# PLEASE READ THE FAQ ON https://goo.gl/oQn4EN BEFORE ASKING QUESTIONS
#
# TWITTER: @NeverSinkGaming
# REDDIT: NeverSinkDev
# GITHUB: NeverSinkDev
# EMAIL : NeverSinkGaming-at-gmail.com
#===============================================================================================================
#[WELCOME] TABLE OF CONTENTS + QUICKJUMP TABLE
#===============================================================================================================
#
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
# [[0200]] 6 LINKS
# [[0300]] SHAPER ITEMS
# [0301] Shaper Item Layers - Rare Exclusions
# [0302] Shaper Item Layers - T1 - ECONOMY
# [0303] Shaper Item Layers - T1 - CLASS
# [0304] Shaper Item Layers - T2 - ECONOMY
# [0305] Shaper Item Layers - T2 - CLASS
# [0306] Shaper Item Layers - T3
# [[0400]] ELDER ITEMS
# [0401] Elder Item Layers - Very rare exceptions
# [0402] Elder Item Layers - T1 - ECONOMY
# [0403] Elder Item Layers - T1 - CLASS
# [0404] Elder Item Layers - T2 - ECONOMY
# [0405] Elder Item Layers - T2 - CLASS
# [0406] Elder Item Layers - T3
# [[0500]] Explicit Mod filtering
# [0501] Betrayal Specific Filtering
# [0502] League-Specific Magic Items
# [0503] Magic Mod Permutations
# [[0600]] Explicit Mod filtering
# [0601] Skill Staves/Bows
# [0602] Rare Item Permutations
# [0603] Weapons-Physical (Key: IPD)
# [0604] The Suffix Abomination
# [0605] Casters
# [0606] General Resist Gear
# [0607] Boots/Gloves
# [0608] Boots
# [0609] Gloves
# [0610] Helmets
# [0611] Shields
# [0612] Body
# [0613] Quiver
# [0614] Belts
# [0615] Rings
# [0616] Amulets
# [[0700]] Recipes, Magic and Normal items (endgame!)
# [0701] Overqualitied Items
# [0702] 5-Linked items
# [0703] 6-Socket Items
# [0704] Exclusive bases: Stygian Vise
# [0705] Abyss Jewels (Rare and Magic)
# [0706] Exclusive bases: Top Value
# [0707] Exclusive bases: Trinkets
# [0708] Exclusive bases: Others
# [0709] Corrupted Amulets
# [0710] Chancing items
# [0711] FLASKS (Endgame rules)
# [0712] Add your own crafting rules here
# [0713] 86+ Endgame crafting rules
# [0714] 83/84+ Endgame crafting rules
# [0715] 60+ Crafting rules for 60++ trinkets
# [0716] Remaining crafting rules - add your own bases here!
# [0717] Chisel recipe items
# [0718] Fishing Rod
# [0719] SRS Crude Bow
# [0720] Chromatic recipe items ("RGB Recipe")
# [0721] Endgame-start 4-links
# [0722] Animate Weapon script - deactivated by default
# [0723] W-soc offhand weapons
# [0724] Sacrificial Garb
# [[0800]] HIDE LAYER 1 - MAGIC AND NORMAL ITEMS
# [[0900]] Currency - PART 1 - Common currency
# [[1000]] OVERRIDE AREA 2 - Override the default rare rulesets here
# [[1100]] RARE ITEMS - TRINKETS (ENDGAME)
# [1101] Rare trinkets 86+
# [1102] Rare trinkets 84+
# [1103] Breach Rings
# [1104] Rare trinkets "remaining"
# [[1200]] RARE ITEMS - WEAPONS AND ARMORS (ENDGAME)
# [1201] Rare crafting bases 86+
# [1202] Rare crafting bases 83+
# [1203] T1 rare items
# [1204] T2 rare items
# [1205] Other Conditions
# [1206] 1H Daggers
# [1207] 1H Claws
# [1208] 1H Wands
# [1209] 1H Foils
# [1210] 1H Swords
# [1211] 1H Maces
# [1212] 1H Axes
# [1213] 1H Sceptres
# [1214] 2H Staves
# [1215] 2H Swords, Axes, Maces
# [1216] 2H Bows
# [1217] AR: Gloves, Boots, Helmets
# [1218] AR: Body Armors
# [1219] OH: Shields
# [1220] OH: Quivers
# [[1300]] HIDE LAYER 2 - RARE ITEMS (65+ ONLY FOR NON-REGULAR VERSIONS)
# [[1400]] OVERRIDE AREA 3 - Override Map, Gem and Flask drops here
# [[1500]] Gems
# [1501] Special Gems
# [1502] Top Gems
# [1503] Quality Gems
# [1504] Leveled Gems
# [1505] Other gems
# [[1600]] UTILITY FLASKS (Levelling Rules)
# [[1700]] HIDE LAYER 3: Random Endgame Flasks
# [[1800]] Maps, fragments and labyrinth items
# [1801] Unique Maps
# [1802] Labyrinth items, Offerings
# [1803] Shaped Maps
# [1804] Top tier maps (T15-16)
# [1805] High tier maps(T11-14)
# [1806] Mid tier maps (T6-10)
# [1807] Low tier maps (T1-T5)
# [1808] Sorted Map Fragments
# [1809] Scarabs
# [1810] Remaining Map Fragments
# [[1900]] Currency - PART 2 - Rare currency
# [1901] Regular Rare Currency
# [1902] Harbinger Currency
# [1903] Incursion Currency
# [1904] Delve Currency - Resonators
# [1905] Delve Currency - Fossil
# [1906] Bestiary Currency
# [1907] Top Currency
# [1908] Essence Tier List
# [1909] Perandus
# [1910] Breach
# [1911] Others
# [1912] Prophecies
# [[2000]] Currency - PART 3 - Divination cards (yes the strange sorting is intended)
# [2001] Exceptions to prevent ident. mistakes
# [2002] T1 - Top tier cards
# [2003] T2 - Great cards
# [2004] T3 - Decent cards
# [2005] Special - Special Currency Cards
# [2006] T5 - Format trash tier cards... before
# [2007] T4 - ...showing the remaining cards
# [[2100]] Currency - PART 4 - remaining items
# [[2200]] Leaguestones - Tierlists
# [[2300]] Uniques!
# [2301] Exceptions
# [2302] Harbinger - Pieces
# [2303] Tier 1 uniques
# [2304] Tier 2 uniques
# [2305] Multi-Unique bases.
# [2306] Special Unique Searches
# [2307] Prophecy-Material Uniques
# [2308] Random Uniques
# [[2400]] Quest Items and Shaper Orbs
# [[2500]] OVERRIDE AREA 4 - Insert your custom Leveling adjustments here
# [[2600]] Leveling - Flasks
# [2601] Hide outdated flasks
# [2602] Hybrid flasks (normal)
# [2603] Life Flasks - Normal (Kudos to Antnee)
# [2604] Mana Flasks - Magic (Kudos to Antnee)
# [2605] Show remaining flasks
# [[2700]] Leveling - Merged Rules
# [[2800]] Leveling - RGB Recipes
# [[2900]] Leveling - RARES
# [2901] Leveling rares - specific items
# [2902] Leveling rares - Progression - First Levels
# [2903] Leveling rares - Progression - First Levels
# [2904] Leveling rares - Progression - First Levels
# [2905] Leveling rares - remaining rules
# [[3000]] Leveling - Useful items
# [3001] Linked gear - 4links
# [3002] Linked gear - Caster Weapon Configuration
# [3003] Linked gear - 3links
# [3004] Util end Act1
# [3005] Act 2+3
# [3006] Act 4+5+6
# [3007] Optional Recipes
# [3008] 20% quality items for those strange people who want them
# [[3100]] Leveling - natural weapon progression
# [3101] Quivers - Progression
# [3102] Progression - Part 1 1-11
# [3103] Progression - Part 2 11-26
# [3104] Progression - Part 3 26-65
# [[3200]] Leveling - misc normal items
# [3201] Normal items - First 4-8 levels - useful items
# [3202] Vendor Normal items - Until level 3 (Remaining)
# [[3300]] Leveling - misc magic items
# [3301] Vendor Magic items - until 3
# [3302] Vendor Magic items - until 12
# [3303] Vendor Magic items - Until 24
# [3304] Vendor Magic items - Until 36
# [[3400]] HIDE LAYER 5 - Remaining Items
# [[3500]] CATCHALL - if you see pink items - send me a mail please - should never happen
# [[3600]] Special thanks to!
#===============================================================================================================
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
#===============================================================================================================
#===============================================================================================================
# [[0200]] 6 LINKS
#===============================================================================================================
Show #
LinkedSockets 6
Rarity <= Rare
Class "Body Armour"
SetFontSize 45
SetTextColor 165 0 255 255 # TEXTCOLOR: T0 Item
SetBorderColor 154 0 255 255 # BORDERCOLOR: T0 Item
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Star
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
Show #
LinkedSockets 6
Rarity <= Rare
SetFontSize 45
SetTextColor 165 0 255 255 # TEXTCOLOR: T0 Item
SetBorderColor 154 0 255 255 # BORDERCOLOR: T0 Item
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Jun/OverHere.mp3"
#===============================================================================================================
# [[0300]] SHAPER ITEMS
#===============================================================================================================
#------------------------------------
# [0301] Shaper Item Layers - Rare Exclusions
#------------------------------------
Show # $Rare->Shaper->T1 $x->ShaperElder
ShaperItem True
Rarity <= Rare
BaseType "Opal Ring" "Steel Ring" "Stygian Vise" "Crystal Belt" "Blue Pearl Amulet" "Marble Amulet" "Fingerless Silk Gloves" "Spiked Gloves" "Gripped Gloves" "Bone Helmet"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
#------------------------------------
# [0302] Shaper Item Layers - T1 - ECONOMY
#------------------------------------
Show # $Rare->Shaper->T1 $x->ShaperElder
ShaperItem True
ItemLevel >= 80
Rarity <= Rare
BaseType "Crystal Belt" "Marble Amulet" "Two-Toned Boots" "Opal Ring" "Fingerless Silk Gloves" "Onyx Amulet" "Eclipse Staff" "Colossal Tower Shield" "Penetrating Arrow Quiver" "Fire Arrow Quiver" "Sharktooth Arrow Quiver"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
# Level-Dependent Expensive finds (85)
Show # $Rare->Shaper->T1 $x->ShaperElder
ShaperItem True
ItemLevel >= 85
Rarity <= Rare
BaseType "Titanium Spirit Shield" "Twin Claw" "Astral Plate" "Gold Amulet" "Agate Amulet" "Leather Belt" "Jewelled Foil" "Citrine Amulet" "Lapis Amulet" "Jade Amulet" "Turquoise Amulet" "Spike-Point Arrow Quiver" "Amber Amulet" "Hubris Circlet" "Paua Amulet" "Bronze Tower Shield" "Coral Amulet" "Saint's Hauberk" "Opal Wand" "Imperial Bow" "Imperial Claw" "Archon Kite Shield" "Ancient Greaves" "Broadhead Arrow Quiver" "Ambusher" "Saintly Chainmail" "Maraketh Bow" "Carnal Armour" "Military Staff" "Stealth Boots" "Ivory Spirit Shield" "Royal Burgonet" "Crusader Boots" "Elegant Ringmail" "Moon Staff" "Gouger" "Dragonscale Boots" "Eternal Burgonet" "Vaal Greatsword" "Stag Sceptre" "Lion Pelt" "Sorcerer Gloves" "Diamond Ring" "Nubuck Gloves" "Blunt Arrow Quiver" "Behemoth Mace" "Gladiator Helmet" "Serrated Arrow Quiver" "Vaal Mask" "Dragon Mace" "Gemini Claw" "Coral Ring" "Chain Hauberk" "Prophet Crown" "Trapper Boots" "Sleek Coat" "Hydrascale Boots" "Topaz Ring" "Siege Helmet" "Sniper Bow" "Titan Gauntlets" "Paua Ring" "Heavy Belt" "Sambar Sceptre" "Shadow Sceptre" "Void Sceptre" "Opal Sceptre" "Copper Kris" "Platinum Kris" "Golden Kris"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
#------------------------------------
# [0303] Shaper Item Layers - T1 - CLASS
#------------------------------------
Show # $Rare->Shaper->T1 $x->ShaperElder
ShaperItem True
ItemLevel >= 85
Rarity <= Rare
Class "Amulets"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
#------------------------------------
# [0304] Shaper Item Layers - T2 - ECONOMY
#------------------------------------
Show # $Rare->Shaper->T2 $x->ShaperElder
ShaperItem True
ItemLevel >= 75
Rarity <= Rare
BaseType "Crystal Belt" "Marble Amulet" "Two-Toned Boots" "Shadow Sceptre" "Opal Ring" "Fingerless Silk Gloves" "Onyx Amulet" "Eclipse Staff" "Colossal Tower Shield" "Penetrating Arrow Quiver" "Fire Arrow Quiver" "Sharktooth Arrow Quiver"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Shaper/Behold.mp3"
Show # $Rare->Shaper->T2 $x->ShaperElder
ShaperItem True
ItemLevel >= 80
Rarity <= Rare
BaseType "Bone Helmet" "Vaal Regalia" "Astral Plate" "Agate Amulet" "Serpentscale Gauntlets" "Leather Belt" "Jewelled Foil" "Citrine Amulet" "Lapis Amulet" "Gripped Gloves" "Jade Amulet" "Turquoise Amulet" "Spike-Point Arrow Quiver" "Amber Amulet" "Hubris Circlet" "Coral Amulet" "Opal Wand" "Imperial Bow" "Broadhead Arrow Quiver" "Moon Staff" "Diamond Ring" "Nubuck Gloves" "Blunt Arrow Quiver" "Serrated Arrow Quiver" "Dragon Mace" "Two-Stone Ring" "Spiraled Foil" "Unset Ring" "Tiger Hook" "Aventail Helmet" "Antique Gauntlets" "Grinning Fetish" "Full Wyrmscale" "Burnished Foil" "Courtesan Sword" "Battle Buckler" "Pinnacle Tower Shield" "Murder Mitts" "Iron Ring" "Ivory Bow" "Eelskin Boots"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Shaper/Behold.mp3"
Show # $Rare->Shaper->T2 $x->ShaperElder
ShaperItem True
ItemLevel >= 85
Rarity <= Rare
BaseType "Butcher Knife" "Boot Blade" "Wyrmbone Rapier" "Vaal Sceptre" "Carnal Sceptre" "Poignard" "Ambusher" "Stag Sceptre" "Harpy Rapier" "Demon Dagger" "Blood Sceptre" "Wyrmbone Rapier" "Vaal Sceptre" "Carnal Sceptre" "Serrated Foil" "Abyssal Sceptre" "Poignard" "Ezomyte Dagger" "Arcanist Slippers" "Lunaris Circlet" "Heathen Wand" "Satin Slippers" "Trisula" "Prophecy Wand" "Commander's Brigandine" "Thicket Bow" "Deicide Mask" "Nightmare Bascinet" "Chest Splitter" "Occultist's Vestment" "Sekhem" "Harmonic Spirit Shield" "Runic Hatchet" "Estoc" "Auric Mace" "Highborn Bow" "Platinum Sceptre" "Loricated Ringmail" "Ruby Ring" "Fiend Dagger" "Crusader Buckler" "Satin Gloves" "Fancy Foil" "Zodiac Leather" "Battle Hammer" "Samite Slippers" "Embroidered Gloves" "Praetor Crown" "Wyrmscale Boots" "Chiming Spirit Shield" "Assassin Bow" "Sai" "Slink Gloves" "Imbued Wand" "Murder Boots" "Royal Sceptre" "Antique Greaves" "Tiger's Paw" "Profane Wand" "Reaver Axe" "Steel Circlet" "Legion Boots" "Zealot Gloves" "Terror Maul" "Golden Buckler" "Highborn Staff" "Gilded Sallet" "Karui Sceptre" "Twilight Blade" "Royal Skean" "Devout Chainmail" "Exquisite Blade" "Soldier Boots" "Decimation Bow" "Sapphire Ring" "Crested Tower Shield" "Crusader Gloves" "Goliath Greaves" "Raven Mask" "Trapper Mitts" "Imperial Skean" "Slaughter Knife" "Vaal Axe" "Eye Gouger" "Carnal Boots" "Assassin's Garb" "Baroque Round Shield" "Wrist Chopper" "Lead Sceptre" "Magistrate Crown" "Moonstone Ring" "Sharkskin Boots" "Shagreen Gloves" "Shagreen Tower Shield" "Thorium Spirit Shield" "Primeval Rapier" "Chain Belt" "Rustic Sash" "Tornado Wand" "Tyrant's Sekhem" "Wyrmscale Gauntlets" "Amethyst Ring" "Crystal Sceptre" "Shagreen Boots" "Glorious Plate" "Royal Axe" "Girded Tower Shield" "Enameled Buckler" "Steelscale Gauntlets" "Lacewood Spirit Shield" "Eternal Sword" "Ursine Pelt" "Ambush Boots" "Widowsilk Robe" "Pecoraro" "Spidersilk Robe" "Vaal Rapier" "Vaal Gauntlets" "Noble Axe" "Vaal Greaves" "Ambush Mitts" "Infernal Axe" "Corsair Sword" "Noble Claw" "Triumphant Lamellar" "Sadist Garb" "Sovereign Spiked Shield" "Judgement Staff" "Phantom Mace"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Shaper/Behold.mp3"
#------------------------------------
# [0305] Shaper Item Layers - T2 - CLASS
#------------------------------------
Show # $Rare->Shaper->T2 $x->ShaperElder
ShaperItem True
ItemLevel >= 86
Rarity <= Rare
Class "Daggers" "Sceptres" "Quivers"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Shaper/Behold.mp3"
Show # $Rare->Shaper->T2 $x->ShaperElder
ShaperItem True
ItemLevel >= 86
Rarity <= Rare
Class "Gloves" "Boots" "Helmets" "Quivers" "Rings" "Belts"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Shaper/Behold.mp3"
#------------------------------------
# [0306] Shaper Item Layers - T3
#------------------------------------
Show # $Rare->Shaper->T3 $x->ShaperElder
ShaperItem True
Rarity <= Rare
Class "Belts" "Amulet" "Ring"
SetFontSize 30
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: Shaper Elder Ring
SetBackgroundColor 62 37 79 127 # BACKGROUND: Shaper T3
Show # $Rare->Shaper->T3 $x->ShaperElder
ShaperItem True
Rarity <= Rare
SetFontSize 18
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 62 37 79 127 # BACKGROUND: Shaper T3
#===============================================================================================================
# [[0400]] ELDER ITEMS
#===============================================================================================================
#------------------------------------
# [0401] Elder Item Layers - Very rare exceptions
#------------------------------------
# Level-Independent Expensive finds
Show # $Rare->Elder->T1 $x->ShaperElder
ElderItem True
Rarity <= Rare
BaseType "Opal Ring" "Steel Ring" "Stygian Vise" "Crystal Belt" "Blue Pearl Amulet" "Marble Amulet" "Fingerless Silk Gloves" "Spiked Gloves" "Gripped Gloves" "Bone Helmet"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
#------------------------------------
# [0402] Elder Item Layers - T1 - ECONOMY
#------------------------------------
Show # $Rare->Elder->T1 $x->ShaperElder
ElderItem True
ItemLevel >= 80
Rarity <= Rare
BaseType "Astral Plate" "Eternal Burgonet" "Fingerless Silk Gloves" "Spiked Gloves" "Gripped Gloves" "Royal Burgonet" "Leather Belt" "Ezomyte Burgonet" "Onyx Amulet" "Coral Ring" "Vaal Axe" "Two-Stone Ring" "Gladiator Plate" "Thicket Bow" "Unset Ring" "Topaz Ring" "Sharktooth Arrow Quiver" "Imperial Bow" "Archon Kite Shield" "Titan Gauntlets"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
Show # $Rare->Elder->T1 $x->ShaperElder
ElderItem True
ItemLevel >= 85
Rarity <= Rare
BaseType "Ezomyte Tower Shield" "Arcanist Gloves" "Secutor Helm" "Sniper Bow" "Glorious Plate" "Amber Amulet" "Baroque Round Shield" "Agate Amulet" "Titanium Spirit Shield" "Colossal Tower Shield" "Hubris Circlet" "Paua Amulet" "Diamond Ring" "Titan Greaves" "Ruby Ring" "Assassin's Garb" "Lion Pelt" "Butcher Axe" "Laminated Kite Shield" "Citrine Amulet" "Wolf Pelt" "Sapphire Ring" "Pig-Faced Bascinet" "Jewelled Foil" "Jade Amulet" "Eelskin Gloves" "Coral Amulet" "Mirrored Spiked Shield" "Turquoise Amulet" "Crusader Buckler" "Nubuck Boots" "Fencer Helm" "Samite Helmet" "Lacquered Helmet" "Steel Circlet" "Gold Amulet" "Nightmare Bascinet" "Gilded Sallet" "Gladiator Helmet" "Heavy Belt" "Sorcerer Gloves" "Golden Mask" "Gemini Claw" "Slink Gloves" "Prophet Crown" "Lapis Amulet" "Silken Hood" "Noble Tricorne" "Imperial Claw" "Siege Helmet" "Vaal Regalia" "Praetor Crown" "Bone Circlet" "Sorcerer Boots" "Vaal Mask" "Deicide Mask" "Mind Cage" "Glorious Leather" "Engraved Wand" "Raven Mask" "Eye Gouger" "Steel Gauntlets" "Polished Spiked Shield" "Fluted Bascinet" "Great Crown" "Reaver Helmet" "Trapper Boots" "Stealth Gloves" "Maraketh Bow" "Exquisite Blade" "Iron Ring" "Regicide Mask" "Saint's Hauberk" "Hunter Hood" "Elder Sword" "Aventail Helmet" "Ambusher" "Opal Wand" "Paua Ring" "Magistrate Crown" "Vaal Gauntlets" "Harmonic Spirit Shield" "Pecoraro" "Ursine Pelt" "Poignard"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
#------------------------------------
# [0403] Elder Item Layers - T1 - CLASS
#------------------------------------
Show # $Rare->Elder->T2 $x->ShaperElder
ElderItem True
ItemLevel >= 85
Rarity <= Rare
Class "Amulet"
SetFontSize 45
SetTextColor 165 50 159 255 # TEXTCOLOR: ShaperElder
SetBorderColor 157 50 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
MinimapIcon 0 Red Diamond
PlayEffect Red
CustomAlertSound "sounds/Zana/ExceptionallyLucky.mp3"
#------------------------------------
# [0404] Elder Item Layers - T2 - ECONOMY
#------------------------------------
Show # $Rare->Elder->T2 $x->ShaperElder
ElderItem True
ItemLevel >= 75
Rarity <= Rare
BaseType "Astral Plate" "Eternal Burgonet" "Fingerless Silk Gloves" "Spiked Gloves" "Gripped Gloves" "Royal Burgonet" "Leather Belt" "Ezomyte Burgonet" "Onyx Amulet" "Coral Ring" "Vaal Axe" "Two-Stone Ring" "Gladiator Plate" "Thicket Bow" "Unset Ring" "Topaz Ring" "Sharktooth Arrow Quiver" "Imperial Bow" "Archon Kite Shield" "Titan Gauntlets"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Zana/DecayIsSeepingThrough.mp3"
Show # $Rare->Elder->T2 $x->ShaperElder
ElderItem True
ItemLevel >= 80
Rarity <= Rare
BaseType "Arcanist Gloves" "Secutor Helm" "Amber Amulet" "Agate Amulet" "Hubris Circlet" "Paua Amulet" "Diamond Ring" "Ruby Ring" "Citrine Amulet" "Sapphire Ring" "Pig-Faced Bascinet" "Jade Amulet" "Eelskin Gloves" "Coral Amulet" "Turquoise Amulet" "Crusader Buckler" "Nightmare Bascinet" "Gilded Sallet" "Gladiator Helmet" "Heavy Belt" "Sorcerer Gloves" "Gemini Claw" "Slink Gloves" "Lapis Amulet" "Silken Hood" "Noble Tricorne" "Siege Helmet" "Grove Bow" "Reaver Helmet" "Stealth Gloves" "Maraketh Bow" "Exquisite Blade" "Hunter Hood" "Elder Sword" "Aventail Helmet" "Ambusher" "Battle Buckler" "Vaal Gauntlets" "Harmonic Spirit Shield" "Crusader Gloves" "Zealot Gloves" "Moonstone Ring" "Callous Mask" "Despot Axe" "Serpentscale Gauntlets" "Terror Maul" "Highborn Bow" "Full Wyrmscale" "Occultist's Vestment" "Varnished Coat" "Fleshripper" "Golden Kris" "Goliath Gauntlets" "Stealth Boots" "Labrys" "Mesh Gloves" "Crystal Sceptre"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Zana/DecayIsSeepingThrough.mp3"
Show # $Rare->Elder->T2 $x->ShaperElder
ElderItem True
ItemLevel >= 85
Rarity <= Rare
BaseType "Two-Point Arrow Quiver" "Necromancer Circlet" "Amethyst Ring" "Legion Hammer" "Steelscale Boots" "Solaris Circlet" "Ancient Spirit Shield" "Harlequin Mask" "Rustic Sash" "Dragonscale Gauntlets" "Imperial Buckler" "General's Brigandine" "Tiger Hook" "Elegant Ringmail" "Exquisite Leather" "Serpent Wand" "Ornate Ringmail" "Thorium Spirit Shield" "Spiraled Foil" "Trapper Mitts" "Dragonscale Boots" "Shagreen Gloves" "Gold Ring" "Hydrascale Gauntlets" "Estoc" "Elegant Round Shield" "Murder Boots" "Harbinger Bow" "Opal Sceptre" "Coronal Maul" "Steelwood Bow" "Prehistoric Claw" "Sun Plate" "Angelic Kite Shield" "Behemoth Mace" "Penetrating Arrow Quiver" "Dragon Mace" "Conquest Chainmail" "Colosseum Plate" "Runic Hatchet" "Headman's Sword" "Murder Mitts" "Infernal Sword" "Clasped Mitts" "Siege Axe" "Coronal Leather" "Saintly Chainmail" "Ceremonial Axe" "Wyrmscale Gauntlets" "Fancy Foil" "Profane Wand" "Embroidered Gloves" "Broadhead Arrow Quiver" "Majestic Plate" "Zealot Helmet" "Eclipse Staff" "Platinum Sceptre" "Satin Gloves" "Supreme Spiked Shield" "Vaal Greaves" "Abyssal Sceptre" "Platinum Kris" "Samite Gloves" "Goliath Greaves" "Sharkskin Gloves" "Crusader Plate" "Ivory Spirit Shield" "Triumphant Lamellar" "Sambar Sceptre" "Void Sceptre" "Cutthroat's Garb" "Hellion's Paw" "Noble Claw" "Lacewood Spirit Shield" "Legion Gloves" "Fossilised Spirit Shield" "Ancient Gauntlets" "Burnished Foil" "Ancient Greaves" "Phantom Mace" "Sadist Garb" "Moon Staff" "Legion Boots" "Ivory Bow" "Chain Belt" "Samite Slippers" "Conjurer Gloves"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Zana/DecayIsSeepingThrough.mp3"
#------------------------------------
# [0405] Elder Item Layers - T2 - CLASS
#------------------------------------
Show # $Rare->Elder->T2 $x->ShaperElder
ElderItem True
ItemLevel >= 86
Rarity <= Rare
Class "Gloves" "Boots" "Helmets" "Belts" "Amulet" "Ring" "Quiver"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 102 50 99 255 # BACKGROUND: ShaperElder T2
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
CustomAlertSound "sounds/Zana/DecayIsSeepingThrough.mp3"
#------------------------------------
# [0406] Elder Item Layers - T3
#------------------------------------
Show # $Rare->Elder->T3 $x->ShaperElder
ElderItem True
Rarity <= Rare
Class "Belts" "Amulet" "Ring"
SetFontSize 30
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: Shaper Elder Ring
SetBackgroundColor 62 37 79 127 # BACKGROUND: Shaper T3
Show # $Rare->Elder->T3 $x->ShaperElder
ElderItem True
Rarity <= Rare
SetFontSize 18
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 62 37 79 127 # BACKGROUND: Shaper T3
#===============================================================================================================
# [[0500]] Explicit Mod filtering
#===============================================================================================================
#------------------------------------
# [0501] Betrayal Specific Filtering
#------------------------------------
Show # Veiled Mod
Identified True
HasExplicitMod "Veil"
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 White Hexagon
PlayEffect White
CustomAlertSound "sounds/Jun/BringItToMe_delayed.mp3"
Show # Safety Entry - just to test if there's unided veiled items
HasExplicitMod "Veil"
SetFontSize 45
SetBorderColor 255 0 255 240
PlayAlertSound 2 300 # DROPSOUND: Currency Sound
MinimapIcon 2 White Hexagon
PlayEffect White Temp
#------------------------------------
# [0502] League-Specific Magic Items
#------------------------------------
Show # Delve Mod Items - Poor %D3
Identified True
HasExplicitMod "of Crafting" "of Spellcraft" "of Weaponcraft"
SetFontSize 40
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
Show # Delve Mod Items - Expensive
Identified True
HasExplicitMod "of the Underground" "Subterranean"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
SetBackgroundColor 0 20 40 255 # BACKGROUND: Rare T1
PlayEffect Blue
CustomAlertSound "sounds/Niko/TellMeWhatDoYouThinkIsWorthMore.mp3"
Show # Stupid Beast Mod Items
Identified True
HasExplicitMod "of Farrul" "of Craiceann" "of Fenumus" "of Saqawal"
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
SetBackgroundColor 0 20 40 255 # BACKGROUND: Rare T1
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Tora/SuccessfulHunt.mp3"
Show # Incursion Mod Items
Identified True
Rarity Rare
HasExplicitMod "Tacati" "Citaqualotl" "Matatl" "Topotante" "Xopec" "Guatelitzi" "Puhuarte"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
SetBackgroundColor 0 20 40 255 # BACKGROUND: Rare T1
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Alva/InvaluableArtifacts.mp3"
Show # Incursion Mod Items
Identified True
Rarity Magic
HasExplicitMod "Tacati" "Citaqualotl" "Matatl" "Topotante" "Xopec" "Guatelitzi" "Puhuarte"
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Alva/InvaluableArtifacts.mp3"
Show # Warband Mod Items %H3
Identified True
HasExplicitMod "Brinerot" "Mutewind" "Redblade" "Betrayer's" "Deceiver's" "Turncoat's"
SetFontSize 40
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Hillock/IFeelHappy.mp3"
#------------------------------------
# [0503] Magic Mod Permutations
#------------------------------------
Show # Noteworthy phys rolls
Corrupted False
Identified True
DropLevel > 55
Rarity Magic
HasExplicitMod "Merciless"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Cameria/SaveSomeForMe.mp3"
Show # Noteworthy phys rolls 2
Corrupted False
Identified True
DropLevel > 55
Rarity Magic
Class "Dagger" "Wand" "One Hand" "Claw" "Bow"
HasExplicitMod "Flaring" "Tempered" "Dictator's" "Emperor's" "Electrocuting" "Cremating" "Entombing" "Malicious" "Tyrannical" "Merciless"
HasExplicitMod "of Rending" "of Incision" "of Penetrating" "of Destruction" "of Ferocity" "of Celebration"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Cameria/SaveSomeForMe.mp3"
Show # Noteworthy caster rolls
Corrupted False
Identified True
Rarity Magic
Class "Dagger" "Sceptre"
HasExplicitMod "Runic" "Xoph's" "Esh's"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Cameria/SaveSomeForMe.mp3"
Show # Noteworthy dual magic rolls
Corrupted False
Identified True
Rarity Magic
Class "Dagger" "Sceptre" "Wand"
HasExplicitMod "Runic" "Glyphic" "Lich's" "Cremating" "Electrocuting" "Entombing" "Runic" "Xoph's" "Esh's" "Tul's"
HasExplicitMod "of Destruction" "of Celebration" "of Finesse" "of Sortilege" "of Unmaking" "of Ruin" "of Ashes" "of Glaciation" "of Arcing"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Cameria/SaveSomeForMe.mp3"
Show # Summonner +3 helmets (?)
Corrupted False
Identified True
DropLevel > 55
Rarity Magic
HasExplicitMod "Necromancer's"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Cameria/SaveSomeForMe.mp3"
Show # Noteworthy boots rolls
Corrupted False
Identified True
DropLevel > 50
Rarity Magic
Class "Boots"
HasExplicitMod "Hellion's" "Cheetah's" "Seething" "Unassailable"
HasExplicitMod "of the Lightning" "of Ephij" "of Tzteosh" "of the Magma" "of the Ice" "of Haast"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Catarina/WeHopeAndWishForMore.mp3"
Show # Noteworthy armor rolls
Corrupted False
Identified True
DropLevel > 60
Rarity Magic
Class "Body Armour"
HasExplicitMod "Prime" "Resplendent" "Unfaltering" "Unassailable"
HasExplicitMod "of the Lightning" "of Ephij" "of Tzteosh" "of the Magma" "of the Ice" "of Haast"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Catarina/WeHopeAndWishForMore.mp3"
Show # Noteworthy glove rolls
Corrupted False
Identified True
DropLevel > 50
Rarity Magic
Class "Gloves"
HasExplicitMod "Athlete's" "Seething" "Unassailable"
HasExplicitMod "of the Lightning" "of Ephij" "of Tzteosh" "of the Magma" "of the Ice" "of Haast" "of Grandmastery" "of Lioneye" "of the Assassin"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Catarina/WeHopeAndWishForMore.mp3"
Show # Noteworthy shield rolls
Corrupted False
Identified True
DropLevel > 50
Rarity Magic
Class "Shield"
HasExplicitMod "Vigorous" "Xoph's" "Runic" "Esh's" "Unfaltering" "Incandescent" "Tul's"
HasExplicitMod "of Ephij" "of Tzteosh" "of Haast" "of Expertise" "of the Span" "of Unmaking"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Catarina/WeHopeAndWishForMore.mp3"
Show # Noteworthy quiver rolls
Corrupted False
Identified True
Rarity Magic
Class "Quiver"
BaseType "Penetrating Arrow Quiver" "Spike-Point Arrow Quiver" "Broadhead Arrow Quiver"
HasExplicitMod "Overpowering" "Devastating" "Fecund"
HasExplicitMod "of Ease" "of Rending" "of Destruction"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Catarina/WeHopeAndWishForMore.mp3"
Show # Noteworthy helmets rolls
Corrupted False
Identified True
DropLevel > 50
Rarity Magic
Class "Helmets"
HasExplicitMod "Fecund" "Blazing" "Unassailable"
HasExplicitMod "of the Lightning" "of Ephij" "of Tzteosh" "of the Magma" "of the Ice" "of Haast" "of Lioneye"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Catarina/WeHopeAndWishForMore.mp3"
Show # Noteworthy amulet rolls
Corrupted False
Identified True
Rarity Magic
Class "Amulet"
HasExplicitMod "Athlete's" "Virile" "Dazzling" "Flaring" "Cremating" "Entombing" "Electrocuting" "Unassailable" "Wizard's" "Devastating"
HasExplicitMod "of the Gods" "of the Wind" "of the Genius" "of Talent" "of Skill" "of the Assassin" "of Tzteosh" "of Haast" "of Ephij" "of the Rainbow" "of Immolation" "of Floe" "of Discharge" "of Nirvana" "of Destruction" "of Incision" "of the Multiverse" "of Expertise"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Gravicius/AllowMeToAidYou.mp3"
Show # Noteworthy ring rolls
Corrupted False
Identified True
Rarity Magic
Class "Rings"
HasExplicitMod "Flawless" "Electrocuting" "Overpowering" "Virile" "Rotund" "Resplendent" "Annealed" "Cremating" "Entombing"
HasExplicitMod "of the Gods" "of the Wind" "of the Genius" "of the Comet" "of Talent" "of Skill" "of the Assassin" "of Tzteosh" "of Haast" "of Ephij" "of the Rainbow" "of Flames" "of Rime" "of Voltage"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Gravicius/AllowMeToAidYou.mp3"
Show # Noteworthy ring rolls
Corrupted False
Identified True
Rarity Magic
Class "Jewel"
HasExplicitMod "Vivid" "Shimmering"
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
Show # Noteworthy ring rolls
Corrupted False
Identified True
Rarity Magic
Class "Belts"
HasExplicitMod "Fecund" "Dazzling" "Devastating" "Overpowering" "Enveloped"
HasExplicitMod "of the Gods" "of the Godslayer" "of Tzteosh" "of Haast" "of Ephij" "of Overflowing" "of Sipping" "of Savouring"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Gravicius/AllowMeToAidYou.mp3"
#===============================================================================================================
# [[0600]] Explicit Mod filtering
#===============================================================================================================
#------------------------------------
# [0601] Skill Staves/Bows
#------------------------------------
Show
Corrupted False
Identified True
Class "Bow" "Staves"
HasExplicitMod "Sharpshooter's" "Anarchist's" "Lava Caller's" "Tempest King's" "Winterbringer's"
HasExplicitMod "Paragon's"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
MinimapIcon 2 Blue Diamond
PlayEffect Blue
CustomAlertSound "sounds/Hillock/FoundYou.mp3"
#------------------------------------
# [0602] Rare Item Permutations
#------------------------------------
Show # Phys DPS 3-Stat Combos (Bows/Wands)
Identified True
DropLevel > 50
Rarity Rare
Class "Bows" "Wands"
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "Bloodthirsty"
HasExplicitMod "Flaring" "Tempered" "Razor-sharp" "Annealed"
HasExplicitMod "of Renown" "of Mastery" "of Ease"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
PlayAlertSound 3 300 # DROPSOUND: Unique
MinimapIcon 0 Blue Diamond
PlayEffect Blue
Show # Phys DPS 2-Stat Combos (Bows/Wands)
Corrupted False
Identified True
DropLevel > 50
Rarity Rare
Class "Bows" "Wands"
HasExplicitMod "Merciless" "Tyrannical"
HasExplicitMod "of Renown" "of Incision"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
PlayAlertSound 3 300 # DROPSOUND: Unique
MinimapIcon 0 Blue Diamond
PlayEffect Blue
#------------------------------------
# [0603] Weapons-Physical (Key: IPD)
#------------------------------------
Show # Phys DPS 3-Stat Combos
Identified True
DropLevel > 50
Rarity Rare
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "Bloodthirsty"
HasExplicitMod "Flaring" "Tempered" "Razor-sharp" "Annealed"
HasExplicitMod "Dictator's" "Emperor's" "Conqueror's" "Champion's" "of Celebration" "of Infamy" "of Fame" "of Acclaim" "of Renown" "of Incision" "of Penetrating" "of Destruction" "of the Assassin"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
PlayAlertSound 3 300 # DROPSOUND: Unique
MinimapIcon 0 Blue Diamond
PlayEffect Blue
Show # Phys DPS 2-Stat Combos
Identified True
DropLevel > 50
Rarity Rare
HasExplicitMod "Merciless" "Tyrannical" "Cruel"
HasExplicitMod "Flaring" "Tempered" "Razor-sharp" "Dictator's" "Emperor's" "Conqueror's"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
PlayAlertSound 3 300 # DROPSOUND: Unique
MinimapIcon 0 Blue Diamond
PlayEffect Blue
Show # Phys DPS 2-Stat Combos
Corrupted False
Identified True
DropLevel > 50
Rarity Rare
HasExplicitMod "Merciless" "Tyrannical"
HasExplicitMod "of Celebration" "of Infamy"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
PlayAlertSound 3 300 # DROPSOUND: Unique
MinimapIcon 0 Blue Diamond
PlayEffect Blue
#------------------------------------
# [0604] The Suffix Abomination
#------------------------------------
Show
Corrupted False
Identified True
DropLevel > 50
Rarity Rare
Class "Wands" "Daggers" "One Hand Swords" "Thrusting One Hand Swords" "Claws" "Bows"
HasExplicitMod "of Incision" "of Penetrating"
HasExplicitMod "of Destruction" "of Ferocity" "of Fury"
HasExplicitMod "of Celebration" "of Infamy"
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "Bloodthirsty" "Flaring" "Tempered" "Razor-sharp" "Annealed" "Dictator's" "Emperor's" "Conqueror's" "Champion's" "Entombing" "Polar" "Glaciated" "Frozen" "Cremating" "Blasting" "Incinerating" "Scorching" "Electrocuting" "Discharging" "Shocking" "Arcing"
SetFontSize 45
SetTextColor 0 240 190 240 # TEXTCOLOR: Special
SetBorderColor 255 255 255 255 # BORDERCOLOR: Special Base
PlayAlertSound 3 300 # DROPSOUND: Unique
MinimapIcon 0 Blue Diamond
PlayEffect Blue
#------------------------------------
# [0605] Casters
#------------------------------------