forked from NeverSinkDev/NeverSink-Filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
leveling.filter
8777 lines (7769 loc) · 387 KB
/
leveling.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.11.0
# TYPE: 2-SEMI-STRICT
# 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
# [0703] YADDA
# [[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] ID MODS START
# [1202] Physical
# [1203] Elemental
# [1204] Gembased
# [1205] Caster
# [1206] Spellslinger
# [1207] Boots
# [1208] Gloves
# [1209] Helmets
# [1210] Amulets
# [1211] Rings
# [1212] Quivers
# [1213] Belts
# [1214] Shields
# [1215] Jewels
# [1216] Misc
# [1217] Flasks...
# [[1300]] Talisman
# [[1400]] 6Socketed and 5Linked Drops
# [[1500]] Explicit Mod Highlight - League Drops
# [1501] Fractured Drops
# [1502] Synthesed Drops
# [1503] Betrayal
# [1504] Crafting mods
# [1505] Delve
# [1506] Bestiary
# [1507] Incursion - Matatl - traps and movementspeed
# [1508] Incursion - Body Armours - Guatelitzi
# [1509] Incursion - Sumonner Weapons
# [1510] Incursion - Caster Weapons
# [1511] Incursion - Normal Weapons
# [1512] Incursion - Rings, Amulets
# [1513] Incursion - Gloves, Helmets
# [1514] Incursion General
# [1515] Warbands
# [[1600]] Cluster Jewels
# [1601] Large Jewels
# [1602] Medium Jewels
# [1603] Smol Jewels
# [[1700]] Enchanted Items
# [[1800]] Explicit Mod Highlight - Magic
# [[1900]] Trinkets
# [[2000]] Exotic Item Types
# [[2100]] Ritual BaseTypes
# [[2200]] Heist Experimental BaseTypes
# [[2300]] Rare/Magic Jewels
# [2301] Special Cases
# [2302] Abyss
# [2303] Generic
# [[2400]] Normal/Magic Crafting Bases
# [2401] Extreme Value ILVL 86 Rules
# [2402] 86+ Endgame crafting rules
# [2403] 84+ Endgame crafting rules
# [2404] Level-Independent Highlight
# [[2500]] Additional Endgame Crafting Bases
# [[2600]] Chancing Section
# [[2700]] Endgame Flasks
# [2701] High quality assorted utility flasks
# [2702] 20 Qual Recipe
# [2703] Assorted utility flasks
# [2704] Quality Flask recipes
# [2705] Early mapping life/mana/utility flasks
# [[2800]] Low Value Recipes
# [2801] Chromatic recipe items ("RGB Recipe")
# [2802] Chisel recipe items
# [2803] Animate Weapon script - deactivated by default
# [[2900]] Low Strictness Sections
# [2901] Endgame-start 4-links
# [2902] 60+ Crafting rules for 60++ accessoires
# [2903] Low Strictness Magic/Normal accessoires
# [[3000]] HEIST GEAR
# [3001] Heist Cloaks
# [3002] Heist Brooch
# [3003] Heist Gear
# [3004] Heist Tools
# [[3100]] HIDE LAYER 1 - MAGIC AND NORMAL ITEMS
# [[3200]] OVERRIDE AREA 2 - Override the default rare rulesets here
# [[3300]] RARE ITEMS - SPECIAL BASES
# [[3400]] RARE ITEMS - LEVEL 86 Crafting
# [[3500]] RARE ITEMS - ACCESSOIRES (ENDGAME)
# [3501] Breach Rings Exceptions
# [3502] Rare accessoires
# [[3600]] RARE ITEMS - WEAPONS AND ARMORS (ENDGAME)
# [3601] T1 rare items
# [3602] T2 rare items
# [3603] Other Conditions
# [3604] 1H Rune Dagger
# [3605] 1H Daggers
# [3606] 1H Claws
# [3607] 1H Wands
# [3608] 1H Foils
# [3609] 1H Swords
# [3610] 1H Maces
# [3611] 1H Axes
# [3612] 1H Sceptres
# [3613] Warstaves
# [3614] 2H Staves
# [3615] 2H Swords
# [3616] 2H Axes
# [3617] 2H Maces
# [3618] 2H Bows
# [3619] AR: Boots
# [3620] AR: Gloves
# [3621] AR: Helmets
# [3622] AR: Body Armors
# [3623] OH: Shields
# [3624] OH: Quivers
# [[3700]] HIDE LAYER 2 - RARE ITEMS (65+ ONLY FOR NON-REGULAR VERSIONS)
# [[3800]] OVERRIDE AREA 3 - Override Map, Gem and Flask drops here
# [[3900]] Gem Tierlists
# [3901] Expensive Remarkable Gems - Awakened, Divergent, Anomalous, Phantasmal (T1)
# [3902] Expensive Superior Gems (T1)
# [[4000]] Generic Gem Rules
# [4001] Awakened Gems
# [4002] Alt-Quality Gems
# [4003] Exceptional Gems
# [4004] Special Gems
# [4005] High Tier Gems
# [4006] Leveling Rules
# [4007] Low Quality Gems
# [4008] Leveled Gems
# [4009] Other gems
# [[4100]] UTILITY FLASKS (Levelling Rules)
# [[4200]] HIDE LAYER 3: Random Endgame Flasks
# [[4300]] Replicas
# [[4400]] Maps, fragments and labyrinth items
# [4401] Unique Map Exceptions - T16 harbinger maps have the T1 unique map appearance
# [4402] Unique Maps
# [4403] Labyrinth items, Offerings
# [4404] Blighted maps
# [4405] Delirium/Enchanted Maps!
# [4406] Beyond-Nemesis Maps, for those juicy sextants.
# [4407] Top tier maps (T16)
# [4408] High tier maps(T11-15)
# [4409] Mid tier maps (T6-10)
# [4410] Low tier maps (T1-T5)
# [[4500]] Heist Maps
# [4501] Unique Heist Contracts
# [4502] Heist Contracts
# [4503] Heist Blueprints
# [[4600]] Misc Map Items
# [[4700]] Fragments
# [4701] Echoes/new
# [4702] Scarabs
# [4703] Regular Fragment Tiering
# [[4800]] Currency - Exceptions - Stacked Currency
# [[4900]] Currency - Exceptions - Leveling Currencies
# [[5000]] Currency - PART 1 - Common currency
# [[5100]] Currency - PART 2 - Rare currency
# [5101] Unknown Treatment
# [5102] Regular Rare Currency
# [5103] Incursion Currency
# [5104] Delve Currency - Resonators
# [5105] Delirium Currency
# [5106] Delve Currency - Fossil
# [5107] Heist Currency
# [5108] Top Currency
# [5109] Oil Tier List
# [5110] Maven's Sextant
# [5111] Essence Tier List
# [5112] Perandus
# [5113] Simulacrum Splinters
# [5114] Splinters
# [5115] Incubator
# [5116] Others
# [[5200]] Prophecies
# [[5300]] Divination cards (yes the strange sorting is intended)
# [5301] T1 - Top tier cards
# [5302] T2 - Great cards
# [5303] T3 - Decent cards
# [5304] Special - New/Unknown Divination Cards
# [5305] Special - Special Currency Cards
# [[5400]] Currency - PART 4 - remaining items
# [[5500]] Heist Target
# [[5600]] Metamorph Items
# [[5700]] Uniques!
# [5701] Exceptions #1
# [5702] Tier 1 uniques
# [5703] Exceptions #2
# [5704] Tier 2 uniques
# [5705] Multi-Unique bases.
# [5706] Early Game Predictions
# [5707] Special Unique Searches
# [5708] Tier 3 uniques
# [5709] Tier 4 uniques
# [[5800]] Quest Items and Event Items
# [[5900]] OVERRIDE AREA 4 - Insert your custom Leveling adjustments here
# [[6000]] Leveling - Flasks
# [6001] Hide outdated flasks
# [6002] Hybrid flasks (normal)
# [6003] Life Flasks - Normal (Kudos to Antnee)
# [6004] Mana Flasks - Magic (Kudos to Antnee)
# [[6100]] Leveling - Merged Rules
# [[6200]] Leveling - RGB Recipes
# [[6300]] Leveling - RARES
# [6301] Leveling rares - specific items
# [6302] Leveling rares - Armors
# [6303] Leveling rares - Caster
# [6304] Leveling rares - Melee Weapons
# [6305] Leveling rares - Ranged
# [6306] Leveling rares - Quivers
# [6307] Leveling rares - remaining rules
# [[6400]] Leveling - Useful items
# [6401] Linked gear - 4links
# [6402] Linked gear - 3links
# [6403] Act1
# [6404] Act 2+3
# [6405] Act 4+5+6
# [6406] Optional Recipes
# [6407] 20% quality items for those strange people who want them
# [[6500]] Leveling - natural weapon progression
# [6501] Quivers - Progression
# [6502] Progression - Part 1 1-11
# [6503] Progression - Part 2 11-26
# [6504] Progression - Part 3 26-65
# [[6600]] Leveling - misc normal items
# [6601] Normal items - 3-Socketed Items
# [6602] Normal items - First 4-8 levels - useful items
# [6603] Vendor Normal items - Until level 3 (Remaining)
# [[6700]] Leveling - misc magic items
# [6701] Vendor Magic items - until 3
# [6702] Vendor Magic items - until 16
# [6703] Vendor Magic items - Jewellery
# [6704] Vendor Magic items - Until 24
# [[6800]] HIDE LAYER 5 - Remaining Items
# [[6900]] CATCHALL - if you see pink items - update or revert your changes! This should not be happening!
# [[7000]] 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 200 0 0 255 # BACKGROUND: 6L
SetBorderColor 200 0 0 255 # BACKGROUND: 6L
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 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 200 0 0 255 # BACKGROUND: 6L
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 "Accumulator Wand" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Astrolabe Amulet" "Banishing Blade" "Battery Staff" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Cerulean Ring" "Cogwork Ring" "Cold-attuned Buckler" "Crystal Belt" "Eventuality Rod" "Fingerless Silk Gloves" "Geodesic Ring" "Gripped Gloves" "Heat-attuned Tower Shield" "Impact Force Propagator" "Infernal Blade" "Marble Amulet" "Mechalarm Belt" "Micro-Distillery Belt" "Opal Ring" "Pneumatic Dagger" "Psychotic Axe" "Simplex Amulet" "Solarine Bow" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Transfer-attuned Spirit Shield" "Two-Toned Boots" "Vermillion Ring" "Void Fangs"
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 "Battery Staff" "Crystal Belt" "Crystal Sceptre" "Fickle Spiritblade" "Opal Ring" "Simplex Amulet" "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-2 $type->rare->crusader
HasInfluence Crusader
ItemLevel >= 84
Rarity <= Rare
BaseType "Grinning Fetish" "Marble Amulet" "Quartz Sceptre" "Solar Maul" "Titanium 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->crusader
HasInfluence Crusader
ItemLevel >= 85
Rarity <= Rare
BaseType "Archon Kite Shield" "Astral Plate" "Bone Helmet" "Cerulean Ring" "Chiming Spirit Shield" "Cogwork Ring" "Crusader Buckler" "Crusader Gloves" "Dragonscale Gauntlets" "Enameled Buckler" "Exquisite Blade" "Eye Gouger" "Ezomyte Spiked Shield" "Ezomyte Staff" "Fingerless Silk Gloves" "Heathen Wand" "Infernal Axe" "Jewelled Foil" "Karui Chopper" "Legion Hammer" "Murder Mitts" "Occultist's Vestment" "Royal Burgonet" "Royal Sceptre" "Stag Sceptre" "Two-Toned Boots" "Vaal Gauntlets" "Vaal Greatsword" "Vaal Regalia" "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 "Ambusher" "Archon Kite Shield" "Assassin's Boots" "Battery Staff" "Blood Sceptre" "Blue Pearl Amulet" "Cerulean Ring" "Citrine Amulet" "Cogwork Ring" "Colossal Tower Shield" "Crystal Belt" "Crystal Sceptre" "Dragonscale Gauntlets" "Eclipse Staff" "Enameled Buckler" "Exquisite Leather" "Ezomyte Spiked Shield" "Fickle Spiritblade" "Fingerless Silk Gloves" "Gripped Gloves" "Harmonic Spirit Shield" "Highborn Bow" "Ivory Spirit Shield" "Lacquered Buckler" "Marble Amulet" "Moonstone Ring" "Occultist's Vestment" "Opal Ring" "Prophecy Wand" "Royal Burgonet" "Serpent Wand" "Serpentscale Boots" "Simplex Amulet" "Sinner Tricorne" "Sorcerer Boots" "Spiked Gloves" "Stealth Gloves" "Stygian Vise" "Titanium Spirit Shield" "Unset Ring" "Vaal Greatsword" "Vaal Spirit Shield" "Void Axe"
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 "Abyssal Sceptre" "Angelic Kite Shield" "Arcanist Gloves" "Assassin's Garb" "Astral Plate" "Aventail Helmet" "Battle Lamellar" "Behemoth Mace" "Blood Raiment" "Bone Helmet" "Boot Blade" "Carnal Armour" "Chain Hauberk" "Chiming Spirit Shield" "Colosseum Plate" "Commander's Brigandine" "Compound Bow" "Conquest Chainmail" "Convoking Wand" "Coronal Leather" "Coronal Maul" "Courtesan Sword" "Crusader Buckler" "Crusader Gloves" "Crusader Plate" "Crystal Wand" "Cutthroat's Garb" "Deicide Mask" "Demon Dagger" "Desert Brigandine" "Destiny Leather" "Destroyer Regalia" "Dragonbone Rapier" "Dragonscale Doublet" "Dragoon Sword" "Elegant Ringmail" "Engraved Greatsword" "Engraved Wand" "Eternal Burgonet" "Eternal Sword" "Exquisite Blade" "Eye Gouger" "Ezomyte Blade" "Ezomyte Staff" "Fiend Dagger" "Fleshripper" "Fossilised Spirit Shield" "Full Dragonscale" "Gemini Claw" "General's Brigandine" "Girded Tower Shield" "Gladiator Helmet" "Gladiator Plate" "Glorious Plate" "Golden Kris" "Golden Plate" "Graceful Sword" "Harbinger Bow" "Heathen Wand" "Highborn Staff" "Hubris Circlet" "Hydrascale Gauntlets" "Imperial Buckler" "Imperial Claw" "Imperial Maul" "Infernal Axe" "Iron Sceptre" "Ivory Bow" "Jewelled Foil" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Laminated Kite Shield" "Lapis Amulet" "Lathi" "Leather Belt" "Legion Hammer" "Legion Sword" "Lion Pelt" "Loricated Ringmail" "Maelström Staff" "Majestic Plate" "Midnight Blade" "Mind Cage" "Moon Staff" "Murder Boots" "Murder Mitts" "Necromancer Silks" "Nightmare Bascinet" "Noble Tricorne" "Nubuck Boots" "Onyx Amulet" "Opal Sceptre" "Opal Wand" "Pecoraro" "Penetrating Arrow Quiver" "Phantom Mace" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Platinum Kris" "Poignard" "Praetor Crown" "Prehistoric Claw" "Primeval Rapier" "Primordial Staff" "Prophet Crown" "Quartz Sceptre" "Reaver Axe" "Royal Axe" "Royal Sceptre" "Rustic Sash" "Sadist Garb" "Saintly Chainmail" "Saint's Hauberk" "Sambar Sceptre" "Satin Gloves" "Savant's Robe" "Sekhem" "Sentinel Jacket" "Serpentscale Gauntlets" "Serrated Foil" "Shadow Sceptre" "Sharkskin Boots" "Sharkskin Tunic" "Siege Helmet" "Sleek Coat" "Solar Maul" "Sorcerer Gloves" "Spine Bow" "Stag Sceptre" "Steel Circlet" "Steel Ring" "Steelwood Bow" "Sun Plate" "Supreme Spiked Shield" "Terror Maul" "Thorium Spirit Shield" "Titan Greaves" "Tornado Wand" "Trisula" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Axe" "Vaal Gauntlets" "Vaal Hatchet" "Vaal Regalia" "Vermillion Ring" "Void Sceptre" "Widowsilk Robe" "Wyrmscale Gauntlets" "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 "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Crack Mace" "Ezomyte Spiked Shield" "Fingerless Silk Gloves" "Gripped Gloves" "Malign Fangs" "Marble Amulet" "Ornate Quiver" "Pneumatic Dagger" "Sorcerer Boots" "Spiked Gloves" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots" "Vermillion Ring" "Void Fangs"
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 "Colossal Tower Shield" "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->hunter
HasInfluence Hunter
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Arcanist Slippers" "Astral Plate" "Behemoth Mace" "Citrine Amulet" "Compound Spiked Shield" "Crystal Belt" "Dragonscale Boots" "Ezomyte Dagger" "Ezomyte Tower Shield" "Girded Tower Shield" "Golden Buckler" "Harpy Rapier" "Hubris Circlet" "Imperial Buckler" "Imperial Maul" "Laminated Kite Shield" "Legion Hammer" "Maraketh Bow" "Ornate Mace" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Polished Spiked Shield" "Primordial Staff" "Prophet Crown" "Serpentscale Gauntlets" "Slink Boots" "Slink Gloves" "Sorcerer Gloves" "Spiked Round Shield" "Supreme Spiked Shield" "Tiger Hook" "Turquoise Amulet" "Vaal Greaves" "Vaal Mask"
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" "Assassin's Garb" "Astral Plate" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Brass Spirit Shield" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Cerulean Ring" "Champion Kite Shield" "Citrine Amulet" "Compound Spiked Shield" "Crack Mace" "Crimson Raiment" "Crusader Boots" "Crusader Gloves" "Crystal Belt" "Despot Axe" "Dragoon Sword" "Eclipse Staff" "Enameled Buckler" "Engraved Hatchet" "Etched Kite Shield" "Ezomyte Spiked Shield" "Fingerless Silk Gloves" "Full Dragonscale" "Gold Amulet" "Gripped Gloves" "Harmonic Spirit Shield" "Infernal Axe" "Jade Amulet" "Lapis Amulet" "Legion Hammer" "Maelström Staff" "Malign Fangs" "Marble Amulet" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Opal Ring" "Opal Sceptre" "Opal Wand" "Ornate Quiver" "Paua Amulet" "Penetrating Arrow Quiver" "Pernach" "Pinnacle Tower Shield" "Pneumatic Dagger" "Polished Spiked Shield" "Prismatic Ring" "Sambar Sceptre" "Serpentscale Gauntlets" "Serrated Arrow Quiver" "Sharktooth Arrow Quiver" "Sorcerer Boots" "Spiked Gloves" "Spike-Point Arrow Quiver" "Stealth Gloves" "Steel Gauntlets" "Steel Ring" "Stygian Vise" "Thorium Spirit Shield" "Tiger Sword" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Turquoise Amulet" "Twin Claw" "Two-Toned Boots" "Vaal Greaves" "Vaal Sceptre" "Vermillion Ring" "Void Axe" "Void Fangs"
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 "Abyssal Axe" "Abyssal Sceptre" "Alder Spiked Shield" "Ambush Boots" "Ambush Mitts" "Ancient Greaves" "Angelic Kite Shield" "Antique Gauntlets" "Antique Greaves" "Arcanist Slippers" "Archon Kite Shield" "Assassin Bow" "Assassin's Boots" "Assassin's Mitts" "Auric Mace" "Baroque Round Shield" "Battle Plate" "Behemoth Mace" "Blood Sceptre" "Bone Circlet" "Butcher Knife" "Callous Mask" "Carnal Armour" "Carnal Boots" "Carnal Sceptre" "Chain Hauberk" "Chest Splitter" "Chiming Spirit Shield" "Colossal Tower Shield" "Commander's Brigandine" "Conjurer Boots" "Conjurer Gloves" "Conquest Chainmail" "Coral Amulet" "Corrugated Buckler" "Crested Tower Shield" "Crusader Buckler" "Crusader Chainmail" "Crypt Armour" "Cutthroat's Garb" "Devout Chainmail" "Dragonscale Boots" "Dragonscale Gauntlets" "Eelskin Boots" "Elegant Ringmail" "Engraved Wand" "Eternal Burgonet" "Eternal Sword" "Exquisite Blade" "Exquisite Leather" "Ezomyte Dagger" "Ezomyte Tower Shield" "Fancy Foil" "Fire Arrow Quiver" "Flanged Mace" "Fleshripper" "Gemini Claw" "General's Brigandine" "Girded Tower Shield" "Glorious Plate" "Golden Buckler" "Golden Kris" "Goliath Gauntlets" "Goliath Greaves" "Gut Ripper" "Harbinger Bow" "Harpy Rapier" "Heathen Wand" "Heavy Belt" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Imperial Maul" "Infernal Sword" "Ironwood Buckler" "Jewelled Foil" "Judgement Staff" "Karui Axe" "Lacewood Spirit Shield" "Lacquered Buckler" "Laminated Kite Shield" "Lathi" "Leather Belt" "Legion Boots" "Lion Pelt" "Lunaris Circlet" "Majestic Plate" "Maraketh Bow" "Meatgrinder" "Military Staff" "Mind Cage" "Mirrored Spiked Shield" "Mosaic Kite Shield" "Murder Boots" "Nightmare Bascinet" "Occultist's Vestment" "Ochre Sceptre" "Omen Wand" "Ornate Mace" "Pig-Faced Bascinet" "Piledriver" "Platinum Kris" "Platinum Sceptre" "Praetor Crown" "Prehistoric Claw" "Primordial Staff" "Profane Wand" "Prophet Crown" "Ranger Bow" "Raven Mask" "Riveted Boots" "Royal Axe" "Royal Burgonet" "Royal Sceptre" "Runic Hatchet" "Rustic Sash" "Saintly Chainmail" "Saint's Hauberk" "Samite Slippers" "Satin Slippers" "Sekhem" "Serpent Wand" "Serpentine Staff" "Serpentscale Boots" "Shagreen Boots" "Shagreen Tower Shield" "Sharkskin Boots" "Sharkskin Gloves" "Sharkskin Tunic" "Silken Hood" "Silken Wrap" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Soldier Boots" "Soldier Gloves" "Sorcerer Gloves" "Sovereign Spiked Shield" "Spiked Round Shield" "Spiny Maul" "Stag Sceptre" "Stealth Boots" "Steel Circlet" "Steelwood Bow" "Sun Plate" "Supreme Spiked Shield" "Talon Axe" "Terror Maul" "Thicket Bow" "Tiger Hook" "Trapper Mitts" "Triumphant Lamellar" "Twilight Blade" "Unset Ring" "Ursine Pelt" "Vaal Blade" "Vaal Greatsword" "Vaal Mask" "Vaal Regalia" "Vaal Spirit Shield" "Vanguard Belt" "Varnished Coat" "Void Sceptre" "Widowsilk Robe" "Wyrmscale Boots" "Wyrmscale Doublet" "Wyrmscale Gauntlets" "Zealot Boots" "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 "Boom Mace" "Crushing Force Magnifier" "Disapprobation Axe" "Fingerless Silk Gloves" "Marble Amulet" "Psychotic Axe" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Void Fangs"
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 "Gripped Gloves" "Hubris Circlet" "Opal Ring" "Vaal Greatsword" "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-3 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 85
Rarity <= Rare
BaseType "Astral Plate" "Blood Raiment" "Blue Pearl Amulet" "Bone Helmet" "Citrine Amulet" "Cogwork Ring" "Convoking Wand" "Corrugated Buckler" "Ezomyte Tower Shield" "Gemini Claw" "Golden Buckler" "Hellion's Paw" "Imperial Skean" "Ironwood Buckler" "Karui Sceptre" "Lead Sceptre" "Mind Cage" "Mirrored Spiked Shield" "Murder Mitts" "Opal Sceptre" "Pagan Wand" "Royal Burgonet" "Stabilising Sceptre" "Stealth Gloves" "Teak Round Shield" "Two-Toned Boots" "Vaal Axe" "Vaal Rapier"
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 "Alder Spiked Shield" "Antique Gauntlets" "Astral Plate" "Blood Sceptre" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Butcher Axe" "Citrine Amulet" "Cogwork Ring" "Conquest Chainmail" "Coronal Maul" "Corrugated Buckler" "Crimson Round Shield" "Crusader Gloves" "Crushing Force Magnifier" "Crystal Sceptre" "Desert Brigandine" "Despot Axe" "Disapprobation Axe" "Dragoon Sword" "Elegant Ringmail" "Estoc" "Eye Gouger" "Ezomyte Tower Shield" "Faun's Horn" "Fingerless Silk Gloves" "Gemini Claw" "Gripped Gloves" "Harbinger Bow" "Heathen Wand" "Hellion's Paw" "Highborn Staff" "Hubris Circlet" "Imperial Buckler" "Ironwood Buckler" "Judgement Staff" "Laminated Kite Shield" "Mahogany Tower Shield" "Marble Amulet" "Mirrored Spiked Shield" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Opal Ring" "Opal Sceptre" "Ornate Quiver" "Pecoraro" "Pernach" "Poignard" "Psychotic Axe" "Ranger Bow" "Sekhem" "Slink Gloves" "Spiked Gloves" "Spiny Round Shield" "Stabilising Sceptre" "Stealth Boots" "Steel Gauntlets" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Terror Claw" "Terror Maul" "Tornado Wand" "Trisula" "Two-Toned Boots" "Vaal Axe" "Vanguard Belt" "Vermillion Ring" "Void Fangs" "War Axe"
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
#------------------------------------
# [0703] YADDA
#------------------------------------
Show # %D5 $tier->t2-2 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 85
Rarity <= Rare
BaseType "Abyssal Axe" "Abyssal Sceptre" "Agate Amulet" "Amber Amulet" "Ancient Greaves" "Angelic Kite Shield" "Arcanist Gloves" "Archon Kite Shield" "Assassin's Garb" "Blood Raiment" "Bone Circlet" "Branded Kite Shield" "Carnal Armour" "Carnal Sceptre" "Cerulean Ring" "Chain Hauberk" "Colossal Tower Shield" "Conjurer Gloves" "Convoking Wand" "Coral Amulet" "Coral Ring" "Courtesan Sword" "Crimson Raiment" "Crusader Boots" "Crusader Plate" "Crystal Belt" "Deicide Mask" "Destroyer Regalia" "Dragon Mace" "Dragonscale Gauntlets" "Eclipse Staff" "Elegant Round Shield" "Eternal Burgonet" "Exquisite Blade" "Ezomyte Blade" "Ezomyte Burgonet" "Ezomyte Dagger" "Ezomyte Spiked Shield" "Fiend Dagger" "Flanged Mace" "Fleshripper" "Full Dragonscale" "General's Brigandine" "Girded Tower Shield" "Glorious Leather" "Glorious Plate" "Gold Amulet" "Golden Buckler" "Golden Plate" "Graceful Sword" "Grinning Fetish" "Harmonic Spirit Shield" "Hunter Hood" "Hussar Brigandine" "Imperial Bow" "Imperial Claw" "Imperial Maul" "Imperial Skean" "Imperial Staff" "Iron Ring" "Ivory Bow" "Jade Amulet" "Jewelled Foil" "Karui Chopper" "Karui Maul" "Karui Sceptre" "Labrys" "Lacewood Spirit Shield" "Lacquered Buckler" "Lapis Amulet" "Lead Sceptre" "Leather Belt" "Legion Gloves" "Lion Pelt" "Lithe Blade" "Maelström Staff" "Majestic Plate" "Maple Round Shield" "Maraketh Bow" "Midnight Blade" "Mind Cage" "Moon Staff" "Necromancer Circlet" "Necromancer Silks" "Oak Buckler" "Omen Wand" "Onyx Amulet" "Opal Wand" "Pagan Wand" "Paua Amulet" "Penetrating Arrow Quiver" "Phantom Mace" "Pig-Faced Bascinet" "Piledriver" "Pinnacle Tower Shield" "Plated Maul" "Prehistoric Claw" "Primordial Staff" "Profane Wand" "Prophet Crown" "Quilted Jacket" "Regicide Mask" "Royal Axe" "Royal Burgonet" "Royal Skean" "Runic Hatchet" "Sadist Garb" "Sage Wand" "Sai" "Saintly Chainmail" "Samnite Helmet" "Sapphire Ring" "Satin Gloves" "Serpentscale Gauntlets" "Serrated Arrow Quiver" "Shadow Sceptre" "Shagreen Gloves" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Solar Maul" "Soldier Boots" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Sovereign Spiked Shield" "Spine Bow" "Spiny Maul" "Spiraled Foil" "Stealth Gloves" "Sun Plate" "Teak Round Shield" "Thicket Bow" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tomahawk" "Topaz Ring" "Turquoise Amulet" "Two-Stone Ring" "Unset Ring" "Ursine Pelt" "Vaal Buckler" "Vaal Gauntlets" "Vaal Mask" "Vaal Rapier" "Vaal Sceptre" "Vaal Spirit Shield" "Varnished Coat" "Void Sceptre" "Walnut Spirit Shield" "Widowsilk Robe" "Wraith Axe"
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 "Anarchic Spiritblade" "Blue Pearl Amulet" "Boom Mace" "Crystal Belt" "Eventuality Rod" "Oscillating Sceptre" "Simplex Amulet" "Sorcerer Boots" "Spiked Gloves" "Tempered Foil" "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 "Angelic Kite Shield" "Ritual Sceptre" "Shadow Sceptre" "Stygian Vise" "Titanium 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->redeemer
HasInfluence Redeemer
ItemLevel >= 85
Rarity <= Rare
BaseType "Abyssal Axe" "Arcanist Slippers" "Bone Helmet" "Chest Splitter" "Chiming Spirit Shield" "Colossal Tower Shield" "Conquest Chainmail" "Ebony Tower Shield" "Exquisite Blade" "Ezomyte Burgonet" "Fingerless Silk Gloves" "Gripped Gloves" "Hubris Circlet" "Lead Sceptre" "Legion Hammer" "Meatgrinder" "Mirrored Spiked Shield" "Opal Ring" "Opal Sceptre" "Sambar Sceptre" "Solar Maul" "Sorcerer Gloves" "Spiraled Foil" "Steel Circlet" "Supreme Spiked Shield" "Thorium 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 "Accumulator Wand" "Ambush Mitts" "Anarchic Spiritblade" "Archon Kite Shield" "Assassin Bow" "Assassin's Garb" "Astral Plate" "Blood Raiment" "Blue Pearl Amulet" "Boom Mace" "Chiming Spirit Shield" "Colossal Tower Shield" "Compound Spiked Shield" "Conjurer's Vestment" "Conquest Chainmail" "Convoking Wand" "Crested Tower Shield" "Crystal Belt" "Crystal Sceptre" "Dragon Mace" "Elegant Round Shield" "Eventuality Rod" "Exquisite Leather" "Eye Gouger" "Ezomyte Tower Shield" "Fleshripper" "Grinning Fetish" "Harbinger Bow" "Imperial Skean" "Ironwood Buckler" "Ivory Bow" "Lathi" "Lion Pelt" "Marble Amulet" "Mirrored Spiked Shield" "Nightmare Bascinet" "Nubuck Boots" "Opal Ring" "Oscillating Sceptre" "Platinum Sceptre" "Quilted Jacket" "Ranger Bow" "Sambar Sceptre" "Samite Slippers" "Shadow Sceptre" "Shagreen Boots" "Simplex Amulet" "Sorcerer Boots" "Spiked Gloves" "Spine Bow" "Steel Circlet" "Steel Ring" "Steelwood Bow" "Stygian Vise" "Tempered Foil" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vanguard Belt" "Vermillion Ring" "Void Sceptre"
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 "Abyssal Axe" "Abyssal Sceptre" "Agate Amulet" "Amber Amulet" "Ambush Boots" "Ambusher" "Angelic Kite Shield" "Arcanist Slippers" "Assassin's Boots" "Auric Mace" "Baroque Round Shield" "Battle Lamellar" "Behemoth Mace" "Blood Sceptre" "Bone Helmet" "Branded Kite Shield" "Butcher Axe" "Cardinal Round Shield" "Cerulean Ring" "Chest Splitter" "Citrine Amulet" "Commander's Brigandine" "Conjurer Boots" "Conjurer Gloves" "Coronal Leather" "Coronal Maul" "Courtesan Sword" "Crusader Boots" "Crypt Armour" "Crystal Wand" "Deicide Mask" "Demon's Horn" "Despot Axe" "Dragonscale Boots" "Dragonscale Gauntlets" "Dragoon Sword" "Dread Maul" "Ebony Tower Shield" "Eclipse Staff" "Engraved Wand" "Eternal Burgonet" "Exquisite Blade" "Ezomyte Burgonet" "Ezomyte Staff" "Fencer Helm" "Fingerless Silk Gloves" "Flanged Mace" "Fluted Bascinet" "Full Dragonscale" "Gemini Claw" "Gemstone Sword" "General's Brigandine" "Girded Tower Shield" "Gladiator Plate" "Gladius" "Glorious Plate" "Gold Amulet" "Golden Buckler" "Goliath Gauntlets" "Goliath Greaves" "Great Crown" "Gripped Gloves" "Heathen Wand" "Highborn Staff" "Hubris Circlet" "Imperial Buckler" "Imperial Claw" "Imperial Maul" "Imperial Staff" "Infernal Axe" "Jade Amulet" "Jewelled Foil" "Judgement Staff" "Karui Sceptre" "Lacquered Helmet" "Lead Sceptre" "Legion Hammer" "Legion Sword" "Lion Sword" "Magistrate Crown" "Maraketh Bow" "Meatgrinder" "Midnight Blade" "Mind Cage" "Murder Boots" "Murder Mitts" "Necromancer Circlet" "Noble Claw" "Occultist's Vestment" "Onyx Amulet" "Opal Sceptre" "Opal Wand" "Penetrating Arrow Quiver" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Platinum Kris" "Praetor Crown" "Prehistoric Claw" "Primeval Rapier" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Royal Burgonet" "Royal Sceptre" "Runic Hatchet" "Sadist Garb" "Sai" "Saintly Chainmail" "Serpent Wand" "Serpentine Staff" "Serrated Arrow Quiver" "Sharkskin Boots" "Sharkskin Tunic" "Silken Hood" "Sinner Tricorne" "Sleek Coat" "Slink Boots" "Slink Gloves" "Solar Maul" "Solaris Circlet" "Soldier Boots" "Soldier Gloves" "Sorcerer Gloves" "Sovereign Spiked Shield" "Spiked Round Shield" "Spiraled Foil" "Stag Sceptre" "Steelhead" "Steelscale Gauntlets" "Supreme Spiked Shield" "Talon Axe" "Terror Claw" "Thorium Spirit Shield" "Throat Stabber" "Trapper Boots" "Turquoise Amulet" "Twin Claw" "Ursine Pelt" "Vaal Blade" "Vaal Greatsword" "Vaal Hatchet" "Vaal Mask" "Vaal Regalia" "Vaal Sceptre" "Vaal Spirit Shield" "Varnished Coat" "Widowsilk Robe" "Wraith Axe" "Wyrmscale Boots" "Zealot Boots" "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
#===============================================================================================================
# [[0900]] Influenced Item Tiering: Shaper
#===============================================================================================================
#------------------------------------
# [0901] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 82
Rarity <= Rare
BaseType "Anarchic Spiritblade" "Astrolabe Amulet" "Crystal Belt" "Ezomyte Tower Shield" "Marble Amulet" "Opal Ring" "Ornate Quiver" "Sekhem" "Steel Ring" "Titanium 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-2 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 84
Rarity <= Rare
BaseType "Fingerless Silk Gloves" "Occultist's Vestment" "Stygian Vise" "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-3 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 86
Rarity <= Rare
BaseType "Archon Kite Shield" "Astral Plate" "Blood Raiment" "Blue Pearl Amulet" "Bone Helmet" "Carnal Sceptre" "Citrine Amulet" "Coronal Maul" "Eclipse Staff" "Elegant Round Shield" "Ezomyte Axe" "Ezomyte Blade" "Gavel" "Glorious Leather" "Gripped Gloves" "Harmonic Spirit Shield" "Harpy Rapier" "Hubris Circlet" "Imperial Maul" "Lacquered Buckler" "Leather Belt" "Mahogany Tower Shield" "Pagan Wand" "Pecoraro" "Sorcerer Boots" "Turquoise Amulet" "Two-Toned Boots" "War 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
#------------------------------------
# [0902] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 80
Rarity <= Rare
BaseType "Ambusher" "Anarchic Spiritblade" "Arcanist Gloves" "Archon Kite Shield" "Astral Plate" "Astrolabe Amulet" "Aventail Helmet" "Battle Sword" "Blue Pearl Amulet" "Bone Helmet" "Brass Spirit Shield" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Cerulean Ring" "Champion Kite Shield" "Citrine Amulet" "Colossal Tower Shield" "Compound Bow" "Crimson Round Shield" "Crystal Belt" "Crystal Wand" "Dragoon Sword" "Elegant Round Shield" "Engraved Greatsword" "Exquisite Blade" "Ezomyte Blade" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Fire Arrow Quiver" "Gemini Claw" "Gripped Gloves" "Harbinger Bow" "Imperial Bow" "Imperial Buckler" "Leather Belt" "Legion Hammer" "Mahogany Tower Shield" "Maple Round Shield" "Marble Amulet" "Mirrored Spiked Shield" "Murder Mitts" "Nubuck Boots" "Occultist's Vestment" "Opal Ring" "Opal Wand" "Ornate Quiver" "Ornate Spiked Shield" "Pinnacle Tower Shield" "Prophet Crown" "Ritual Sceptre" "Riveted Gloves" "Runic Hatchet" "Sage Wand" "Sekhem" "Serrated Arrow Quiver" "Simplex Amulet" "Slink Boots" "Solar Maul" "Stag Sceptre" "Steel Kite Shield" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Titanium Spirit Shield" "Vaal Greaves" "Vanguard Belt" "Vermillion Ring" "War Axe"
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" "Alder Spiked Shield" "Amber Amulet" "Amethyst Ring" "Angelic Kite Shield" "Arcanist Slippers" "Assassin Bow" "Assassin's Boots" "Assassin's Garb" "Auric Mace" "Barbed Club" "Baroque Round Shield" "Battle Plate" "Behemoth Mace" "Blood Raiment" "Blunt Arrow Quiver" "Bronze Tower Shield" "Buckskin Tower Shield" "Burnished Foil" "Butcher Axe" "Carnal Armour" "Carnal Sceptre" "Chain Belt" "Chain Hauberk" "Chiming Spirit Shield" "Commander's Brigandine" "Convoking Wand" "Coral Amulet" "Coral Ring" "Coronal Leather" "Coronal Maul" "Crested Tower Shield" "Crusader Buckler" "Crusader Gloves" "Crypt Armour" "Demon Dagger" "Demon's Horn" "Despot Axe" "Diamond Ring" "Dragonscale Boots" "Dragonscale Gauntlets" "Dread Maul" "Ebony Tower Shield" "Eclipse Staff" "Eelskin Boots" "Eelskin Tunic" "Elegant Ringmail" "Embroidered Gloves" "Eternal Burgonet" "Eternal Sword" "Exquisite Leather" "Eye Gouger" "Ezomyte Axe" "Ezomyte Staff" "Fancy Foil" "Fleshripper" "Fossilised Spirit Shield" "Frontier Leather" "Full Dragonscale" "Gavel" "Gladiator Plate" "Gladius" "Glorious Leather" "Glorious Plate" "Gold Amulet" "Gold Ring" "Golden Buckler" "Harmonic Spirit Shield" "Harpy Rapier" "Heathen Wand" "Hellion's Paw" "Highborn Staff" "Hubris Circlet" "Hunter Hood" "Hydrascale Boots" "Imbued Wand" "Imperial Claw" "Imperial Maul" "Imperial Skean" "Imperial Staff" "Infernal Axe" "Infernal Sword" "Iron Ring" "Ironwood Buckler" "Ivory Spirit Shield" "Jade Amulet" "Jewelled Foil" "Judgement Staff" "Karui Maul" "Lacewood Spirit Shield" "Lacquered Buckler" "Lapis Amulet" "Lathi" "Layered Kite Shield" "Lead Sceptre" "Legion Sword" "Lion Pelt" "Lordly Plate" "Maraketh Bow" "Midnight Blade" "Mind Cage" "Moon Staff" "Murder Boots" "Necromancer Circlet" "Nightmare Bascinet" "Nightmare Mace" "Onyx Amulet" "Opal Sceptre" "Pagan Wand" "Paua Amulet" "Pecoraro" "Pernach" "Piledriver" "Platinum Kris" "Praetor Crown" "Profane Wand" "Quarterstaff" "Ranger Bow" "Reinforced Greaves" "Rock Breaker" "Royal Sceptre" "Ruby Ring" "Sadist Garb" "Saint's Hauberk" "Samite Slippers" "Sapphire Ring" "Serpentscale Boots" "Serpentscale Gauntlets" "Shagreen Gloves" "Shagreen Tower Shield" "Sinner Tricorne" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spike-Point Arrow Quiver" "Spine Bow" "Spiny Maul" "Spiny Round Shield" "Stealth Boots" "Steel Circlet" "Steelwood Bow" "Sun Plate" "Teak Round Shield" "Thicket Bow" "Thorium Spirit Shield" "Tiger Hook" "Titan Greaves" "Tornado Wand" "Trapper Boots" "Triumphant Lamellar" "Turquoise Amulet" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Axe" "Vaal Buckler" "Vaal Gauntlets" "Vaal Hatchet" "Vaal Mask" "Vaal Regalia" "Void Axe" "Void Sceptre" "Walnut Spirit Shield" "Widowsilk Robe" "Woodful Staff" "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
#===============================================================================================================
# [[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" "Boom Mace" "Crack Mace" "Crystal Belt" "Eclipse Staff" "Fingerless Silk Gloves" "Malign Fangs" "Opal Ring" "Pneumatic Dagger" "Stag Sceptre" "Steel Ring" "Void Fangs"
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 "Ezomyte Axe" "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-3 $type->rare->elder
HasInfluence Elder
ItemLevel >= 86
Rarity <= Rare
BaseType "Assassin Bow" "Astral Plate" "Cerulean Ring" "Convoking Wand" "Crested Tower Shield" "Crusader Gloves" "Eternal Burgonet" "Eye Gouger" "Ezomyte Tower Shield" "Faun's Horn" "Gripped Gloves" "Hubris Circlet" "Imperial Maul" "Ivory Spirit Shield" "Legion Hammer" "Occultist's Vestment" "Opal Sceptre" "Poignard" "Ranger Bow" "Reaver Axe" "Royal Axe" "Royal Burgonet" "Sekhem" "Serpentscale Gauntlets" "Sorcerer Boots" "Steelwood Bow" "Tempered Foil" "Vaal Axe" "Vanguard Belt"
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 "Arcanist Gloves" "Archon Kite Shield" "Astral Plate" "Blood Sceptre" "Bone Helmet" "Boom Mace" "Conquest Chainmail" "Crack Mace" "Crusader Boots" "Crusader Gloves" "Crystal Belt" "Cutlass" "Desert Brigandine" "Dragonscale Boots" "Ebony Tower Shield" "Eclipse Staff" "Engraved Hatchet" "Engraved Wand" "Ezomyte Blade" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Faun's Horn" "Fingerless Silk Gloves" "Fleshripper" "Grappler" "Highborn Bow" "Imperial Bow" "Iron Greaves" "Ivory Spirit Shield" "Lead Sceptre" "Maelström Staff" "Malign Fangs" "Murder Boots" "Nubuck Gloves" "Opal Ring" "Pagan Wand" "Pernach" "Pneumatic Dagger" "Sage Wand" "Secutor Helm" "Sekhem" "Spiked Gloves" "Spiraled Foil" "Spiraled Wand" "Stag Sceptre" "Stealth Gloves" "Steel Ring" "Steelhead" "Stygian Vise" "Sundering Axe" "Throat Stabber" "Two-Toned Boots" "Vermillion Ring" "Void Fangs" "War Axe" "Wyrm Mace"
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" "Ambush Boots" "Ambush Mitts" "Ambusher" "Amethyst Ring" "Ancient Greaves" "Antique Gauntlets" "Antique Greaves" "Assassin Bow" "Assassin's Boots" "Assassin's Garb" "Assassin's Mitts" "Auric Mace" "Aventail Helmet" "Battle Buckler" "Battle Lamellar" "Behemoth Mace" "Blood Raiment" "Blue Pearl Amulet" "Bone Circlet" "Boot Blade" "Branded Kite Shield" "Bronze Plate" "Bronzescale Gauntlets" "Cardinal Round Shield" "Carnal Armour" "Carnal Boots" "Carnal Sceptre" "Ceremonial Axe" "Ceremonial Kite Shield" "Cerulean Ring" "Champion Kite Shield" "Citadel Bow" "Citrine Amulet" "Clasped Mitts" "Colossal Tower Shield" "Colosseum Plate" "Conjurer's Vestment" "Convoking Wand" "Coral Ring" "Coronal Maul" "Corrugated Buckler" "Courtesan Sword" "Crested Tower Shield" "Crusader Buckler" "Crusader Helmet" "Crystal Sceptre" "Crystal Wand" "Deicide Mask" "Demon's Horn" "Despot Axe" "Diamond Ring" "Dragon Mace" "Dragonscale Gauntlets" "Dread Maul" "Eagle Claw" "Eelskin Boots" "Eelskin Tunic" "Elder Sword" "Elegant Round Shield" "Embroidered Gloves" "Engraved Greatsword" "Estoc" "Eternal Burgonet" "Eternal Sword" "Exquisite Blade" "Exquisite Leather" "Eye Gouger" "Ezomyte Axe" "Ezomyte Dagger" "Festival Mask" "Flanged Mace" "Fluted Bascinet" "Gemini Claw" "Gemstone Sword" "General's Brigandine" "Girded Tower Shield" "Gladiator Helmet" "Gladiator Plate" "Gladius" "Glorious Leather" "Glorious Plate" "Gold Amulet" "Gold Ring" "Goliath Gauntlets" "Goliath Greaves" "Great White Claw" "Gripped Gloves" "Gut Ripper" "Harbinger Bow" "Harlequin Mask" "Harmonic Spirit Shield" "Heavy Belt" "Highborn Staff" "Hubris Circlet" "Hunter Hood" "Hydrascale Gauntlets" "Imbued Wand" "Imp Dagger" "Imperial Claw" "Imperial Maul" "Imperial Staff" "Infernal Axe" "Infernal Sword" "Ivory Bow" "Jasper Axe" "Jewelled Foil" "Judgement Staff" "Karui Axe" "Karui Sceptre" "Labrys" "Lacquered Helmet" "Lapis Amulet" "Lathi" "Leather Belt" "Legion Boots" "Legion Hammer" "Lion Pelt" "Lion Sword" "Lunaris Circlet" "Magistrate Crown" "Maraketh Bow" "Marble Amulet" "Mesh Boots" "Mesh Gloves" "Midnight Blade" "Military Staff" "Mind Cage" "Moonstone Ring" "Murder Mitts" "Necromancer Circlet" "Nightmare Bascinet" "Nightmare Mace" "Noble Claw" "Noble Tricorne" "Occultist's Vestment" "Omen Wand" "Onyx Amulet" "Opal Sceptre" "Opal Wand" "Ornate Ringmail" "Penetrating Arrow Quiver" "Piledriver" "Pinnacle Tower Shield" "Platinum Kris" "Platinum Sceptre" "Poignard" "Praetor Crown" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Ranger Bow" "Reaver Axe" "Reaver Sword" "Reflex Bow" "Riveted Gloves" "Royal Axe" "Royal Burgonet" "Royal Skean" "Ruby Ring" "Runic Hatchet" "Sadist Garb" "Sai" "Samnite Helmet" "Serpent Wand" "Serpentscale Gauntlets" "Serrated Foil" "Shagreen Boots" "Sharkskin Boots" "Siege Axe" "Siege Helmet" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Solaris Circlet" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Round Shield" "Spine Bow" "Spiny Round Shield" "Steel Kite Shield" "Steelscale Boots" "Steelwood Bow" "Sun Plate" "Talon Axe" "Teak Round Shield" "Tempered Foil" "Terror Claw" "Terror Maul" "Thicket Bow" "Tiger Sword" "Titan Gauntlets" "Titan Greaves" "Topaz Ring" "Trapper Boots" "Triumphant Lamellar" "Turquoise Amulet" "Twilight Blade" "Two-Stone Ring" "Unset Ring" "Ursine Pelt" "Vaal Axe" "Vaal Gauntlets" "Vaal Greatsword" "Vaal Greaves" "Vaal Hatchet" "Vaal Mask" "Vaal Rapier" "Vaal Sceptre" "Vanguard Belt" "Variscite Blade" "Void Sceptre" "Walnut Spirit Shield" "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
#===============================================================================================================
# [[1100]] Influenced Item Tiering: Remaining Tiers
#===============================================================================================================
#------------------------------------
# [1101] Item Layer - T2 - Class Based Filtering
#------------------------------------
#Show
# 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 # %D5 $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 # %D4 $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 # %D4 $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] ID MODS START
#------------------------------------
#------------------------------------
# [1202] Physical
#------------------------------------
Show # $type->rareid $tier->2highphys
Identified True
DropLevel >= 50
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=2 "of the Underground" "Subterranean" "of Tacati" "Tacati's" "Flaring" "Tempered" "Merciless" "Tyrannical" "Dictator's" "Emperor's" "of Celebration"
SetFontSize 45
SetTextColor 255 190 0 255
SetBorderColor 0 240 190 240
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->3highphys
Identified True
DropLevel >= 50
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=3 "of the Underground" "Subterranean" "of Tacati" "Tacati's" "Flaring" "Tempered" "Razor-sharp" "Merciless" "Tyrannical" "Cruel" "Dictator's" "Emperor's" "Conqueror's" "of Celebration" "of Infamy" "of Incision" "of Destruction"
SetFontSize 45
SetTextColor 255 190 0 255
SetBorderColor 0 240 190 240
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->4highphys
Identified True
DropLevel >= 50
Rarity Rare
Class "Bows" "Claws" "Daggers" "One Hand" "Two Hand" "Wands" "Warstaves"
HasExplicitMod >=4 "of the Underground" "Subterranean" "of Tacati" "Tacati's" "Flaring" "Tempered" "Razor-sharp" "Annealed" "Merciless" "Tyrannical" "Cruel" "Bloodthirsty" "Dictator's" "Emperor's" "Conqueror's" "Champion's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Destruction" "of Ferocity"
SetFontSize 45
SetTextColor 255 190 0 255
SetBorderColor 0 240 190 240
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [1203] Elemental
#------------------------------------
Show # $type->rareid $tier->3highele
Identified True
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imperial Bow" "Imperial Claw" "Jewelled Foil" "Maraketh Bow" "Spiraled Foil" "Thicket Bow"
HasExplicitMod >=3 "of the Underground" "Subterranean" "Matatl's" "Tacati" "Topotante's" "Carbonising" "Cremating" "Crystalising" "Entombing" "Vapourising" "Electrocuting" "of Celebration" "of Incision" "of Penetrating" "of Destruction"
SetFontSize 45
SetTextColor 255 190 0 255
SetBorderColor 0 240 190 240
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->4highele
Identified True
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imperial Bow" "Imperial Claw" "Jewelled Foil" "Maraketh Bow" "Spiraled Foil" "Thicket Bow"
HasExplicitMod >=4 "of the Underground" "Subterranean" "Matatl's" "Tacati" "Topotante's" "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "of Celebration" "of Infamy" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity"