-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathPOEQOL_Base.filter
8277 lines (7251 loc) · 347 KB
/
POEQOL_Base.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: 7.9.3
# TYPE: 1-REGULAR
# STYLE: NORMAL
# AUTHOR: NeverSink
# BUILDNOTES: Filter generated with NeverSink's FilterpolishZ
#
#------------------------------------
# LINKS TO LATEST VERSION AND FILTER EDITOR
#------------------------------------
#
# EDIT/CUSTOMIZE FILTER ON: https://www.FilterBlade.xyz
# GET THE LATEST VERSION ON: https://www.FilterBlade.xyz or https://github.com/NeverSinkDev/NeverSink-Filter
# POE FORUM THREAD: https://goo.gl/oQn4EN
#
#------------------------------------
# SUPPORT THE DEVELOPMENT:
#------------------------------------
#
# SUPPORT ME ON PATREON: https://www.patreon.com/Neversink
# SUPPORT THE FILTERBLADE TEAM: https://www.filterblade.xyz/About
#
#------------------------------------
# INSTALLATION / UPDATE :
#------------------------------------
#
# 0) It's recommended to check for updates once a month or at least before new leagues, to receive economy finetuning and new features!
# 1) Paste this file into the following folder: %userprofile%/Documents/My Games/Path of Exile
# 2) INGAME: Escape -> Options -> UI -> Scroll down -> Select the filter from the Dropdown box
#
#------------------------------------
# CONTACT - if you want to get notifications about updates or just get in touch:
#------------------------------------
# PLEASE READ THE FAQ ON https://goo.gl/oQn4EN BEFORE ASKING QUESTIONS
#
# TWITTER: @NeverSinkGaming
# 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]] INFLUENCE EXCEPTIONS
# [[0400]] INFLUENCED MAPS
# [[0500]] Influenced Item Tiering: Crusader
# [0501] Layer - T1 - ECONOMY
# [0502] Layer - T2 - ECONOMY
# [[0600]] Influenced Item Tiering: Hunter
# [0601] Layer - T1 - ECONOMY
# [0602] Layer - T2 - ECONOMY
# [[0700]] Influenced Item Tiering: Warlord
# [0701] Layer - T1 - ECONOMY
# [0702] Layer - T2 - ECONOMY
# [[0800]] Influenced Item Tiering: Redeemer
# [0801] Layer - T1 - ECONOMY
# [0802] Layer - T2 - ECONOMY
# [[0900]] Influenced Item Tiering: Shaper
# [0901] Layer - T1 - ECONOMY
# [0902] Layer - T2 - ECONOMY
# [[1000]] Influenced Item Tiering: Elder
# [1001] Item Layer - T1 - ECONOMY
# [1002] Item Layer - T2 - ECONOMY
# [[1100]] Influenced Item Tiering: Remaining Tiers
# [1101] Item Layer - T2 - Class Based Filtering
# [1102] Item Layer - T3 - REMAINING RULES
# [[1200]] Explicit Mod filtering - Rare
# [1201] All Skill Gem Combinations
# [1202] Rare Item Permutations
# [1203] Weapons-Physical (Key: IPD)
# [1204] The Suffix Abomination
# [1205] Casters
# [1206] General Resist Gear
# [1207] Boots/Gloves
# [1208] Boots
# [1209] Gloves
# [1210] Helmets
# [1211] Shields
# [1212] Body
# [1213] Quiver
# [1214] Belts
# [1215] Rings
# [1216] Amulets
# [1217] Talisman
# [1218] Jewels
# [1219] Buzzsaw Weapons
# [1220] Flasks...
# [[1300]] 6Socketed and 5Linked Drops
# [[1400]] Explicit Mod Highlight - League Drops
# [1401] Synthesis (removed)
# [1402] Betrayal
# [1403] Crafting mods
# [1404] Delve
# [1405] Bestiary
# [1406] Incursion - Matatl - traps and movementspeed
# [1407] Incursion - Body Armours - Guatelitzi
# [1408] Incursion - Sumonner Weapons
# [1409] Incursion - Caster Weapons
# [1410] Incursion - Normal Weapons
# [1411] Incursion - Rings, Amulets
# [1412] Incursion - Gloves, Helmets
# [1413] Incursion General
# [1414] Warbands
# [1415] Enchanted Items
# [[1500]] Explicit Mod Highlight - Magic
# [[1600]] Talisman
# [[1700]] Exotic Item Types
# [[1800]] Rare/Magic Jewels
# [1801] Abyss
# [1802] Cluster Jewels - large
# [1803] Cluster Jewels - medium+smol
# [1804] Generic
# [[1900]] Normal/Magic Crafting Bases
# [1901] Extreme Value ILVL 86 Rules
# [1902] 86+ Endgame crafting rules
# [1903] 84+ Endgame crafting rules
# [1904] Level-Independent Highlight
# [[2000]] Additional Endgame Crafting Bases (Harvest!)
# [[2100]] Chancing Section
# [[2200]] Endgame Flasks
# [2201] Useful endgame flasks
# [2202] Recipes
# [2203] Early mapping life/mana/utility flasks
# [[2300]] Low Value Recipes
# [2301] Chromatic recipe items ("RGB Recipe")
# [2302] Chisel recipe items
# [2303] Animate Weapon script - deactivated by default
# [[2400]] Low Strictness Sections
# [2401] Endgame-start 4-links
# [2402] 60+ Crafting rules for 60++ trinkets
# [2403] Low Strictness Magic/Normal Trinkets
# [[2500]] HIDE LAYER 1 - MAGIC AND NORMAL ITEMS
# [[2600]] OVERRIDE AREA 2 - Override the default rare rulesets here
# [[2700]] RARE ITEMS - SPECIAL BASES
# [[2800]] RARE ITEMS - LEVEL 86 Crafting
# [[2900]] RARE ITEMS - TRINKETS (ENDGAME)
# [2901] Breach Rings Exceptions
# [2902] Rare trinkets
# [[3000]] RARE ITEMS - WEAPONS AND ARMORS (ENDGAME)
# [3001] T1 rare items
# [3002] T2 rare items
# [3003] Additional Weapons
# [3004] Other Conditions
# [3005] 1H Rune Dagger
# [3006] 1H Daggers
# [3007] 1H Claws
# [3008] 1H Wands
# [3009] 1H Foils
# [3010] 1H Swords
# [3011] 1H Maces
# [3012] 1H Axes
# [3013] 1H Sceptres
# [3014] Warstaves
# [3015] 2H Staves
# [3016] 2H Swords, Axes, Maces
# [3017] 2H Bows
# [3018] AR: Gloves, Boots, Helmets
# [3019] AR: Body Armors
# [3020] OH: Shields
# [3021] OH: Quivers
# [[3100]] HIDE LAYER 2 - RARE ITEMS (65+ ONLY FOR NON-REGULAR VERSIONS)
# [[3200]] OVERRIDE AREA 3 - Override Map, Gem and Flask drops here
# [[3300]] Gems
# [3301] Awakened Gems
# [3302] Exceptional Gems
# [3303] Special Gems
# [3304] High Tier Gems
# [3305] Leveling Rules
# [3306] Low Quality Gems
# [3307] Leveled Gems
# [3308] Other gems
# [[3400]] UTILITY FLASKS (Levelling Rules)
# [[3500]] HIDE LAYER 3: Random Endgame Flasks
# [[3600]] Maps, fragments and labyrinth items
# [3601] Unique Map Exceptions - T16 harbinger maps have the T1 unique map appearance
# [3602] Unique Maps
# [3603] Labyrinth items, Offerings
# [3604] Blighted maps
# [3605] Top tier maps (T16)
# [3606] High tier maps(T11-15)
# [3607] Mid tier maps (T6-10)
# [3608] Low tier maps (T1-T5)
# [[3700]] Misc Map Items (relic keys)
# [[3800]] Fragments
# [3801] Scarabs
# [3802] Regular Fragment Tiering
# [[3900]] Currency - Exceptions - Stacked Currency
# [[4000]] Currency - Exceptions - Leveling Currencies
# [[4100]] Currency - PART 1 - Common currency
# [[4200]] Currency - PART 2 - Rare currency
# [4201] Regular Rare Currency
# [4202] Incursion Currency
# [4203] Delve Currency - Resonators
# [4204] Delirium Currency
# [4205] Delve Currency - Fossil
# [4206] Top Currency
# [4207] Oil Tier List
# [4208] Essence Tier List
# [4209] Perandus
# [4210] Simulacrum Splinters
# [4211] Splinters
# [4212] Incubator
# [4213] Breach
# [4214] Others
# [[4300]] Prophecies
# [[4400]] Divination cards (yes the strange sorting is intended)
# [4401] T1 - Top tier cards
# [4402] T2 - Great cards
# [4403] T3 - Decent cards
# [4404] Special - Special Currency Cards
# [[4500]] Currency - PART 4 - remaining items
# [[4600]] Metamorph Items
# [[4700]] Harvest
# [4701] Seeds
# [4702] Enhancers
# [[4800]] Uniques!
# [4801] Exceptions #1
# [4802] Tier 1 uniques
# [4803] Exceptions #2
# [4804] Tier 2 uniques
# [4805] Multi-Unique bases.
# [4806] Early Game Predictions
# [4807] Special Unique Searches
# [4808] Prophecy-Material Uniques
# [4809] Tier 3 uniques
# [4810] Tier 4 uniques
# [[4900]] Quest Items and Event Items
# [[5000]] OVERRIDE AREA 4 - Insert your custom Leveling adjustments here
# [[5100]] Leveling - Flasks
# [5101] Hide outdated flasks
# [5102] Hybrid flasks (normal)
# [5103] Life Flasks - Normal (Kudos to Antnee)
# [5104] Mana Flasks - Magic (Kudos to Antnee)
# [5105] Show remaining flasks
# [[5200]] Leveling - Merged Rules
# [[5300]] Leveling - RGB Recipes
# [[5400]] Leveling - RARES
# [5401] Leveling rares - specific items
# [5402] Leveling rares - Armors
# [5403] Leveling rares - Caster
# [5404] Leveling rares - Melee Weapons
# [5405] Leveling rares - Ranged
# [5406] Leveling rares - Quivers
# [5407] Leveling rares - remaining rules
# [[5500]] Leveling - Useful items
# [5501] Linked gear - 4links
# [5502] Linked gear - 3links
# [5503] Act1
# [5504] Act 2+3
# [5505] Act 4+5+6
# [5506] Optional Recipes
# [5507] 20% quality items for those strange people who want them
# [[5600]] Leveling - natural weapon progression
# [5601] Quivers - Progression
# [5602] Progression - Part 1 1-11
# [5603] Progression - Part 2 11-26
# [5604] Progression - Part 3 26-65
# [[5700]] Leveling - misc normal items
# [5701] Normal items - 3-Socketed Items
# [5702] Normal items - First 4-8 levels - useful items
# [5703] Vendor Normal items - Until level 3 (Remaining)
# [[5800]] Leveling - misc magic items
# [5801] Vendor Magic items - until 3
# [5802] Vendor Magic items - until 16
# [5803] Vendor Magic items - Jewellery
# [5804] Vendor Magic items - Until 24
# [[5900]] HIDE LAYER 5 - Remaining Items
# [[6000]] CATCHALL - if you see pink items - update or revert your changes! This should not be happening!
# [[6100]] Special thanks to!
#===============================================================================================================
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
#===============================================================================================================
#===============================================================================================================
# [[0200]] 6 LINKS
#===============================================================================================================
Show
Corrupted False
LinkedSockets 6
Rarity <= Rare
Class "Body Armour"
SetFontSize 45
SetTextColor 255 0 0 255 # TEXTCOLOR: T0 Item
SetBorderColor 255 0 0 255 # BORDERCOLOR: T0 Item
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 6 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Star
Show
LinkedSockets 6
Rarity <= Rare
SetFontSize 45
SetTextColor 255 0 0 255 # TEXTCOLOR: T0 Item
SetBorderColor 255 0 0 255 # BORDERCOLOR: T0 Item
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T1 Dropsound
PlayEffect Red
MinimapIcon 0 Red Diamond
#===============================================================================================================
# [[0300]] INFLUENCE EXCEPTIONS
#===============================================================================================================
Show
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity <= Rare
BaseType "Blue Pearl Amulet" "Bone Helmet" "Cerulean Ring" "Crystal Belt" "Fingerless Silk Gloves" "Gripped Gloves" "Marble Amulet" "Opal Ring" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T1 Dropsound
PlayEffect Red
MinimapIcon 0 Red Cross
#===============================================================================================================
# [[0400]] INFLUENCED MAPS
#===============================================================================================================
Show
HasInfluence Shaper
Class "Maps"
SetFontSize 45
SetTextColor 100 0 122 255 # TEXTCOLOR: High Map
SetBorderColor 100 0 255 255 # BORDERCOLOR: T0 Map
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T1 Dropsound
PlayEffect Red
MinimapIcon 0 Red Square
Show
HasInfluence Elder
Class "Maps"
SetFontSize 45
SetTextColor 100 0 122 255 # TEXTCOLOR: High Map
SetBorderColor 100 0 255 255 # BORDERCOLOR: T0 Map
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T1 Dropsound
PlayEffect Red
MinimapIcon 0 Red Square
#===============================================================================================================
# [[0500]] Influenced Item Tiering: Crusader
#===============================================================================================================
#------------------------------------
# [0501] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->crusader
HasInfluence Crusader
ItemLevel >= 82
Rarity <= Rare
BaseType "Cerulean Ring" "Opal Ring" "Opal Wand" "Prismatic Ring" "Titanium Spirit Shield" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-2 $type->rare->crusader
HasInfluence Crusader
ItemLevel >= 84
Rarity <= Rare
BaseType "Blue Pearl Amulet" "Crystal Belt" "Pagan Wand" "Sorcerer Boots" "Stygian Vise"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-3 $type->rare->crusader
HasInfluence Crusader
ItemLevel >= 85
Rarity <= Rare
BaseType "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Battle Buckler" "Eclipse Staff" "Engraved Wand" "Fingerless Silk Gloves" "Frontier Leather" "Gladiator Plate" "Glorious Plate" "Harmonic Spirit Shield" "Hubris Circlet" "Maelström Staff" "Maraketh Bow" "Moonstone Ring" "Occultist's Vestment" "Praetor Crown" "Riveted Gloves" "Sadist Garb" "Sage Wand" "Spiked Gloves" "Spiraled Foil" "Steel Ring" "Titan Greaves" "Two-Toned Boots" "Vaal Regalia" "Wyrmscale Doublet" "Zodiac Leather"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0502] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->crusader
HasInfluence Crusader
ItemLevel >= 80
Rarity <= Rare
BaseType "Cabalist Regalia" "Cerulean Ring" "Conquest Chainmail" "Crystal Belt" "Ebony Tower Shield" "Ezomyte Spiked Shield" "Fingerless Silk Gloves" "Gouger" "Marble Amulet" "Moonstone Ring" "Opal Ring" "Opal Wand" "Pagan Wand" "Prismatic Ring" "Sekhem" "Soldier's Brigandine" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Titanium Spirit Shield" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2-2 $type->rare->crusader
HasInfluence Crusader
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Angelic Kite Shield" "Antique Greaves" "Archon Kite Shield" "Assassin's Boots" "Assassin's Garb" "Astral Plate" "Battle Buckler" "Battle Hammer" "Battle Lamellar" "Blood Raiment" "Blue Pearl Amulet" "Bone Armour" "Bone Helmet" "Bronze Plate" "Buckskin Tower Shield" "Butcher Axe" "Cardinal Round Shield" "Carnal Armour" "Chain Hauberk" "Chiming Spirit Shield" "Citrine Amulet" "Colossal Tower Shield" "Colosseum Plate" "Commander's Brigandine" "Compound Bow" "Conjurer's Vestment" "Coronal Leather" "Coronal Maul" "Courtesan Sword" "Crested Tower Shield" "Crimson Raiment" "Crusader Boots" "Crusader Buckler" "Crusader Plate" "Crypt Armour" "Crystal Wand" "Cutthroat's Garb" "Deicide Mask" "Desert Brigandine" "Despot Axe" "Destiny Leather" "Destroyer Regalia" "Devout Chainmail" "Dragonscale Doublet" "Eclipse Staff" "Eelskin Gloves" "Elegant Ringmail" "Engraved Wand" "Estoc" "Eternal Burgonet" "Exquisite Leather" "Ezomyte Axe" "Ezomyte Blade" "Ezomyte Staff" "Ezomyte Tower Shield" "Fossilised Spirit Shield" "Foul Staff" "Frontier Leather" "Full Dragonscale" "Full Wyrmscale" "General's Brigandine" "Girded Tower Shield" "Gladiator Plate" "Glorious Leather" "Glorious Plate" "Golden Kris" "Golden Plate" "Grinning Fetish" "Gripped Gloves" "Harmonic Spirit Shield" "Heathen Wand" "Hellion's Paw" "Horned Sceptre" "Hubris Circlet" "Imbued Wand" "Imperial Claw" "Imperial Skean" "Ivory Spirit Shield" "Jade Amulet" "Jewelled Foil" "Lacquered Buckler" "Lacquered Garb" "Laminated Kite Shield" "Lapis Amulet" "Lead Sceptre" "Leather Belt" "Legion Hammer" "Loricated Ringmail" "Lunaris Circlet" "Maelström Staff" "Majestic Plate" "Maraketh Bow" "Military Staff" "Mind Cage" "Mirrored Spiked Shield" "Necromancer Silks" "Nightmare Bascinet" "Occultist's Vestment" "Ochre Sceptre" "Onyx Amulet" "Opal Sceptre" "Pecoraro" "Pig-Faced Bascinet" "Piledriver" "Pinnacle Tower Shield" "Platinum Kris" "Polished Spiked Shield" "Praetor Crown" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Quarterstaff" "Quilted Jacket" "Reaver Axe" "Riveted Gloves" "Royal Burgonet" "Sadist Garb" "Sage Wand" "Saintly Chainmail" "Saint's Hauberk" "Sambar Sceptre" "Savant's Robe" "Sentinel Jacket" "Serrated Foil" "Sharkskin Tunic" "Silk Robe" "Silken Hood" "Silken Wrap" "Sleek Coat" "Solar Maul" "Sorcerer Boots" "Sorcerer Gloves" "Spidersilk Robe" "Spiraled Foil" "Spiraled Wand" "Stag Sceptre" "Sundering Axe" "Supreme Spiked Shield" "Talon Axe" "Tempered Foil" "Thorium Spirit Shield" "Tiger's Paw" "Titan Greaves" "Tornado Wand" "Totemic Maul" "Triumphant Lamellar" "Turquoise Amulet" "Twin Claw" "Two-Stone Ring" "Unset Ring" "Vaal Axe" "Vaal Buckler" "Vaal Greatsword" "Vaal Greaves" "Vaal Mask" "Vaal Rapier" "Vaal Regalia" "Vaal Sceptre" "Vanguard Belt" "Varnished Coat" "Void Sceptre" "Widowsilk Robe" "Wyrmscale Doublet" "Zealot Boots" "Zealot Gloves" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#===============================================================================================================
# [[0600]] Influenced Item Tiering: Hunter
#===============================================================================================================
#------------------------------------
# [0601] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->hunter
HasInfluence Hunter
ItemLevel >= 82
Rarity <= Rare
BaseType "Amber Amulet" "Blue Pearl Amulet" "Broadhead Arrow Quiver" "Citrine Amulet" "Fingerless Silk Gloves" "Gold Amulet" "Gripped Gloves" "Marble Amulet" "Onyx Amulet" "Opal Ring" "Paua Amulet" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-2 $type->rare->hunter
HasInfluence Hunter
ItemLevel >= 84
Rarity <= Rare
BaseType "Astral Plate" "Coral Amulet" "Crystal Belt" "Ezomyte Tower Shield" "Jade Amulet" "Stygian Vise" "Titan Greaves" "Titanium Spirit Shield" "Turquoise Amulet"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-3 $type->rare->hunter
HasInfluence Hunter
ItemLevel >= 85
Rarity <= Rare
BaseType "Ancient Greaves" "Antique Gauntlets" "Antique Greaves" "Arcanist Gloves" "Arcanist Slippers" "Assassin's Boots" "Assassin's Garb" "Colossal Tower Shield" "Conjurer Boots" "Deicide Mask" "Dragonscale Boots" "Ezomyte Blade" "Ezomyte Spiked Shield" "Faun's Horn" "Fossilised Spirit Shield" "Goliath Greaves" "Hubris Circlet" "Hydrascale Boots" "Ivory Spirit Shield" "Lacquered Buckler" "Lion Pelt" "Mind Cage" "Murder Boots" "Opal Sceptre" "Pinnacle Tower Shield" "Samite Slippers" "Satin Slippers" "Serpentscale Gauntlets" "Shagreen Boots" "Sharkskin Boots" "Silken Hood" "Slink Boots" "Stealth Boots" "Stealth Gloves" "Steel Ring" "Titan Gauntlets" "Trapper Mitts" "Vaal Blade" "Vaal Greaves" "Vaal Regalia" "Wyrmscale Boots"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0602] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->hunter
HasInfluence Hunter
ItemLevel >= 80
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Arcanist Gloves" "Arcanist Slippers" "Blue Pearl Amulet" "Bone Helmet" "Broadhead Arrow Quiver" "Citrine Amulet" "Coral Amulet" "Crystal Belt" "Ebony Tower Shield" "Fingerless Silk Gloves" "Gold Amulet" "Gripped Gloves" "Jade Amulet" "Lapis Amulet" "Marble Amulet" "Onyx Amulet" "Opal Ring" "Paua Amulet" "Prismatic Ring" "Satin Slippers" "Serrated Arrow Quiver" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Titan Greaves" "Titanium Spirit Shield" "Turquoise Amulet" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2-2 $type->rare->hunter
HasInfluence Hunter
ItemLevel >= 85
Rarity <= Rare
BaseType "Ambush Boots" "Ambush Mitts" "Ancient Gauntlets" "Ancient Greaves" "Ancient Spirit Shield" "Angelic Kite Shield" "Antique Gauntlets" "Antique Greaves" "Archon Kite Shield" "Assassin's Boots" "Assassin's Garb" "Assassin's Mitts" "Astral Plate" "Baroque Round Shield" "Battle Buckler" "Battle Plate" "Behemoth Mace" "Blood Raiment" "Boot Blade" "Bronze Plate" "Cardinal Round Shield" "Carnal Boots" "Carnal Mitts" "Cerulean Ring" "Champion Kite Shield" "Colossal Tower Shield" "Compound Spiked Shield" "Conjurer Boots" "Conjurer Gloves" "Conquest Chainmail" "Convoking Wand" "Coronal Maul" "Corrugated Buckler" "Crested Tower Shield" "Crusader Boots" "Crusader Buckler" "Crusader Gloves" "Deicide Mask" "Desert Brigandine" "Dragon Mace" "Dragonscale Boots" "Dragonscale Gauntlets" "Eelskin Boots" "Eelskin Gloves" "Eelskin Tunic" "Embroidered Gloves" "Engraved Hatchet" "Engraved Wand" "Etched Kite Shield" "Eternal Burgonet" "Exquisite Leather" "Ezomyte Blade" "Ezomyte Spiked Shield" "Ezomyte Staff" "Ezomyte Tower Shield" "Faun's Horn" "Fire Arrow Quiver" "Flanged Mace" "Fleshripper" "Fossilised Spirit Shield" "Girded Tower Shield" "Gladiator Plate" "Gladius" "Glorious Plate" "Golden Buckler" "Goliath Gauntlets" "Goliath Greaves" "Grappler" "Harbinger Bow" "Harmonic Spirit Shield" "Headsman Axe" "Heavy Belt" "Highland Blade" "Hubris Circlet" "Hussar Brigandine" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Imperial Maul" "Imperial Staff" "Ivory Spirit Shield" "Lacquered Buckler" "Laminated Kite Shield" "Leather Belt" "Legion Boots" "Legion Gloves" "Legion Hammer" "Lion Pelt" "Lithe Blade" "Mind Cage" "Mirrored Spiked Shield" "Murder Boots" "Murder Mitts" "Occultist's Vestment" "Opal Sceptre" "Opal Wand" "Painted Tower Shield" "Pecoraro" "Penetrating Arrow Quiver" "Pernach" "Piledriver" "Pinnacle Tower Shield" "Prophet Crown" "Quarterstaff" "Raven Mask" "Reinforced Greaves" "Riveted Boots" "Riveted Gloves" "Royal Burgonet" "Sadist Garb" "Sage Wand" "Sambar Sceptre" "Samite Gloves" "Samite Slippers" "Satin Gloves" "Scholar Boots" "Serpentscale Boots" "Serpentscale Gauntlets" "Shagreen Boots" "Shagreen Gloves" "Sharkskin Boots" "Sharkskin Gloves" "Sharktooth Arrow Quiver" "Silken Hood" "Silken Wrap" "Sinner Tricorne" "Solar Maul" "Soldier Boots" "Soldier Gloves" "Spike-Point Arrow Quiver" "Spine Bow" "Stealth Boots" "Stealth Gloves" "Steel Circlet" "Sun Plate" "Sundering Axe" "Supreme Spiked Shield" "Talon Axe" "Thicket Bow" "Thorium Spirit Shield" "Titan Gauntlets" "Trapper Boots" "Trapper Mitts" "Ursine Pelt" "Vaal Blade" "Vaal Buckler" "Vaal Gauntlets" "Vaal Greaves" "Vaal Hatchet" "Vaal Regalia" "Vaal Spirit Shield" "Vanguard Belt" "Void Sceptre" "Wyrmbone Rapier" "Wyrmscale Boots" "Wyrmscale Gauntlets" "Zealot Boots" "Zealot Gloves" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#===============================================================================================================
# [[0700]] Influenced Item Tiering: Warlord
#===============================================================================================================
#------------------------------------
# [0701] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 82
Rarity <= Rare
BaseType "Ezomyte Blade" "Fingerless Silk Gloves" "Gripped Gloves" "Marble Amulet" "Opal Ring" "Spiked Gloves" "Vanguard Belt" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-2 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 84
Rarity <= Rare
BaseType "Ochre Sceptre" "Opal Wand" "Steel Ring" "Stygian Vise"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-3 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 85
Rarity <= Rare
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Colossal Tower Shield" "Coronal Maul" "Crystal Belt" "Crystal Sceptre" "Ebony Tower Shield" "Exquisite Blade" "Ezomyte Tower Shield" "Fleshripper" "Hubris Circlet" "Imbued Wand" "Infernal Sword" "Ivory Spirit Shield" "Jewelled Foil" "Lacquered Buckler" "Pinnacle Tower Shield" "Royal Burgonet" "Sinner Tricorne" "Spiraled Foil" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Vaal Axe"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0702] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 80
Rarity <= Rare
BaseType "Amber Amulet" "Astral Plate" "Blue Pearl Amulet" "Bone Helmet" "Ceremonial Kite Shield" "Citrine Amulet" "Exquisite Blade" "Ezomyte Blade" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Gripped Gloves" "Imbued Wand" "Jade Amulet" "Jasper Chopper" "Marble Amulet" "Onyx Amulet" "Opal Ring" "Opal Wand" "Ornate Quiver" "Shadow Sceptre" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Sundering Axe" "Turquoise Amulet" "Two-Stone Ring" "Vanguard Belt" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2-2 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Amethyst Ring" "Ancient Gauntlets" "Ancient Spirit Shield" "Angelic Kite Shield" "Antique Gauntlets" "Antique Greaves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Garb" "Barbed Club" "Battle Plate" "Battle Sword" "Behemoth Mace" "Brass Spirit Shield" "Cabalist Regalia" "Cardinal Round Shield" "Cerulean Ring" "Champion Kite Shield" "Colossal Tower Shield" "Colosseum Plate" "Convoking Wand" "Coral Amulet" "Coral Ring" "Coronal Maul" "Corrugated Buckler" "Crusader Boots" "Crusader Chainmail" "Crusader Plate" "Crystal Belt" "Crystal Sceptre" "Crystal Wand" "Cutlass" "Deicide Mask" "Diamond Ring" "Dragon Mace" "Dragonscale Gauntlets" "Ebony Tower Shield" "Eelskin Tunic" "Elegant Ringmail" "Engraved Wand" "Etched Kite Shield" "Eternal Burgonet" "Eternal Sword" "Ezomyte Burgonet" "Ezomyte Staff" "Fleshripper" "Fossilised Spirit Shield" "Full Dragonscale" "Girded Tower Shield" "Gladiator Helmet" "Gladiator Plate" "Glorious Plate" "Gold Amulet" "Golden Mask" "Golden Plate" "Goliath Gauntlets" "Goliath Greaves" "Harmonic Spirit Shield" "Heathen Wand" "Hellion's Paw" "Hubris Circlet" "Hussar Brigandine" "Imperial Bow" "Imperial Claw" "Imperial Maul" "Imperial Staff" "Infernal Sword" "Iron Ring" "Ivory Spirit Shield" "Jewelled Foil" "Lacquered Buckler" "Laminated Kite Shield" "Lapis Amulet" "Lead Sceptre" "Legion Sword" "Lion Pelt" "Lion Sword" "Lithe Blade" "Lunaris Circlet" "Maelström Staff" "Maraketh Bow" "Meatgrinder" "Midnight Blade" "Mind Cage" "Moon Staff" "Mosaic Kite Shield" "Nightmare Bascinet" "Ochre Sceptre" "Opal Sceptre" "Pagan Wand" "Paua Amulet" "Pecoraro" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Platinum Sceptre" "Polished Spiked Shield" "Praetor Crown" "Prophecy Wand" "Prophet Crown" "Reaver Axe" "Reaver Helmet" "Reinforced Greaves" "Riveted Boots" "Royal Burgonet" "Ruby Ring" "Samite Helmet" "Sapphire Ring" "Satin Gloves" "Secutor Helm" "Sekhem" "Serpent Wand" "Serrated Foil" "Siege Helmet" "Silk Gloves" "Silken Wrap" "Sinner Tricorne" "Solar Maul" "Sorcerer Gloves" "Spiraled Foil" "Steel Gauntlets" "Sun Plate" "Talon Axe" "Thorium Spirit Shield" "Timber Axe" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Tornado Wand" "Trapper Boots" "Twin Claw" "Two-Toned Boots" "Unset Ring" "Vaal Axe" "Vaal Buckler" "Vaal Gauntlets" "Vaal Greatsword" "Vaal Sceptre" "Vaal Spirit Shield" "Void Axe" "Void Sceptre" "Walnut Spirit Shield" "War Axe" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#===============================================================================================================
# [[0800]] Influenced Item Tiering: Redeemer
#===============================================================================================================
#------------------------------------
# [0801] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->redeemer
HasInfluence Redeemer
ItemLevel >= 82
Rarity <= Rare
BaseType "Opal Ring" "Stygian Vise" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-2 $type->rare->redeemer
HasInfluence Redeemer
ItemLevel >= 84
Rarity <= Rare
BaseType "Crystal Belt" "Marble Amulet"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-3 $type->rare->redeemer
HasInfluence Redeemer
ItemLevel >= 85
Rarity <= Rare
BaseType "Cerulean Ring" "Elegant Round Shield" "Ezomyte Burgonet" "Fingerless Silk Gloves" "Hubris Circlet" "Lion Pelt" "Mind Cage" "Poignard" "Prismatic Ring" "Sage Wand" "Slink Boots" "Sorcerer Boots" "Spiked Gloves" "Steel Ring" "Supreme Spiked Shield" "Titan Greaves" "Titanium Spirit Shield" "Vaal Regalia" "Vaal Spirit Shield"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0802] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->redeemer
HasInfluence Redeemer
ItemLevel >= 80
Rarity <= Rare
BaseType "Behemoth Mace" "Blue Pearl Amulet" "Bone Helmet" "Citrine Amulet" "Crystal Belt" "Horned Sceptre" "Opal Ring" "Pernach" "Prismatic Ring" "Sage Wand" "Sekhem" "Spiked Gloves" "Stygian Vise" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2-2 $type->rare->redeemer
HasInfluence Redeemer
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Ancient Greaves" "Angelic Kite Shield" "Antique Greaves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Baroque Round Shield" "Battle Hammer" "Battle Plate" "Boot Blade" "Branded Kite Shield" "Bronze Tower Shield" "Cabalist Regalia" "Callous Mask" "Cerulean Ring" "Colossal Tower Shield" "Compound Bow" "Compound Spiked Shield" "Convoking Wand" "Crested Tower Shield" "Crusader Boots" "Crusader Chainmail" "Crystal Wand" "Deicide Mask" "Dragonscale Boots" "Ebony Tower Shield" "Eelskin Tunic" "Elegant Round Shield" "Engraved Wand" "Estoc" "Etched Kite Shield" "Eternal Burgonet" "Exquisite Blade" "Ezomyte Axe" "Ezomyte Blade" "Ezomyte Burgonet" "Ezomyte Dagger" "Ezomyte Spiked Shield" "Ezomyte Staff" "Ezomyte Tower Shield" "Festival Mask" "Fingerless Silk Gloves" "Fleshripper" "Footman Sword" "Fossilised Spirit Shield" "Full Chainmail" "Gavel" "Gilded Sallet" "Girded Tower Shield" "Gladiator Helmet" "Gladiator Plate" "Gladius" "Grappler" "Grinning Fetish" "Gripped Gloves" "Harmonic Spirit Shield" "Hubris Circlet" "Imperial Bow" "Jade Amulet" "Jewelled Foil" "Lapis Amulet" "Latticed Ringmail" "Legion Hammer" "Lion Pelt" "Lion Sword" "Maelström Staff" "Mahogany Tower Shield" "Marble Amulet" "Meatgrinder" "Mind Cage" "Murder Boots" "Necromancer Circlet" "Nubuck Boots" "Onyx Amulet" "Opal Wand" "Pagan Wand" "Pecoraro" "Piledriver" "Platinum Kris" "Poignard" "Profane Wand" "Quarterstaff" "Quilted Jacket" "Ranger Bow" "Reaver Helmet" "Reinforced Greaves" "Royal Burgonet" "Sadist Garb" "Sage's Robe" "Shackled Boots" "Sharkskin Boots" "Silken Hood" "Silken Wrap" "Sinner Tricorne" "Slink Boots" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Round Shield" "Spiny Round Shield" "Spiraled Foil" "Stealth Boots" "Stealth Gloves" "Steel Kite Shield" "Steel Ring" "Steelhead" "Steelscale Boots" "Sun Plate" "Supreme Spiked Shield" "Talon Axe" "Thorium Spirit Shield" "Throat Stabber" "Tiger Hook" "Tiger's Paw" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Turquoise Amulet" "Twin Claw" "Unset Ring" "Ursine Pelt" "Vaal Greaves" "Vaal Mask" "Vaal Regalia" "Vaal Sceptre" "Vaal Spirit Shield" "Vanguard Belt" "Walnut Spirit Shield" "Wyrmscale Doublet" "Zealot Helmet" "Zodiac Leather"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#===============================================================================================================
# [[0900]] Influenced Item Tiering: Shaper
#===============================================================================================================
#------------------------------------
# [0901] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 82
Rarity <= Rare
BaseType "Colossal Tower Shield" "Crystal Belt" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Harmonic Spirit Shield" "Ornate Quiver" "Steel Ring" "Titanium Spirit Shield" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-2 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 84
Rarity <= Rare
BaseType "Bone Helmet" "Eclipse Staff" "Fossilised Spirit Shield" "Gripped Gloves" "Hubris Circlet" "Lacewood Spirit Shield" "Leather Belt" "Marble Amulet" "Opal Ring" "Sorcerer Boots" "Spiked Gloves" "Stygian Vise" "Two-Toned Boots" "Vaal Spirit Shield"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-3 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 86
Rarity <= Rare
BaseType "Archon Kite Shield" "Cerulean Ring" "Chiming Spirit Shield" "Citrine Amulet" "Diamond Ring" "Ebony Tower Shield" "Girded Tower Shield" "Harbinger Bow" "Imperial Bow" "Ivory Spirit Shield" "Moon Staff" "Opal Wand" "Pinnacle Tower Shield" "Spine Bow" "Thicket Bow" "Thorium Spirit Shield" "Vaal Regalia"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0902] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 80
Rarity <= Rare
BaseType "Ancient Spirit Shield" "Arcanist Gloves" "Archon Kite Shield" "Blue Pearl Amulet" "Bone Helmet" "Ceremonial Kite Shield" "Champion Kite Shield" "Chiming Spirit Shield" "Colossal Tower Shield" "Coral Ring" "Crystal Belt" "Diamond Ring" "Ebony Tower Shield" "Ezomyte Spiked Shield" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Golden Buckler" "Harmonic Spirit Shield" "Horned Sceptre" "Imperial Buckler" "Ivory Spirit Shield" "Lacewood Spirit Shield" "Lacquered Buckler" "Leather Belt" "Marble Amulet" "Mosaic Kite Shield" "Opal Ring" "Ornate Quiver" "Pagan Wand" "Pinnacle Tower Shield" "Quartz Sceptre" "Shagreen Tower Shield" "Solar Maul" "Sorcerer Boots" "Sorcerer Gloves" "Spiny Round Shield" "Spiraled Wand" "Steel Ring" "Stygian Vise" "Sundering Axe" "Thorium Spirit Shield" "Titanium Spirit Shield" "Topaz Ring" "Two-Stone Ring" "Two-Toned Boots" "Vaal Spirit Shield" "Vanguard Belt" "Vermillion Ring" "Walnut Spirit Shield"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2-2 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Angelic Kite Shield" "Antique Greaves" "Arcanist Slippers" "Assassin Bow" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cerulean Ring" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Convoking Wand" "Coral Amulet" "Coronal Maul" "Crescent Staff" "Crimson Round Shield" "Crusader Buckler" "Crusader Helmet" "Crystal Wand" "Despot Axe" "Eclipse Staff" "Enameled Buckler" "Engraved Wand" "Etched Kite Shield" "Exquisite Blade" "Ezomyte Blade" "Ezomyte Burgonet" "Ezomyte Staff" "Faun's Horn" "Gilded Buckler" "Girded Tower Shield" "Gold Amulet" "Golden Kris" "Golden Mask" "Grappler" "Great Mallet" "Grinning Fetish" "Gripped Gloves" "Harbinger Bow" "Heathen Wand" "Heavy Belt" "Hubris Circlet" "Imbued Wand" "Imperial Bow" "Iron Ring" "Jade Amulet" "Lapis Amulet" "Lead Sceptre" "Lion Pelt" "Lion Sword" "Maelström Staff" "Mahogany Tower Shield" "Maraketh Bow" "Military Staff" "Mind Cage" "Mirrored Spiked Shield" "Moon Staff" "Moonstone Ring" "Noble Tricorne" "Occultist's Vestment" "Ochre Sceptre" "Onyx Amulet" "Opal Sceptre" "Opal Wand" "Paua Amulet" "Pecoraro" "Platinum Kris" "Poignard" "Polished Spiked Shield" "Profane Wand" "Prophecy Wand" "Reaver Helmet" "Reinforced Greaves" "Reinforced Tower Shield" "Royal Burgonet" "Ruby Ring" "Rustic Sash" "Sambar Sceptre" "Sapphire Ring" "Satin Gloves" "Scholar Boots" "Serrated Arrow Quiver" "Shadow Axe" "Sharktooth Arrow Quiver" "Silken Hood" "Sleek Coat" "Slink Boots" "Soldier Boots" "Spiked Gloves" "Spike-Point Arrow Quiver" "Spine Bow" "Steel Kite Shield" "Steelhead" "Steelscale Boots" "Studded Belt" "Supreme Spiked Shield" "Tempered Foil" "Thicket Bow" "Titan Greaves" "Tornado Wand" "Turquoise Amulet" "Unset Ring" "Vaal Axe" "Vaal Buckler" "Vaal Greaves" "Vaal Regalia" "Void Sceptre" "Wyrmbone Rapier"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#===============================================================================================================
# [[1000]] Influenced Item Tiering: Elder
#===============================================================================================================
#------------------------------------
# [1001] Item Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->elder
HasInfluence Elder
ItemLevel >= 82
Rarity <= Rare
BaseType "Bone Helmet" "Crystal Belt" "Fingerless Silk Gloves" "Opal Ring" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-2 $type->rare->elder
HasInfluence Elder
ItemLevel >= 84
Rarity <= Rare
BaseType "Astral Plate" "Blue Pearl Amulet" "Citadel Bow" "Marble Amulet" "Pagan Wand"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $tier->t1-3 $type->rare->elder
HasInfluence Elder
ItemLevel >= 86
Rarity <= Rare
BaseType "Assassin's Garb" "Cerulean Ring" "Convoking Wand" "Eternal Burgonet" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Fleshripper" "Gripped Gloves" "Harmonic Spirit Shield" "Horned Sceptre" "Hubris Circlet" "Piledriver" "Praetor Crown" "Reaver Helmet" "Ritual Sceptre" "Riveted Boots" "Royal Burgonet" "Samite Helmet" "Satin Slippers" "Secutor Helm" "Shackled Boots" "Sorcerer Boots" "Steelscale Boots" "Titan Greaves" "Vaal Axe" "Vaal Greaves" "Vanguard Belt" "Zealot Boots"
SetFontSize 45
SetTextColor 50 130 165 255 # TEXTCOLOR: ShaperElder
SetBorderColor 50 130 165 255 # BORDERCOLOR: Shaper T1
SetBackgroundColor 255 255 255 255 # BACKGROUND: T0 Drop
PlayAlertSound 1 300 # DROPSOUND: T0 Drop
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [1002] Item Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->elder
HasInfluence Elder
ItemLevel >= 80
Rarity <= Rare
BaseType "Astral Plate" "Bone Helmet" "Crescent Staff" "Crystal Belt" "Ezomyte Spiked Shield" "Fingerless Silk Gloves" "Gripped Gloves" "Imperial Maul" "Lithe Blade" "Marble Amulet" "Mosaic Kite Shield" "Opal Ring" "Prismatic Ring" "Sage Wand" "Scholar Boots" "Silk Gloves" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Tribal Circlet" "Two-Toned Boots" "Vaal Axe" "Vanguard Belt" "Vermillion Ring" "Zealot Boots"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2-2 $type->rare->elder
HasInfluence Elder
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Ambush Boots" "Ambush Mitts" "Ancient Greaves" "Antique Greaves" "Arcanist Gloves" "Arcanist Slippers" "Arena Plate" "Assassin Bow" "Assassin's Boots" "Assassin's Garb" "Aventail Helmet" "Battle Plate" "Blue Pearl Amulet" "Bone Circlet" "Bronze Plate" "Callous Mask" "Cardinal Round Shield" "Carnal Boots" "Cerulean Ring" "Citadel Bow" "Citrine Amulet" "Close Helmet" "Colossal Tower Shield" "Compound Spiked Shield" "Conjurer Boots" "Convoking Wand" "Courtesan Sword" "Crusader Boots" "Crystal Sceptre" "Death Bow" "Decurve Bow" "Deicide Mask" "Diamond Ring" "Dragon Mace" "Dragonscale Boots" "Dream Mace" "Eternal Burgonet" "Exquisite Blade" "Ezomyte Blade" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Fencer Helm" "Fleshripper" "Fluted Bascinet" "Footman Sword" "Gemini Claw" "Gilded Sallet" "Gladiator Helmet" "Glorious Plate" "Gold Amulet" "Golden Mask" "Goliath Greaves" "Great Crown" "Grove Bow" "Harbinger Bow" "Harlequin Mask" "Harmonic Spirit Shield" "Headsman Axe" "Heavy Belt" "Horned Sceptre" "Hubris Circlet" "Hunter Hood" "Hydrascale Boots" "Imperial Bow" "Imperial Claw" "Iron Greaves" "Ivory Spirit Shield" "Jade Amulet" "Jasper Axe" "Jasper Chopper" "Judgement Staff" "Lacquered Buckler" "Lacquered Helmet" "Lapis Amulet" "Leather Belt" "Legion Boots" "Lion Pelt" "Lunaris Circlet" "Maelström Staff" "Magistrate Crown" "Maraketh Bow" "Mesh Boots" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Necromancer Circlet" "Nightmare Bascinet" "Noble Tricorne" "Nubuck Boots" "Nubuck Gloves" "Ochre Sceptre" "Onyx Amulet" "Ornate Mace" "Pagan Wand" "Painted Tower Shield" "Paua Amulet" "Pig-Faced Bascinet" "Piledriver" "Pinnacle Tower Shield" "Poignard" "Praetor Crown" "Prophet Crown" "Ranger Bow" "Raven Mask" "Reaver Axe" "Reaver Helmet" "Regicide Mask" "Reinforced Greaves" "Ritual Sceptre" "Riveted Boots" "Royal Axe" "Royal Burgonet" "Ruby Ring" "Sage's Robe" "Samite Helmet" "Samite Slippers" "Sapphire Ring" "Satin Slippers" "Secutor Helm" "Shackled Boots" "Shagreen Boots" "Sharkskin Boots" "Sharktooth Arrow Quiver" "Siege Axe" "Siege Helmet" "Silk Robe" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Solaris Circlet" "Soldier Boots" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Round Shield" "Spine Bow" "Spiny Round Shield" "Stealth Boots" "Steel Circlet" "Steelscale Boots" "Sundering Axe" "Talon Axe" "Thicket Bow" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tomahawk" "Topaz Ring" "Trapper Boots" "Trisula" "Turquoise Amulet" "Twin Claw" "Two-Stone Ring" "Unset Ring" "Ursine Pelt" "Vaal Buckler" "Vaal Gauntlets" "Vaal Greaves" "Vaal Mask" "Vaal Regalia" "Walnut Spirit Shield" "Wyrmbone Rapier" "Wyrmscale Boots" "Zealot Gloves" "Zealot Helmet"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#===============================================================================================================
# [[1100]] Influenced Item Tiering: Remaining Tiers
#===============================================================================================================
#------------------------------------
# [1101] Item Layer - T2 - Class Based Filtering
#------------------------------------
Show # %D4 $tier->slamweapons $type->rare->newinfluences
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 83
DropLevel > 55
Rarity <= Rare
Class "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Warstaves"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 0 0 255
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2c $type->rare->newinfluences
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 84
DropLevel > 55
Rarity <= Rare
Class "Boots" "Gloves" "Helmets" "Shields"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
Show # %D5 $tier->t2cc $type->rare->newinfluences
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 83
Rarity <= Rare
Class "Amulets" "Belts" "Rings"
SetFontSize 45
SetTextColor 255 255 255 255 # TEXTCOLOR: Cosmetic White
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 20 110 220 # BACKGROUND: ShaperElder T2
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Yellow
MinimapIcon 0 Yellow Cross
#------------------------------------
# [1102] Item Layer - T3 - REMAINING RULES
#------------------------------------
Show # $tier->rest->i86 $type->rare->newinfluence
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 86
Rarity <= Rare
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 50 130 165 # BACKGROUND: Shaper T3
Show # %D4 $tier->rest-trinkets $type->rare->influence
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity <= Rare
Class "Amulet" "Belts" "Ring"
SetFontSize 45
SetBorderColor 25 235 25 255 # BORDERCOLOR: Shaper Elder Ring
SetBackgroundColor 50 130 165 # BACKGROUND: Shaper T3
Show # %D5 $tier->rest $type->rare->newinfluence
HasInfluence Crusader Hunter Redeemer Warlord
Rarity <= Rare
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 50 130 165 # BACKGROUND: Shaper T3
Show # %D5 $tier->rest $type->rare->influence
HasInfluence Elder Shaper
Rarity <= Rare
SetFontSize 45
SetBorderColor 255 255 255 255 # BORDERCOLOR: T1 highlight
SetBackgroundColor 50 130 165 # BACKGROUND: Shaper T3
#===============================================================================================================
# [[1200]] Explicit Mod filtering - Rare
#===============================================================================================================
#------------------------------------
# [1201] All Skill Gem Combinations
#------------------------------------
Show # $type->expl->rare
Corrupted False
Identified True
Class "Bow" "Staves"
HasExplicitMod "Lava Conjurer's" "Splintermind's" "Tecton's" "Tempest Master's" "Winter Beckoner's"
HasExplicitMod "Magister's"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 0 240 190 240 # BORDERCOLOR: Special Base
SetBackgroundColor 0 75 30 255 # BACKGROUND: Rare T1
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Blue
MinimapIcon 0 Blue Cross
Show # $type->expl->rare
Corrupted False
Identified True
Class "Rune Dagger" "Sceptres" "Wands"
HasExplicitMod "Flame Shaper's" "Frost Singer's" "Lithomancer's" "Mad Lord's" "Thunderhand's"
HasExplicitMod "Magister's"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 0 240 190 240 # BORDERCOLOR: Special Base
SetBackgroundColor 0 75 30 255 # BACKGROUND: Rare T1
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Blue
MinimapIcon 0 Blue Diamond
#------------------------------------
# [1202] Rare Item Permutations
#------------------------------------
Show # $type->expl->rare
Identified True
DropLevel > 50
Rarity Rare
Class "Bows" "Wands"
HasExplicitMod "Bloodthirsty" "Cruel" "Merciless" "Tacati" "Tyrannical"
HasExplicitMod "Annealed" "Flaring" "Razor-sharp" "Tempered"
HasExplicitMod "of Ease" "of Mastery" "of Renown"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 0 240 190 240 # BORDERCOLOR: Special Base
SetBackgroundColor 0 75 30 255 # BACKGROUND: Rare T1
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->expl->rare
Corrupted False
Identified True
DropLevel > 50
Rarity Rare
Class "Bows" "Wands"
HasExplicitMod "Merciless" "Tyrannical"
HasExplicitMod "of Incision" "of Renown"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 0 240 190 240 # BORDERCOLOR: Special Base
SetBackgroundColor 0 75 30 255 # BACKGROUND: Rare T1
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Blue
MinimapIcon 0 Blue Diamond
#------------------------------------
# [1203] Weapons-Physical (Key: IPD)
#------------------------------------
Show # $type->expl->rare
Identified True
DropLevel > 50
Rarity Rare
HasExplicitMod "Bloodthirsty" "Cruel" "Merciless" "Tacati" "Tyrannical"
HasExplicitMod "Annealed" "Flaring" "Razor-sharp" "Tempered"
HasExplicitMod "Champion's" "Conqueror's" "Dictator's" "Emperor's" "of Acclaim" "of Celebration" "of Destruction" "of Fame" "of Incision" "of Infamy" "of Penetrating" "of Renown" "of the Assassin"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 0 240 190 240 # BORDERCOLOR: Special Base
SetBackgroundColor 0 75 30 255 # BACKGROUND: Rare T1
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->expl->rare
Identified True
DropLevel > 50
Rarity Rare
HasExplicitMod "Cruel" "Merciless" "Tacati" "Tyrannical"
HasExplicitMod "Conqueror's" "Dictator's" "Emperor's" "Flaring" "Razor-sharp" "Tempered"
SetFontSize 45
SetTextColor 255 190 0 # TEXTCOLOR: Rare 75+
SetBorderColor 0 240 190 240 # BORDERCOLOR: Special Base
SetBackgroundColor 0 75 30 255 # BACKGROUND: Rare T1
PlayAlertSound 3 300 # DROPSOUND: Unique
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->expl->rare