This repository has been archived by the owner on Mar 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NeverSink's filter - 0-SOFT.filter
8740 lines (7738 loc) · 382 KB
/
NeverSink's filter - 0-SOFT.filter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#===============================================================================================================
# NeverSink's Indepth Loot Filter - for Path of Exile
#===============================================================================================================
# VERSION: 7.11.2.2021.59.18
# TYPE: 0-SOFT
# 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] 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]] Fragments
# [4601] Echoes/new
# [4602] Scarabs
# [4603] Regular Fragment Tiering
# [[4700]] Currency - Exceptions - Stacked Currency
# [[4800]] Currency - Exceptions - Leveling Currencies
# [[4900]] Currency - PART 1 - Common currency
# [[5000]] Currency - PART 2 - Rare currency
# [5001] Unknown Treatment
# [5002] Regular Rare Currency
# [5003] Incursion Currency
# [5004] Delve Currency - Resonators
# [5005] Delirium Currency
# [5006] Delve Currency - Fossil
# [5007] Heist Currency
# [5008] Top Currency
# [5009] Oil Tier List
# [5010] Essence Tier List
# [5011] Perandus
# [5012] Simulacrum Splinters
# [5013] Splinters
# [5014] Incubator
# [5015] Others
# [[5100]] Prophecies
# [[5200]] Divination cards (yes the strange sorting is intended)
# [5201] T1 - Top tier cards
# [5202] T2 - Great cards
# [5203] T3 - Decent cards
# [5204] Special - New/Unknown Divination Cards
# [5205] Special - Special Currency Cards
# [[5300]] Currency - PART 4 - remaining items
# [[5400]] Heist Target
# [[5500]] Metamorph Items
# [[5600]] Uniques!
# [5601] Exceptions #1
# [5602] Tier 1 uniques
# [5603] Exceptions #2
# [5604] Tier 2 uniques
# [5605] Multi-Unique bases.
# [5606] Early Game Predictions
# [5607] Special Unique Searches
# [5608] Tier 3 uniques
# [5609] Tier 4 uniques
# [[5700]] Quest Items and Event Items
# [[5800]] Misc Map 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 "Anarchic Spiritblade" "Battery Staff" "Boom Mace" "Eternal Burgonet" "Fickle Spiritblade" "Foundry Bow" "Marble Amulet" "Opal Ring" "Royal Burgonet" "Stygian Vise" "Two-Toned Boots" "Unset Ring" "Vaal Regalia" "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->crusader
HasInfluence Crusader
ItemLevel >= 84
Rarity <= Rare
BaseType "Astral Plate" "Blue Pearl Amulet" "Carnal Armour" "Deicide Mask" "Ruby Ring" "Simplex Amulet" "Titanium Spirit Shield" "Topaz Ring" "Two-Stone Ring" "Vaal Axe" "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->crusader
HasInfluence Crusader
ItemLevel >= 85
Rarity <= Rare
BaseType "Agate Amulet" "Bone Helmet" "Cerulean Ring" "Cogwork Ring" "Conquest Chainmail" "Crypt Armour" "Glorious Plate" "Maelström Staff" "Magistrate Crown" "Omen Wand" "Saintly Chainmail" "Sentinel Jacket" "Turquoise Amulet" "Tyrant's Sekhem"
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 "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Anarchic Spiritblade" "Archon Kite Shield" "Astral Plate" "Battery Staff" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Cerulean Ring" "Citrine Amulet" "Cogwork Ring" "Colossal Tower Shield" "Crystal Belt" "Destiny Leather" "Eclipse Staff" "Eternal Burgonet" "Ezomyte Tower Shield" "Fickle Spiritblade" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Foundry Bow" "Gemini Claw" "Heavy Belt" "Hubris Circlet" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Buckler" "Infernal Sword" "Jade Amulet" "Judgement Staff" "Lion Pelt" "Marble Amulet" "Onyx Amulet" "Opal Ring" "Opal Sceptre" "Pinnacle Tower Shield" "Praetor Crown" "Royal Burgonet" "Ruby Ring" "Sadist Garb" "Sai" "Samnite Helmet" "Sapphire Ring" "Savant's Robe" "Serpent Wand" "Simplex Amulet" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spike-Point Arrow Quiver" "Spiraled Wand" "Steel Ring" "Stygian Vise" "Titanium Spirit Shield" "Topaz Ring" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Axe" "Vaal Regalia" "Vanguard Belt" "Vermillion Ring" "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->crusader
HasInfluence Crusader
ItemLevel >= 85
Rarity <= Rare
BaseType "Ambusher" "Ancient Greaves" "Carnal Armour" "Chain Belt" "Chain Hauberk" "Champion Kite Shield" "Conjurer Boots" "Conjurer Gloves" "Conquest Chainmail" "Convoking Wand" "Coral Ring" "Coronal Maul" "Courtesan Sword" "Crested Tower Shield" "Crimson Raiment" "Crimson Round Shield" "Crusader Gloves" "Crusader Plate" "Crypt Armour" "Crystal Sceptre" "Deicide Mask" "Demon Dagger" "Desert Brigandine" "Diamond Ring" "Eagle Claw" "Elegant Round Shield" "Exquisite Blade" "Exquisite Leather" "Glorious Plate" "Gold Amulet" "Gold Ring" "Golden Plate" "Goliath Gauntlets" "Great Crown" "Great White Claw" "Grinning Fetish" "Harlequin Mask" "Hydrascale Boots" "Imperial Bow" "Imperial Claw" "Iron Ring" "Iron Sceptre" "Karui Chopper" "Karui Sceptre" "Lacquered Buckler" "Lathi" "Leather Belt" "Legion Boots" "Legion Gloves" "Lithe Blade" "Loricated Ringmail" "Maelström Staff" "Magistrate Crown" "Maraketh Bow" "Meatgrinder" "Mind Cage" "Mirrored Spiked Shield" "Necromancer Circlet" "Nightmare Bascinet" "Omen Wand" "Opal Wand" "Paua Amulet" "Paua Ring" "Penetrating Arrow Quiver" "Platinum Sceptre" "Ritual Sceptre" "Runic Hatchet" "Sage Wand" "Saintly Chainmail" "Sentinel Jacket" "Shagreen Boots" "Shagreen Gloves" "Shagreen Tower Shield" "Siege Axe" "Slaughter Knife" "Slink Gloves" "Solar Maul" "Stealth Gloves" "Steelhead" "Sundering Axe" "Terror Maul" "Titan Greaves" "Turquoise Amulet" "Tyrant's Sekhem" "Vaal Greaves" "Wyrmscale Gauntlets"
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 "Agate Amulet" "Archon Kite Shield" "Blue Pearl Amulet" "Boom Mace" "Capacity Rod" "Capricious Spiritblade" "Cerulean Ring" "Crack Mace" "Eventuality Rod" "Ezomyte Tower Shield" "Gripped Gloves" "Hubris Circlet" "Lapis Amulet" "Malign Fangs" "Onyx Amulet" "Ornate Quiver" "Pneumatic Dagger" "Slink Gloves" "Solarine Bow" "Sorcerer Gloves" "Stygian Vise" "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 "Bone Helmet" "Broadhead Arrow Quiver" "Convoking Wand" "Coral Amulet" "Crystal Belt" "Exquisite Blade" "Harbinger Bow" "Imbued Wand" "Opal Wand" "Pinnacle Tower Shield" "Profane Wand" "Steel Ring" "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 "Conjurer Boots" "Fingerless Silk Gloves" "Gavel" "Hydrascale Boots" "Jade Amulet" "Lacquered Buckler" "Mirrored Spiked Shield" "Murder Boots" "Necromancer Silks" "Shagreen Tower Shield" "Sharktooth Arrow Quiver" "Slink Boots" "Sorcerer Boots" "Supreme Spiked Shield" "Titan Greaves"
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" "Archon Kite Shield" "Astral Plate" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Boom Mace" "Broadhead Arrow Quiver" "Capacity Rod" "Capricious Spiritblade" "Carnal Armour" "Cerulean Ring" "Convoking Wand" "Coral Amulet" "Coronal Maul" "Crack Mace" "Crystal Belt" "Demon Dagger" "Demon's Horn" "Eternal Burgonet" "Eventuality Rod" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Fire Arrow Quiver" "Fleshripper" "Gemini Claw" "Gripped Gloves" "Harpy Rapier" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Iron Ring" "Jade Amulet" "Jewelled Foil" "Lapis Amulet" "Magistrate Crown" "Malign Fangs" "Nightmare Bascinet" "Onyx Amulet" "Opal Ring" "Ornate Quiver" "Pinnacle Tower Shield" "Pneumatic Dagger" "Praetor Crown" "Prismatic Ring" "Royal Burgonet" "Ruby Ring" "Sadist Garb" "Sapphire Ring" "Serpent Wand" "Serrated Arrow Quiver" "Shagreen Tower Shield" "Sharktooth Arrow Quiver" "Slink Boots" "Slink Gloves" "Solarine Bow" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Steel Ring" "Stygian Vise" "Thorium Spirit Shield" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Turquoise Amulet" "Two-Stone Ring" "Two-Toned Boots" "Vaal Regalia" "Vanguard Belt" "Vermillion Ring" "Void Fangs" "Widowsilk Robe"
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 "Alder Spiked Shield" "Arcanist Gloves" "Assassin Bow" "Assassin's Boots" "Assassin's Mitts" "Branded Kite Shield" "Carnal Boots" "Chain Belt" "Champion Kite Shield" "Cloth Belt" "Conjurer Boots" "Courtesan Sword" "Crusader Boots" "Crusader Gloves" "Crusader Plate" "Crystal Sceptre" "Crystal Wand" "Destroyer Regalia" "Devout Chainmail" "Diamond Ring" "Dragon Mace" "Dragonscale Boots" "Eelskin Boots" "Eternal Sword" "Exquisite Blade" "Fencer Helm" "Gavel" "General's Brigandine" "Golden Buckler" "Gutting Knife" "Harbinger Bow" "Heavy Belt" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Infernal Axe" "Judgement Staff" "Karui Chopper" "Karui Sceptre" "Lacquered Buckler" "Leather Belt" "Legion Boots" "Legion Hammer" "Maraketh Bow" "Mirrored Spiked Shield" "Moonstone Ring" "Mosaic Kite Shield" "Murder Boots" "Murder Mitts" "Necromancer Silks" "Opal Wand" "Paua Ring" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Quarterstaff" "Ranger Bow" "Reaver Axe" "Royal Axe" "Rustic Sash" "Saintly Chainmail" "Saint's Hauberk" "Sambar Sceptre" "Samnite Helmet" "Satin Slippers" "Sekhem" "Shagreen Boots" "Shagreen Gloves" "Siege Helmet" "Sinner Tricorne" "Slaughter Knife" "Spiny Maul" "Spiny Round Shield" "Stealth Boots" "Studded Belt" "Supreme Spiked Shield" "Thicket Bow" "Throat Stabber" "Topaz Ring" "Unset Ring" "Ursine Pelt" "Vaal Axe" "Vaal Blade" "Vaal Greatsword" "Vaal Spirit Shield" "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
#===============================================================================================================
# [[0700]] Influenced Item Tiering: Warlord
#===============================================================================================================
#------------------------------------
# [0701] Layer - T1 - ECONOMY
#------------------------------------
Show # $tier->t1-1 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 82
Rarity <= Rare
BaseType "Amethyst Ring" "Anarchic Spiritblade" "Bone Helmet" "Boom Mace" "Capricious Spiritblade" "Colossal Tower Shield" "Crushing Force Magnifier" "Disapprobation Axe" "Eventuality Rod" "Marble Amulet" "Opal Ring" "Psychotic Axe" "Steel Ring" "Two-Stone Ring" "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->warlord
HasInfluence Warlord
ItemLevel >= 84
Rarity <= Rare
BaseType "Eternal Burgonet" "Fingerless Silk Gloves" "Gold Amulet" "Hubris Circlet" "Jade Amulet" "Jewelled Foil" "Sorcerer Gloves" "Titan Greaves" "Vaal Axe" "Void Sceptre"
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 "Blood Sceptre" "Broadhead Arrow Quiver" "Coral Ring" "Ezomyte Blade" "Imperial Maul" "Karui Sceptre" "Lapis Amulet" "Lion Pelt" "Moonstone Ring" "Royal Burgonet" "Ruby Ring" "Saintly Chainmail" "Spiked Gloves" "Stag Sceptre" "Two-Toned 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
#------------------------------------
# [0702] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->warlord
HasInfluence Warlord
ItemLevel >= 80
Rarity <= Rare
BaseType "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Anarchic Spiritblade" "Archon Kite Shield" "Auric Mace" "Behemoth Mace" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Broadhead Arrow Quiver" "Capricious Spiritblade" "Carnal Armour" "Citrine Amulet" "Colossal Tower Shield" "Coral Ring" "Crushing Force Magnifier" "Crystal Belt" "Deicide Mask" "Demon Dagger" "Disapprobation Axe" "Ebony Tower Shield" "Eternal Burgonet" "Eventuality Rod" "Ezomyte Axe" "Fingerless Silk Gloves" "Gripped Gloves" "Imperial Buckler" "Iron Ring" "Jade Amulet" "Jewelled Foil" "Karui Sceptre" "Lapis Amulet" "Leather Belt" "Magistrate Crown" "Maraketh Bow" "Marble Amulet" "Moonstone Ring" "Nightmare Bascinet" "Noble Claw" "Onyx Amulet" "Opal Ring" "Ornate Quiver" "Paua Amulet" "Paua Ring" "Pinnacle Tower Shield" "Psychotic Axe" "Royal Burgonet" "Ruby Ring" "Runic Hatchet" "Saintly Chainmail" "Sapphire Ring" "Sorcerer Gloves" "Spiked Gloves" "Stag Sceptre" "Steel Ring" "Stygian Vise" "Terror Maul" "Throat Stabber" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Axe" "Vanguard Belt" "Vermillion Ring" "Void Fangs" "Void Sceptre" "Widowsilk Robe"
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 "Astral Plate" "Blood Sceptre" "Blunt Arrow Quiver" "Cardinal Round Shield" "Carnal Sceptre" "Chain Belt" "Colossus Mallet" "Conjurer Gloves" "Coral Amulet" "Corsair Sword" "Courtesan Sword" "Crypt Armour" "Destiny Leather" "Diamond Ring" "Eelskin Boots" "Elegant Round Shield" "Engraved Wand" "Exquisite Leather" "Eye Gouger" "Ezomyte Blade" "Faun's Horn" "Fire Arrow Quiver" "Gavel" "Gemini Claw" "General's Brigandine" "Gladius" "Gold Amulet" "Gold Ring" "Grappler" "Harpy Rapier" "Headsman Axe" "Heavy Belt" "Highland Blade" "Hubris Circlet" "Imbued Wand" "Imperial Bow" "Imperial Maul" "Karui Chopper" "Lacquered Buckler" "Lead Sceptre" "Legion Boots" "Lion Pelt" "Maelström Staff" "Majestic Plate" "Meatgrinder" "Mind Cage" "Murder Boots" "Platinum Sceptre" "Poignard" "Praetor Crown" "Profane Wand" "Reaver Axe" "Reaver Sword" "Rustic Sash" "Sadist Garb" "Saint's Hauberk" "Samnite Helmet" "Sharktooth Arrow Quiver" "Silken Hood" "Solaris Circlet" "Sorcerer Boots" "Spike-Point Arrow Quiver" "Spine Bow" "Spiny Round Shield" "Stealth Boots" "Stealth Gloves" "Steelwood Bow" "Studded Belt" "Talon Axe" "Tempered Foil" "Thicket Bow" "Ursine Pelt" "Vaal Greatsword" "Vaal Regalia" "Vaal 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
#===============================================================================================================
# [[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" "Blasting Blade" "Boom Mace" "Eventuality Rod" "Fingerless Silk Gloves" "Pneumatic Dagger" "Potentiality Rod" "Simplex Amulet" "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->redeemer
HasInfluence Redeemer
ItemLevel >= 84
Rarity <= Rare
BaseType "Bone Helmet" "Hubris Circlet" "Marble Amulet" "Omen Wand" "Pinnacle Tower Shield" "Profane Wand" "Sadist Garb" "Steel 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->redeemer
HasInfluence Redeemer
ItemLevel >= 85
Rarity <= Rare
BaseType "Convoking Wand" "Horned Sceptre" "Hydrascale Boots" "Jewelled Foil" "Piledriver" "Titan Greaves" "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
#------------------------------------
# [0802] Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->redeemer
HasInfluence Redeemer
ItemLevel >= 80
Rarity <= Rare
BaseType "Amethyst Ring" "Anarchic Spiritblade" "Ancient Greaves" "Assassin's Garb" "Astral Plate" "Blasting Blade" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Cerulean Ring" "Convoking Wand" "Coral Amulet" "Coral Ring" "Crystal Belt" "Deicide Mask" "Diamond Ring" "Eventuality Rod" "Ezomyte Spiked Shield" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Gemini Claw" "Gold Amulet" "Hydrascale Boots" "Imperial Bow" "Imperial Staff" "Jewelled Foil" "Lapis Amulet" "Leather Belt" "Lion Sword" "Maelström Staff" "Marble Amulet" "Onyx Amulet" "Opal Ring" "Pinnacle Tower Shield" "Pneumatic Dagger" "Potentiality Rod" "Praetor Crown" "Profane Wand" "Ruby Ring" "Sambar Sceptre" "Shagreen Boots" "Simplex Amulet" "Sorcerer Boots" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Sundering Axe" "Supreme Spiked Shield" "Tenderizer" "Titan Gauntlets" "Topaz Ring" "Turquoise Amulet" "Two-Toned Boots" "Unset Ring" "Vermillion Ring" "Void Fangs" "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 "Agate Amulet" "Amber Amulet" "Arcanist Slippers" "Archon Kite Shield" "Battle Buckler" "Broadhead Arrow Quiver" "Butcher Axe" "Carnal Armour" "Carnal Boots" "Carnal Sceptre" "Champion Kite Shield" "Conjurer Boots" "Conjurer Gloves" "Courtesan Sword" "Crimson Round Shield" "Crusader Buckler" "Crusader Gloves" "Dragon Mace" "Dragonscale Doublet" "Eclipse Staff" "Elegant Round Shield" "Engraved Hatchet" "Eternal Burgonet" "Exquisite Blade" "Eye Gouger" "Ezomyte Blade" "Fleshripper" "Fossilised Spirit Shield" "Gavel" "Glorious Plate" "Gold Ring" "Goliath Gauntlets" "Gripped Gloves" "Gutting Knife" "Harbinger Bow" "Harpy Rapier" "Heathen Wand" "Heavy Belt" "Hellion's Paw" "Horned Sceptre" "Hubris Circlet" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Buckler" "Imperial Maul" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Helmet" "Laminated Kite Shield" "Lead Sceptre" "Legion Boots" "Legion Hammer" "Loricated Ringmail" "Magistrate Crown" "Maraketh Bow" "Military Staff" "Mirrored Spiked Shield" "Moonstone Ring" "Mosaic Kite Shield" "Murder Boots" "Necromancer Circlet" "Occultist's Vestment" "Paua Amulet" "Paua Ring" "Piledriver" "Platinum Sceptre" "Poignard" "Prophecy Wand" "Prophet Crown" "Ritual Sceptre" "Royal Burgonet" "Runic Hatchet" "Sadist Garb" "Sai" "Samite Gloves" "Sapphire Ring" "Shadow Sceptre" "Shagreen Tower Shield" "Siege Axe" "Slink Boots" "Solaris Circlet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Steel Kite Shield" "Tiger's Paw" "Titan Greaves" "Titanium Spirit Shield" "Two-Point Arrow Quiver" "Two-Stone Ring" "Tyrant's Sekhem" "Vaal Blade" "Vaal Gauntlets" "Vaal Greatsword" "Vaal Regalia" "Vaal Sceptre" "Vanguard Belt"
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" "Archon Kite Shield" "Astrolabe Amulet" "Bone Helmet" "Capricious Spiritblade" "Chain Belt" "Crystal Belt" "Fickle Spiritblade" "Flashfire Blade" "Ornate Quiver" "Pinnacle Tower Shield" "Sorcerer Boots" "Stygian Vise" "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->shaper
HasInfluence Shaper
ItemLevel >= 84
Rarity <= Rare
BaseType "Arcanist Slippers" "Branded Kite Shield" "Cerulean Ring" "Conjurer Boots" "Crested Tower Shield" "Hubris Circlet" "Imperial Buckler" "Karui Sceptre" "Marble Amulet" "Praetor Crown" "Profane Wand" "Sambar Sceptre" "Sapphire Ring" "Sorcerer Gloves" "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
Show # $tier->t1-3 $type->rare->shaper
HasInfluence Shaper
ItemLevel >= 86
Rarity <= Rare
BaseType "Amethyst Ring" "Carnal Armour" "Crypt Armour" "Faun's Horn" "Infernal Axe" "Opal Sceptre" "Quartz Wand" "Sadist Garb" "Titan Gauntlets"
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 "Agate Amulet" "Alder Spiked Shield" "Amber Amulet" "Anarchic Spiritblade" "Angelic Kite Shield" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Garb" "Astrolabe Amulet" "Behemoth Mace" "Bone Helmet" "Branded Kite Shield" "Broadhead Arrow Quiver" "Capricious Spiritblade" "Cerulean Ring" "Chain Belt" "Citrine Amulet" "Colossus Mallet" "Congregator Wand" "Conjurer Boots" "Convoking Wand" "Crested Tower Shield" "Crusader Boots" "Crypt Armour" "Crystal Belt" "Ebony Tower Shield" "Eclipse Staff" "Elegant Ringmail" "Elegant Round Shield" "Eternal Burgonet" "Exquisite Blade" "Faun's Horn" "Fickle Spiritblade" "Fingerless Silk Gloves" "Flashfire Blade" "Fleshripper" "Fossilised Spirit Shield" "Gemini Claw" "Girded Tower Shield" "Glorious Plate" "Goliath Greaves" "Gripped Gloves" "Hubris Circlet" "Imbued Wand" "Imperial Buckler" "Imperial Claw" "Infernal Axe" "Jewelled Foil" "Lacewood Spirit Shield" "Lead Sceptre" "Malign Fangs" "Marble Amulet" "Murder Boots" "Opal Sceptre" "Opal Wand" "Ornate Quiver" "Pinnacle Tower Shield" "Reaver Sword" "Royal Burgonet" "Sadist Garb" "Saintly Chainmail" "Sambar Sceptre" "Serrated Arrow Quiver" "Shagreen Tower Shield" "Simplex Amulet" "Slink Boots" "Slink Gloves" "Soldier Boots" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Steel Circlet" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Thorium Spirit Shield" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Turquoise Amulet" "Two-Point Arrow Quiver" "Two-Toned Boots" "Vaal Axe" "Vaal Rapier" "Vaal Regalia" "Vanguard Belt" "Vermillion Ring" "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->shaper
HasInfluence Shaper
ItemLevel >= 85
Rarity <= Rare
BaseType "Abyssal Sceptre" "Ambusher" "Amethyst Ring" "Assassin's Boots" "Assassin's Mitts" "Astral Plate" "Battle Hammer" "Cardinal Round Shield" "Carnal Armour" "Champion Kite Shield" "Cloth Belt" "Conjurer Gloves" "Coral Ring" "Crusader Buckler" "Crusader Plate" "Decimation Bow" "Demon Dagger" "Destiny Leather" "Diamond Ring" "Dragonscale Doublet" "Dragoon Sword" "Ezomyte Spiked Shield" "Ezomyte Staff" "Fluted Bascinet" "Gold Amulet" "Great Crown" "Great White Claw" "Harpy Rapier" "Heavy Belt" "Hydrascale Boots" "Hydrascale Gauntlets" "Imperial Bow" "Jade Amulet" "Judgement Staff" "Karui Chopper" "Karui Sceptre" "Leather Belt" "Legion Gloves" "Lithe Blade" "Loricated Ringmail" "Magistrate Crown" "Maraketh Bow" "Mind Cage" "Moonstone Ring" "Necromancer Circlet" "Necromancer Silks" "Onyx Amulet" "Pagan Wand" "Paua Amulet" "Paua Ring" "Penetrating Arrow Quiver" "Praetor Crown" "Primordial Staff" "Profane Wand" "Prophecy Wand" "Quartz Wand" "Royal Axe" "Ruby Ring" "Sai" "Samite Gloves" "Samnite Helmet" "Sapphire Ring" "Sentinel Jacket" "Serpent Wand" "Shagreen Gloves" "Sharkskin Tunic" "Slaughter Knife" "Spike-Point Arrow Quiver" "Terror Claw" "Topaz Ring" "Trapper Mitts" "Triumphant Lamellar" "Two-Stone Ring" "Tyrant's Sekhem" "Unset Ring" "Vaal Gauntlets" "Vaal Sceptre" "Void Axe" "Void Sceptre" "Wyrmscale 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
#===============================================================================================================
# [[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" "Cerulean Ring" "Crack Mace" "Crushing Force Magnifier" "Fluted Bascinet" "Infernal Blade" "Malign Fangs" "Pneumatic Dagger" "Potentiality Rod" "Solarine Bow" "Steel Ring" "Stygian Vise" "Vaal Hatchet" "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 "Assassin's Garb" "Blue Pearl Amulet" "Fingerless Silk Gloves" "Gemini Claw" "Gold Amulet" "Gripped Gloves" "Praetor Crown" "Reaver Axe" "Royal Axe" "Royal Burgonet" "Runic Hatchet" "Stag Sceptre" "Turquoise Amulet" "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 "Citadel Bow" "Crystal Belt" "Eternal Burgonet" "Hubris Circlet" "Judgement Staff" "Lacquered Helmet" "Leather Belt" "Maraketh Bow" "Moonstone Ring" "Murder Boots" "Nightmare Bascinet" "Prophet Crown" "Sadist Garb" "Samnite Helmet" "Slink Gloves" "Solaris Circlet" "Two-Toned Boots" "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
#------------------------------------
# [1002] Item Layer - T2 - ECONOMY
#------------------------------------
Show # %D5 $tier->t2-1 $type->rare->elder
HasInfluence Elder
ItemLevel >= 80
Rarity <= Rare
BaseType "Agate Amulet" "Archon Kite Shield" "Assassin's Garb" "Astral Plate" "Blue Pearl Amulet" "Bone Helmet" "Boom Mace" "Cerulean Ring" "Citadel Bow" "Colossal Tower Shield" "Conjurer Boots" "Convoking Wand" "Coronal Maul" "Crack Mace" "Crested Tower Shield" "Crushing Force Magnifier" "Crystal Belt" "Demon's Horn" "Despot Axe" "Diamond Ring" "Dragoon Sword" "Eternal Burgonet" "Eternal Sword" "Ezomyte Tower Shield" "Fingerless Silk Gloves" "Fluted Bascinet" "Gemini Claw" "Gemstone Sword" "Glorious Plate" "Goliath Greaves" "Gripped Gloves" "Harpy Rapier" "Hubris Circlet" "Imperial Maul" "Infernal Blade" "Jade Amulet" "Jewelled Foil" "Judgement Staff" "Karui Axe" "Karui Chopper" "Karui Sceptre" "Lacquered Helmet" "Lapis Amulet" "Leather Belt" "Legion Boots" "Lion Pelt" "Malign Fangs" "Marble Amulet" "Mind Cage" "Murder Mitts" "Nightmare Bascinet" "Opal Ring" "Penetrating Arrow Quiver" "Pinnacle Tower Shield" "Pneumatic Dagger" "Potentiality Rod" "Reaver Axe" "Royal Axe" "Royal Burgonet" "Sadist Garb" "Samnite Helmet" "Serpent Wand" "Shadow Sceptre" "Siege Axe" "Siege Helmet" "Slink Gloves" "Solarine Bow" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Tiger Hook" "Titan Gauntlets" "Titan Greaves" "Turquoise Amulet" "Two-Toned Boots" "Vaal Axe" "Vaal Hatchet" "Vermillion Ring" "Void Axe" "Void Fangs" "Void Sceptre" "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
Show # %D5 $tier->t2-2 $type->rare->elder
HasInfluence Elder
ItemLevel >= 85
Rarity <= Rare
BaseType "Alder Spiked Shield" "Amber Amulet" "Amethyst Ring" "Ancient Gauntlets" "Arcanist Gloves" "Behemoth Mace" "Broadhead Arrow Quiver" "Cardinal Round Shield" "Chain Belt" "Citrine Amulet" "Conjurer Gloves" "Courtesan Sword" "Crusader Buckler" "Crusader Plate" "Deicide Mask" "Destiny Leather" "Destroyer Regalia" "Dragonbone Rapier" "Eclipse Staff" "Exquisite Blade" "Eye Gouger" "Ezomyte Spiked Shield" "Gladiator Plate" "Gladius" "Gold Amulet" "Gold Ring" "Golden Buckler" "Goliath Gauntlets" "Grappler" "Great Crown" "Harbinger Bow" "Harlequin Mask" "Heavy Belt" "Hydrascale Boots" "Imperial Bow" "Imperial Claw" "Infernal Sword" "Lead Sceptre" "Lithe Blade" "Loricated Ringmail" "Magistrate Crown" "Maraketh Bow" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Noble Tricorne" "Omen Wand" "Onyx Amulet" "Pagan Wand" "Platinum Kris" "Praetor Crown" "Prophet Crown" "Ruby Ring" "Runic Hatchet" "Sai" "Saintly Chainmail" "Shagreen Tower Shield" "Silken Hood" "Sinner Tricorne" "Slaughter Knife" "Solaris Circlet" "Spiked Round Shield" "Spike-Point Arrow Quiver" "Spine Bow" "Stag Sceptre" "Studded Belt" "Thorium Spirit Shield" "Tornado Wand" "Tyrant's Sekhem" "Unset Ring" "Ursine Pelt" "Vaal Regalia" "Varnished Coat" "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
#===============================================================================================================
# [[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"
SetFontSize 45
SetTextColor 255 190 0 255
SetBorderColor 0 240 190 240
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Purple