-
Notifications
You must be signed in to change notification settings - Fork 1
/
EB Regal.filter
9788 lines (8763 loc) · 429 KB
/
EB Regal.filter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#===============================================================================================================
# NeverSink's Indepth Loot Filter - for Path of Exile
#===============================================================================================================
# VERSION: 8.11.2.2023.285.17
# TYPE: 1-REGULAR
# STYLE: DEFAULT
# AUTHOR: NeverSink
# BUILDNOTES: Filter generated with NeverSink's FilterpolishZ and the domainlanguage Exo.
#
#------------------------------------
# LINKS TO LATEST VERSION AND FILTER EDITOR
#------------------------------------
#
# EDIT/CUSTOMIZE FILTER ON: https://www.FilterBlade.xyz
# GET THE LATEST VERSION ON: https://www.FilterBlade.xyz or https://github.com/NeverSinkDev/NeverSink-Filter
#
#------------------------------------
# INSTALLATION / UPDATE :
#------------------------------------
#
# 0) It's recommended to check for updates once a month or at least before new leagues, to receive economy finetuning and new features!
# 1) Paste this file into the following folder: %userprofile%/Documents/My Games/Path of Exile
# 2) INGAME: Escape -> Options -> UI -> Scroll down -> Select the filter from the Dropdown box
#
#------------------------------------
# AUTO-UPDATER SERVICE AND SUPPORT THE DEVELOPMENT
#------------------------------------
#
# Patreon supporters get access to the FilterBlade Auto-Updater that combines 100% automated updates with custom styles and your customizations!
# It's a great way to support us and get something in return and it helps us on our journey of making our own company and potentially game. Thank you
# Learn more about the feature here: https://www.youtube.com/watch?v=i8RJx0s0zsA
#
# PATREON: https://www.patreon.com/Neversink
# OTHER: https://www.filterblade.xyz/About
#
#------------------------------------
# CONTACT - if you want to get notifications about updates or just get in touch:
#------------------------------------
# For feedback, questions and suggestions please join our discord!
#
# DISCORD: https://discord.gg/mye6xhF
# TWITTER: @NeverSinkDev
# TWITCH: https://www.twitch.tv/neversink
# GITHUB: NeverSinkDev
# FORUM: https://goo.gl/oQn4EN
#===============================================================================================================
# [WELCOME] TABLE OF CONTENTS + QUICKJUMP TABLE
#===============================================================================================================
# [[0100]] OVERRIDE AREA 1 - Override ALL rules here
# [[0100]] Global overriding rules
# [[0200]] High tier influenced items
# [0201] Influenced Maps
# [0202] Common Tier - T1
# [0203] Specialised Tier - T1
# [0204] Common Tier - T2
# [0205] Specialised Tier - T2
# [0206] Remaining
# [[0300]] ELDRITCH ITEMS
# [[0400]] Exotic Bases
# [[0500]] IDENTIFIED MOD FILTERING - COMBINATIONS
# [0501] ID Mod exceptions - override id mod matching section
# [0502] Physical
# [0503] Elemental
# [0504] Gembased
# [0505] Caster
# [0506] Spellslinger
# [0507] Helmets
# [0508] Boots
# [0509] Gloves
# [0510] Shields
# [0511] Amulets
# [0512] Rings
# [0513] Quivers
# [0514] Body Armours
# [0515] Belts
# [0516] Jewels
# [[0600]] IDENTIFIED MOD FILTERING - SINGLE MODS
# [0601] Top Value
# [0602] Uncorrupted Mods
# [0603] Multiple Mods
# [[0700]] IDENTIFIED MOD - CORRUPTED ITEMS
# [[0800]] Exotic Mods Filtering
# [0801] Veiled/Betrayal - low prio veiled items
# [0802] Incursion/Temple Mods
# [0803] Bestiary
# [0804] Other
# [[0900]] Exotic Item Classes
# [0901] Voidstones
# [0902] Trinkets
# [0903] Secret Society Equipment
# [0904] Pieces
# [0905] Craftable Invitations
# [0906] Relics
# [[1000]] Exotic Item Variations
# [1001] Double Corruptions
# [1002] Specific Single Corruptions
# [1003] Abyss Jeweled Rares
# [1004] Synthesised
# [1005] Fractured
# [1006] Enchanted
# [1007] Crucible
# [[1100]] Recipes and 5links
# [1101] Link Based
# [[1200]] High Level Crafting Bases
# [1201] Expensive Atlas 86 Bases - matched by economy
# [1202] Perfection-Based-Filtering
# [1203] RGB Endgame
# [1204] ILVL 86
# [1205] ILVL 84
# [1206] ILVL ANY
# [1207] Early Endgame Crafting projects
# [1208] Chisel Recipes
# [[1300]] Chancing Bases
# [[1400]] Endgame Flasks
# [1401] Endgame Flasks
# [1402] Quality High
# [1403] Utility OR quality flasks
# [1404] Quality Low
# [1405] Early mapping life/mana/utility flasks
# [[1500]] Misc Rules
# [[1600]] Hide Layer 1 - Normal and Magic Endgame Gear
# [[1700]] Rare Item Decorators
# [[1800]] Endgame - Rare - Exotic Corrupted Items
# [[1900]] Endgame - Rare - Accessoires
# [[2000]] Endgame - Rare - Accessoires
# [[2100]] Endgame - Rare - Gear - T1 - handpicked
# [[2200]] Endgame - Rare - Gear - T2 - handpicked
# [[2300]] Endgame - Rare - Gear - T2 - handpicked
# [[2400]] Endgame - Rare - Gear - T3 - subpar bases
# [[2500]] Endgame - Rare - Gear - T4 - rest
# [[2600]] Hide Layer 2 - Rare Gear
# [[2700]] Jewels
# [2701] Special Cases
# [2702] Leveling Exceptions
# [2703] Abyss Jewels
# [2704] Generic Jewels
# [2705] Cluster Jewels: Eco-Based-Large
# [2706] Cluster Jewels: Random
# [[2800]] Heist Gear
# [2801] Heist Cloak
# [2802] Heist Brooch
# [2803] Heist Gear
# [2804] Heist Tool
# [[2900]] Gem Tierlists
# [2901] Exceptional Gems - Awakened and AltQuality
# [2902] Exceptional Gems - Special gems
# [2903] High Quality and Leveled Gems
# [[3000]] REPLICA UNIQUES
# [[3100]] Special Maps
# [3101] Unique Maps
# [3102] Blighted maps
# [3103] Delirium/Blight/Enchanted Maps!
# [3104] Beyond-Nemesis Maps, for those juicy sextants.
# [[3200]] Normal Map Progression
# [3201] Generic Decorators
# [3202] Map progression
# [[3300]] Pseudo-Map-Items
# [[3400]] Fragments
# [3401] Exceptions
# [3402] Scarabs
# [3403] Regular Fragment Tiering
# [[3500]] Currency - Exceptions - Leveling Currencies
# [[3600]] Currency - Exceptions - Stacked Currency
# [3601] Supplies: High Stacking
# [3602] Supplies: Low Stacking
# [3603] Supplies: Portal Stacking
# [3604] Supplies: Wisdom Stacking
# [3605] Stacked Currencies: 6x
# [3606] Stacked Currencies: 3x
# [3607] Heist Coins
# [[3700]] Currency - Regular Currency Tiering
# [[3800]] Currency - SPECIAL
# [3801] Incursion - Vials
# [3802] Delirum Orbs
# [3803] Delve - Resonators
# [3804] Delve - Fossils
# [3805] Blight - Oils
# [3806] Essences
# [3807] Incubators
# [3808] Invocations
# [3809] Trial of the Ancestors
# [3810] Others
# [[3900]] Currency - Splinters
# [3901] Breach and Legion Splinters - stacked
# [3902] Breach and Legion Splinters - single
# [3903] Simulacrum Splinters
# [[4000]] Divination Cards
# [[4100]] Remaining Currency
# [[4200]] Questlike-Items1 (override uniques)
# [[4300]] Uniques
# [4301] Exceptions #1
# [4302] Tier 1 and 2 uniques
# [4303] Exceptions #2
# [4304] Multi-Unique bases.
# [4305] Low tier exceptions
# [4306] Tier 3 uniques
# [4307] Tier 4 uniques
# [[4400]] Misc Map Items
# [[4500]] Questlike-Items2
# [[4600]] Hide outdated leveling flasks
# [[4700]] Leveling - Flasks
# [4701] Utility Flasks
# [4702] Hybrid flasks
# [4703] Life flasks
# [4704] Mana flasks
# [[4800]] Leveling - Rules
# [4801] Links and Sockets
# [4802] Rares - Decorators
# [4803] Rares - Universal
# [4804] Rares - Caster
# [4805] Rares - Archer
# [4806] Rares - Melee
# [[4900]] Leveling - Useful magic and normal items
# [4901] Purpose Picked Items
# [4902] Normals
# [4903] Weapon Progression
# [4904] Remaining Magics
# [4905] Hide All known Section
# [4906] Show All unknown Section
#===============================================================================================================
# [[0100]] Global overriding rules
#===============================================================================================================
# !! Waypoint c0.alpha : "All Rules - Highest priority - DANGER ZONE"
Show # $type->6l $tier->arm
Mirrored False
LinkedSockets 6
Rarity Normal Magic Rare
Class "Body Armours"
Corrupted False
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 200 0 0 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
Show # $type->6l $tier->wep
LinkedSockets 6
Rarity Normal Magic Rare
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 200 0 0 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Diamond
#===============================================================================================================
# [[0200]] High tier influenced items
#===============================================================================================================
#------------------------------------
# [0201] Influenced Maps
#------------------------------------
Show # $type->maps->influenced $tier->infshaper
HasInfluence Shaper
Rarity Normal Magic Rare
Class "Maps"
SetFontSize 18
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
Show # $type->maps->influenced $tier->infelder
HasInfluence Elder
Rarity Normal Magic Rare
Class "Maps"
SetFontSize 18
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
Show # $type->maps->influenced $tier->infconquerors
HasInfluence Crusader Hunter Redeemer Warlord
Rarity Normal Magic Rare
Class "Maps"
SetFontSize 18
SetTextColor 100 0 122 255
SetBorderColor 100 0 122 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Square
# !! Waypoint c1.infl.all : "All rules - except 6links and influenced maps"
#------------------------------------
# [0202] Common Tier - T1
#------------------------------------
Show # $type->influenced->common $tier->t1_exo
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Rare
BaseType == "Accumulator Wand" "Aetherwind Gloves" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Archdemon Crown" "Assembler Wand" "Astrolabe Amulet" "Atonement Mask" "Banishing Blade" "Basemetal Treads" "Battery Staff" "Blasting Blade" "Blizzard Crown" "Blunt Force Condenser" "Boom Mace" "Brimstone Treads" "Capacity Rod" "Capricious Spiritblade" "Cloudwhisper Boots" "Cogwork Ring" "Cold-attuned Buckler" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Darksteel Treads" "Debilitation Gauntlets" "Demon Crown" "Disapprobation Axe" "Dreamquest Slippers" "Duskwalk Slippers" "Endothermic Buckler" "Eventuality Rod" "Exhausting Spirit Shield" "Exothermic Tower Shield" "Fickle Spiritblade" "Flare Mace" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Gale Crown" "Gauche Gloves" "Geodesic Ring" "Gruelling Gauntlets" "Heat-attuned Tower Shield" "Hedron Bow" "Hollowpoint Dagger" "Honed Cleaver" "Imp Crown" "Impact Force Propagator" "Infernal Blade" "Leyline Gloves" "Magmatic Tower Shield" "Malign Fangs" "Maltreatment Axe" "Mechalarm Belt" "Micro-Distillery Belt" "Nexus Gloves" "Nightwind Slippers" "Ornate Quiver" "Oscillating Sceptre" "Penitent Mask" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Prime Cleaver" "Psychotic Axe" "Rebuking Blade" "Reciprocation Staff" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets" "Shadow Fangs" "Simplex Amulet" "Sinistral Gloves" "Solarine Bow" "Sorrow Mask" "Southswing Gloves" "Stabilising Sceptre" "Stormrider Boots" "Subsuming Spirit Shield" "Taxing Gauntlets" "Transfer-attuned Spirit Shield" "Transformer Staff" "Void Fangs" "Windbreak Boots" "Winter Crown"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0203] Specialised Tier - T1
#------------------------------------
Show # $type->rare->crusader $tier->t11
HasInfluence Crusader
ItemLevel >= 82
Rarity Rare
BaseType == "Dusk Ring" "Fugitive Boots" "Opal Ring" "Stygian Vise" "Vermillion Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->crusader $tier->t12
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType == "Crystal Belt" "Fingerless Silk Gloves" "Iolite Ring" "Sacrificial Garb"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->crusader $tier->t13
HasInfluence Crusader
ItemLevel >= 86
Rarity Rare
BaseType == "Cerulean Ring" "Spiked Gloves"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->warlord $tier->t11
HasInfluence Warlord
ItemLevel >= 82
Rarity Rare
BaseType == "Gripped Gloves"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->warlord $tier->t12
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Dusk Ring" "Fingerless Silk Gloves" "Iolite Ring" "Opal Ring" "Prismatic Ring" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Vermillion Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->warlord $tier->t13
HasInfluence Warlord
ItemLevel >= 86
Rarity Rare
BaseType == "Artillery Quiver" "Cardinal Round Shield" "Coronal Maul" "Crystal Belt" "Marble Amulet"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->redeemer $tier->t11
HasInfluence Redeemer
ItemLevel >= 82
Rarity Rare
BaseType == "Opal Ring" "Stygian Vise"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->redeemer $tier->t12
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType == "Crystal Belt" "Dusk Ring" "Fingerless Silk Gloves" "Fugitive Boots" "Iolite Ring" "Vermillion Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->redeemer $tier->t13
HasInfluence Redeemer
ItemLevel >= 86
Rarity Rare
BaseType == "Amethyst Ring" "Apothecary's Gloves" "Artillery Quiver" "Blue Pearl Amulet" "Bone Helmet" "Gripped Gloves" "Heathen Wand" "Marble Amulet" "Two-Toned Boots" "Vanguard Belt"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->hunter $tier->t11
HasInfluence Hunter
ItemLevel >= 82
Rarity Rare
BaseType == "Amethyst Ring" "Opal Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->hunter $tier->t12
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType == "Apothecary's Gloves" "Artillery Quiver" "Crystal Belt" "Fingerless Silk Gloves" "Fugitive Boots" "Gripped Gloves" "Iolite Ring" "Stygian Vise" "Two-Toned Boots" "Vermillion Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->hunter $tier->t13
HasInfluence Hunter
ItemLevel >= 86
Rarity Rare
BaseType == "Broadhead Arrow Quiver" "Marble Amulet" "Penetrating Arrow Quiver" "Sorcerer Boots" "Steel Ring" "Vanguard Belt"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->shaper $tier->t11
HasInfluence Shaper
ItemLevel >= 82
Rarity Rare
BaseType == "Crystal Belt"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->shaper $tier->t12
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType == "Fingerless Silk Gloves" "Opal Ring" "Sacrificial Garb" "Stygian Vise" "Vermillion Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->shaper $tier->t13
HasInfluence Shaper
ItemLevel >= 86
Rarity Rare
BaseType == "Fugitive Boots" "Iolite Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->elder $tier->t11
HasInfluence Elder
ItemLevel >= 82
Rarity Rare
BaseType == "Vermillion Ring"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->elder $tier->t12
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType == "Fingerless Silk Gloves" "Opal Ring" "Sacrificial Garb" "Stygian Vise"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
Show # $type->rare->elder $tier->t13
HasInfluence Elder
ItemLevel >= 86
Rarity Rare
BaseType == "Crystal Belt" "Fugitive Boots" "Iolite Ring" "Royal Burgonet" "Steel Ring" "Vanguard Belt"
SetFontSize 18
SetTextColor 50 130 165 255
SetBorderColor 50 130 165 255
SetBackgroundColor 255 255 255 255
PlayAlertSound 1 300
PlayEffect Red
MinimapIcon 0 Red Cross
#------------------------------------
# [0204] Common Tier - T2
#------------------------------------
#Show # # # $type->influenced->common $tier->t2_exo
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# Rarity Rare
# BaseType == "Apothecary's Gloves" "Blue Pearl Amulet" "Bone Helmet" "Cerulean Ring" "Crystal Belt" "Fingerless Silk Gloves" "Fugitive Boots" "Gripped Gloves" "Iolite Ring" "Marble Amulet" "Opal Ring" "Sacrificial Garb" "Spiked Gloves" "Steel Ring" "Stygian Vise" "Two-Toned Boots" "Vanguard Belt" "Vermillion Ring"
# SetFontSize 18
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 20 110 220
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Cross
#Show # # # $type->influenced->common $tier->t2_86
# HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
# ItemLevel >= 86
# Rarity Rare
# BaseType == "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Ancient Greaves" "Antique Greaves" "Apothecary's Gloves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Assassin's Boots" "Assassin's Mitts" "Blue Pearl Amulet" "Bone Helmet" "Bone Ring" "Broadhead Arrow Quiver" "Bronzescale Boots" "Calling Wand" "Cardinal Round Shield" "Carnal Boots" "Carnal Mitts" "Cerulean Ring" "Champion Kite Shield" "Citadel Bow" "Citrine Amulet" "Colossal Tower Shield" "Conjurer Boots" "Convening Wand" "Convoking Wand" "Copper Kris" "Coral Ring" "Crusader Boots" "Crusader Buckler" "Crusader Gloves" "Crystal Belt" "Deicide Mask" "Demon Dagger" "Demon's Horn" "Despot Axe" "Diamond Ring" "Dragonscale Boots" "Dragonscale Gauntlets" "Eelskin Boots" "Elegant Round Shield" "Eternal Burgonet" "Ezomyte Axe" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fencer Helm" "Fiend Dagger" "Fingerless Silk Gloves" "Fluted Bascinet" "Fossilised Spirit Shield" "Fugitive Boots" "Full Dragonscale" "Gemini Claw" "Golden Kris" "Goliath Gauntlets" "Goliath Greaves" "Gripped Gloves" "Harlequin Mask" "Harmonic Spirit Shield" "Heathen Wand" "Heavy Arrow Quiver" "Heavy Belt" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Bow" "Imperial Buckler" "Imperial Claw" "Iolite Ring" "Jade Amulet" "Lacquered Buckler" "Lacquered Helmet" "Lapis Amulet" "Leather Belt" "Legion Boots" "Legion Gloves" "Lion Pelt" "Magistrate Crown" "Maraketh Bow" "Marble Amulet" "Mind Cage" "Mirrored Spiked Shield" "Mosaic Kite Shield" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Omen Wand" "Onyx Amulet" "Opal Ring" "Opal Sceptre" "Opal Wand" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Platinum Kris" "Praetor Crown" "Primal Arrow Quiver" "Prismatic Ring" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Regicide Mask" "Royal Burgonet" "Ruby Ring" "Saintly Chainmail" "Sambar Sceptre" "Sapphire Ring" "Serpentscale Boots" "Serpentscale Gauntlets" "Shagreen Boots" "Sharkskin Boots" "Short Bow" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Soldier Boots" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spine Bow" "Stealth Boots" "Stealth Gloves" "Steel Ring" "Steelscale Boots" "Steelscale Gauntlets" "Stygian Vise" "Supreme Spiked Shield" "Thicket Bow" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Tornado Wand" "Triumphant Lamellar" "Turquoise Amulet" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Gauntlets" "Vaal Greaves" "Vaal Mask" "Vaal Sceptre" "Vaal Spirit Shield" "Vanguard Belt" "Vermillion Ring" "Void Sceptre" "Wyrmscale Boots" "Wyrmscale Gauntlets"
# SetFontSize 18
# SetTextColor 255 255 255 255
# SetBorderColor 255 255 255 255
# SetBackgroundColor 20 110 220
# PlayAlertSound 3 300
# PlayEffect Yellow
# MinimapIcon 1 Yellow Cross
#------------------------------------
# [0205] Specialised Tier - T2
#------------------------------------
Show # %D5 $type->rare->crusader $tier->t21
HasInfluence Crusader
ItemLevel >= 80
Rarity Rare
BaseType == "Cerulean Ring" "Coral Amulet" "Dusk Ring" "Fugitive Boots" "Glorious Plate" "Moonstone Ring" "Opal Ring" "Penumbra Ring" "Spine Bow" "Stygian Vise" "Vermillion Ring"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->crusader $tier->t22
HasInfluence Crusader
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Amber Amulet" "Ambush Mitts" "Amethyst Ring" "Ancient Gauntlets" "Apothecary's Gloves" "Arcanist Gloves" "Artillery Quiver" "Assassin's Boots" "Assassin's Garb" "Astral Plate" "Battle Buckler" "Behemoth Mace" "Blazing Arrow Quiver" "Blood Raiment" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Bone Ring" "Branded Kite Shield" "Broadhead Arrow Quiver" "Carnal Armour" "Carnal Mitts" "Carnal Sceptre" "Chain Belt" "Chain Hauberk" "Chiming Spirit Shield" "Citrine Amulet" "Colossal Tower Shield" "Commander's Brigandine" "Coral Ring" "Coronal Leather" "Coronal Maul" "Corrugated Buckler" "Courtesan Sword" "Crested Tower Shield" "Crimson Raiment" "Crusader Boots" "Crusader Buckler" "Crusader Chainmail" "Crusader Gloves" "Crypt Armour" "Crystal Belt" "Crystal Sceptre" "Cutthroat's Garb" "Destiny Leather" "Destroyer Regalia" "Devout Chainmail" "Diamond Ring" "Dragonscale Boots" "Ebony Tower Shield" "Eclipse Staff" "Elegant Ringmail" "Elegant Round Shield" "Eternal Burgonet" "Exquisite Leather" "Ezomyte Spiked Shield" "Faun's Horn" "Feathered Arrow Quiver" "Fingerless Silk Gloves" "Fire Arrow Quiver" "Fleshripper" "General's Brigandine" "Gold Amulet" "Gold Ring" "Goliath Gauntlets" "Gripped Gloves" "Harlequin Mask" "Harmonic Spirit Shield" "Heathen Wand" "Heavy Arrow Quiver" "Heavy Belt" "Hubris Circlet" "Hydrascale Boots" "Imbued Wand" "Imperial Buckler" "Imperial Staff" "Iolite Ring" "Ironwood Buckler" "Jade Amulet" "Lacquered Buckler" "Lacquered Garb" "Laminated Kite Shield" "Lapis Amulet" "Lathi" "Leather Belt" "Legion Gloves" "Lion Pelt" "Loricated Ringmail" "Maelström Staff" "Majestic Plate" "Maraketh Bow" "Mirrored Spiked Shield" "Moon Staff" "Murder Boots" "Necromancer Silks" "Nightmare Bascinet" "Nightmare Mace" "Occultist's Vestment" "Omen Wand" "Onyx Amulet" "Opal Sceptre" "Ornate Ringmail" "Paua Amulet" "Penetrating Arrow Quiver" "Pig-Faced Bascinet" "Platinum Sceptre" "Polished Spiked Shield" "Praetor Crown" "Primal Arrow Quiver" "Primordial Staff" "Prophet Crown" "Ranger Bow" "Ruby Ring" "Rustic Sash" "Sacrificial Garb" "Sadist Garb" "Sage Wand" "Sai" "Sambar Sceptre" "Samite Gloves" "Samite Slippers" "Sapphire Ring" "Savant's Robe" "Seaglass Amulet" "Sentinel Jacket" "Serrated Arrow Quiver" "Shagreen Gloves" "Shagreen Tower Shield" "Sharkskin Gloves" "Sharktooth Arrow Quiver" "Siege Axe" "Silken Hood" "Slink Boots" "Soldier Boots" "Sorcerer Boots" "Sorcerer Gloves" "Sovereign Spiked Shield" "Spidersilk Robe" "Spike-Point Arrow Quiver" "Spiked Gloves" "Spiny Round Shield" "Stealth Boots" "Steel Circlet" "Steelwood Bow" "Terror Claw" "Thicket Bow" "Tiger Hook" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Triumphant Lamellar" "Turquoise Amulet" "Twin Claw" "Two-Point Arrow Quiver" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Ursine Pelt" "Vaal Buckler" "Vaal Greaves" "Vaal Regalia" "Vanguard Belt" "Varnished Coat" "Vile Arrow Quiver" "Void Sceptre" "Widowsilk Robe" "Wyrmscale Boots" "Wyrmscale Gauntlets"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->warlord $tier->t21
HasInfluence Warlord
ItemLevel >= 80
Rarity Rare
BaseType == "Broadhead Arrow Quiver" "Gripped Gloves" "Marble Amulet" "Moonstone Ring" "Ruby Ring" "Turquoise Amulet"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->warlord $tier->t22
HasInfluence Warlord
ItemLevel >= 85
Rarity Rare
BaseType == "Abyssal Sceptre" "Agate Amulet" "Amber Amulet" "Ambush Boots" "Ambush Mitts" "Ambusher" "Amethyst Ring" "Ancient Gauntlets" "Ancient Greaves" "Angelic Kite Shield" "Apothecary's Gloves" "Archon Kite Shield" "Artillery Quiver" "Assassin's Garb" "Assassin's Mitts" "Astral Plate" "Battle Buckler" "Blazing Arrow Quiver" "Blood Sceptre" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Bone Ring" "Branded Kite Shield" "Bronze Tower Shield" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Cerulean Ring" "Champion Kite Shield" "Chiming Spirit Shield" "Citrine Amulet" "Colossal Tower Shield" "Colosseum Plate" "Conjurer Gloves" "Conquest Chainmail" "Coral Amulet" "Coral Ring" "Coronal Leather" "Coronal Maul" "Crested Tower Shield" "Crimson Round Shield" "Crusader Gloves" "Crusader Plate" "Crystal Belt" "Crystal Sceptre" "Crystal Wand" "Deicide Mask" "Diamond Ring" "Dragonscale Boots" "Dragonscale Gauntlets" "Dusk Ring" "Elegant Round Shield" "Engraved Wand" "Eternal Burgonet" "Exquisite Blade" "Exquisite Leather" "Ezomyte Axe" "Ezomyte Burgonet" "Faun's Horn" "Feathered Arrow Quiver" "Fencer Helm" "Fiend Dagger" "Fingerless Silk Gloves" "Fire Arrow Quiver" "Fluted Bascinet" "Fugitive Boots" "General's Brigandine" "Gladiator Plate" "Glorious Plate" "Gold Amulet" "Gold Ring" "Goliath Gauntlets" "Great Crown" "Gutting Knife" "Harlequin Mask" "Heavy Arrow Quiver" "Heavy Belt" "Horned Sceptre" "Hubris Circlet" "Hydrascale Gauntlets" "Imperial Buckler" "Iolite Ring" "Jade Amulet" "Karui Sceptre" "Lacquered Helmet" "Lapis Amulet" "Leather Belt" "Legion Gloves" "Lion Pelt" "Magistrate Crown" "Majestic Plate" "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Mosaic Kite Shield" "Murder Mitts" "Necromancer Circlet" "Nightmare Bascinet" "Onyx Amulet" "Opal Ring" "Opal Wand" "Paua Amulet" "Penetrating Arrow Quiver" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Praetor Crown" "Primal Arrow Quiver" "Prismatic Ring" "Profane Wand" "Reaver Sword" "Regicide Mask" "Royal Burgonet" "Rustic Sash" "Sadist Garb" "Sage Wand" "Sai" "Saintly Chainmail" "Samnite Helmet" "Sapphire Ring" "Satin Gloves" "Seaglass Amulet" "Serpentscale Boots" "Serrated Arrow Quiver" "Shagreen Gloves" "Sharkskin Boots" "Sharkskin Gloves" "Sharktooth Arrow Quiver" "Silken Hood" "Sinner Tricorne" "Slink Gloves" "Solaris Circlet" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spidersilk Robe" "Spike-Point Arrow Quiver" "Spiked Gloves" "Spine Bow" "Stag Sceptre" "Stealth Boots" "Stealth Gloves" "Steel Circlet" "Steel Kite Shield" "Steel Ring" "Steelwood Bow" "Stygian Vise" "Supreme Spiked Shield" "Tenderizer" "Tiger Hook" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Trapper Boots" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Ursine Pelt" "Vaal Claw" "Vaal Gauntlets" "Vaal Greaves" "Vaal Mask" "Vaal Spirit Shield" "Vanguard Belt" "Vermillion Ring" "Vile Arrow Quiver" "Void Sceptre" "Wyrmscale Gauntlets"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->redeemer $tier->t21
HasInfluence Redeemer
ItemLevel >= 80
Rarity Rare
BaseType == "Agate Amulet" "Blunt Arrow Quiver" "Jade Amulet" "Onyx Amulet" "Opal Ring" "Penetrating Arrow Quiver" "Stygian Vise" "Unset Ring"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->redeemer $tier->t22
HasInfluence Redeemer
ItemLevel >= 85
Rarity Rare
BaseType == "Abyssal Sceptre" "Alder Spiked Shield" "Amber Amulet" "Ambush Boots" "Ambusher" "Amethyst Ring" "Ancient Gauntlets" "Ancient Greaves" "Angelic Kite Shield" "Apothecary's Gloves" "Arcanist Slippers" "Archon Kite Shield" "Artillery Quiver" "Assassin's Boots" "Assassin's Garb" "Astral Plate" "Baroque Round Shield" "Battle Lamellar" "Behemoth Mace" "Blazing Arrow Quiver" "Blood Sceptre" "Blue Pearl Amulet" "Bone Helmet" "Bone Ring" "Broadhead Arrow Quiver" "Bronze Tower Shield" "Cardinal Round Shield" "Carnal Boots" "Carnal Mitts" "Carnal Sceptre" "Cerulean Ring" "Chain Belt" "Chain Hauberk" "Champion Kite Shield" "Citrine Amulet" "Coiled Wand" "Colossal Tower Shield" "Colosseum Plate" "Colossus Mallet" "Conjurer Boots" "Conjurer's Vestment" "Convening Wand" "Coral Amulet" "Coral Ring" "Coronal Leather" "Courtesan Sword" "Crested Tower Shield" "Crimson Round Shield" "Crusader Buckler" "Crusader Gloves" "Crystal Belt" "Crystal Sceptre" "Crystal Wand" "Destroyer Regalia" "Diamond Ring" "Dragonbone Rapier" "Dragonscale Boots" "Dragonscale Gauntlets" "Dusk Ring" "Ebony Tower Shield" "Eclipse Staff" "Elegant Round Shield" "Engraved Wand" "Eternal Burgonet" "Exquisite Blade" "Exquisite Leather" "Ezomyte Burgonet" "Ezomyte Staff" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Fugitive Boots" "General's Brigandine" "Gladius" "Glorious Leather" "Glorious Plate" "Gold Amulet" "Gold Ring" "Golden Plate" "Goliath Gauntlets" "Goliath Greaves" "Great Crown" "Gripped Gloves" "Harlequin Mask" "Harmonic Spirit Shield" "Heathen Wand" "Heavy Arrow Quiver" "Heavy Belt" "Horned Sceptre" "Hubris Circlet" "Hunter Hood" "Hydrascale Boots" "Imperial Buckler" "Imperial Skean" "Iolite Ring" "Karui Sceptre" "Lacewood Spirit Shield" "Lacquered Buckler" "Lacquered Helmet" "Laminated Kite Shield" "Lapis Amulet" "Leather Belt" "Legion Boots" "Lion Pelt" "Maraketh Bow" "Marble Amulet" "Moon Staff" "Moonstone Ring" "Murder Boots" "Murder Mitts" "Necromancer Circlet" "Nightmare Bascinet" "Noble Claw" "Noble Tricorne" "Occultist's Vestment" "Opal Sceptre" "Pagan Wand" "Paua Amulet" "Pig-Faced Bascinet" "Piledriver" "Pinnacle Tower Shield" "Polished Spiked Shield" "Praetor Crown" "Primal Arrow Quiver" "Ranger Bow" "Regicide Mask" "Royal Axe" "Royal Burgonet" "Royal Sceptre" "Ruby Ring" "Rustic Sash" "Sacrificial Garb" "Sambar Sceptre" "Samite Gloves" "Samite Slippers" "Samnite Helmet" "Sapphire Ring" "Seaglass Amulet" "Sentinel Jacket" "Serpentscale Gauntlets" "Serrated Arrow Quiver" "Serrated Foil" "Shagreen Boots" "Sharkskin Boots" "Sharkskin Gloves" "Sharktooth Arrow Quiver" "Siege Axe" "Siege Helmet" "Silken Hood" "Sinner Tricorne" "Slink Boots" "Slink Gloves" "Solaris Circlet" "Soldier Boots" "Sorcerer Boots" "Sorcerer Gloves" "Sovereign Spiked Shield" "Spike-Point Arrow Quiver" "Spiked Gloves" "Spine Bow" "Spiny Round Shield" "Spiraled Wand" "Stealth Boots" "Stealth Gloves" "Steel Circlet" "Steel Ring" "Steelwood Bow" "Sun Plate" "Sundering Axe" "Supreme Spiked Shield" "Terror Maul" "Thicket Bow" "Thorium Spirit Shield" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Topaz Ring" "Trapper Boots" "Triumphant Lamellar" "Turquoise Amulet" "Two-Point Arrow Quiver" "Two-Stone Ring" "Two-Toned Boots" "Tyrant's Sekhem" "Ursine Pelt" "Vaal Axe" "Vaal Buckler" "Vaal Claw" "Vaal Greaves" "Vaal Rapier" "Vaal Regalia" "Vaal Sceptre" "Vaal Spirit Shield" "Vanguard Belt" "Vermillion Ring" "Vile Arrow Quiver" "Void Sceptre" "Wyrmscale Boots" "Zodiac Leather"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->hunter $tier->t21
HasInfluence Hunter
ItemLevel >= 80
Rarity Rare
BaseType == "Amethyst Ring" "Gold Amulet" "Jade Amulet" "Onyx Amulet" "Opal Ring" "Stealth Boots" "Topaz Ring"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->hunter $tier->t22
HasInfluence Hunter
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Amber Amulet" "Ambush Boots" "Ambush Mitts" "Ancient Greaves" "Angelic Kite Shield" "Apothecary's Gloves" "Arcanist Gloves" "Arcanist Slippers" "Archon Kite Shield" "Artillery Quiver" "Assassin's Boots" "Assassin's Garb" "Assassin's Mitts" "Astral Plate" "Baroque Round Shield" "Battle Buckler" "Behemoth Mace" "Blazing Arrow Quiver" "Blue Pearl Amulet" "Blunt Arrow Quiver" "Bone Helmet" "Bone Ring" "Branded Kite Shield" "Broadhead Arrow Quiver" "Bronze Tower Shield" "Callous Mask" "Cardinal Round Shield" "Carnal Armour" "Carnal Boots" "Carnal Mitts" "Carnal Sceptre" "Cerulean Ring" "Chain Belt" "Champion Kite Shield" "Chiming Spirit Shield" "Citrine Amulet" "Colossal Tower Shield" "Conjurer Boots" "Conjurer Gloves" "Conjurer's Vestment" "Conquest Chainmail" "Convening Wand" "Coral Amulet" "Coral Ring" "Coronal Leather" "Crimson Round Shield" "Crusader Boots" "Crusader Buckler" "Crusader Gloves" "Crusader Plate" "Crystal Belt" "Crystal Sceptre" "Cutthroat's Garb" "Deicide Mask" "Desert Brigandine" "Destiny Leather" "Destroyer Regalia" "Devout Chainmail" "Diamond Ring" "Dragonscale Boots" "Dragonscale Doublet" "Dragonscale Gauntlets" "Ebony Tower Shield" "Eclipse Staff" "Eelskin Boots" "Elegant Ringmail" "Elegant Round Shield" "Engraved Wand" "Eternal Burgonet" "Exquisite Leather" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Faun's Horn" "Feathered Arrow Quiver" "Fingerless Silk Gloves" "Fire Arrow Quiver" "Fleshripper" "Fluted Bascinet" "Fossilised Spirit Shield" "Fugitive Boots" "Full Dragonscale" "Girded Tower Shield" "Gladiator Plate" "Gladius" "Glorious Leather" "Glorious Plate" "Gold Ring" "Golden Plate" "Goliath Gauntlets" "Goliath Greaves" "Great Crown" "Gripped Gloves" "Harbinger Bow" "Harmonic Spirit Shield" "Harpy Rapier" "Heathen Wand" "Heavy Arrow Quiver" "Heavy Belt" "Highborn Bow" "Hubris Circlet" "Hunter Hood" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Buckler" "Imperial Claw" "Imperial Maul" "Infernal Axe" "Infernal Sword" "Iolite Ring" "Ironwood Buckler" "Ivory Spirit Shield" "Lacquered Buckler" "Lacquered Garb" "Lacquered Helmet" "Laminated Kite Shield" "Lapis Amulet" "Leather Belt" "Legion Boots" "Legion Gloves" "Legion Hammer" "Lion Pelt" "Maelström Staff" "Magistrate Crown" "Majestic Plate" "Maraketh Bow" "Marble Amulet" "Mind Cage" "Moonstone Ring" "Mosaic Kite Shield" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Noble Tricorne" "Occultist's Vestment" "Omen Wand" "Pagan Wand" "Paua Amulet" "Penetrating Arrow Quiver" "Pig-Faced Bascinet" "Pinnacle Tower Shield" "Polished Spiked Shield" "Praetor Crown" "Primal Arrow Quiver" "Profane Wand" "Prophecy Wand" "Prophet Crown" "Regicide Mask" "Royal Burgonet" "Ruby Ring" "Runic Hatchet" "Rustic Sash" "Sadist Garb" "Sai" "Saint's Hauberk" "Saintly Chainmail" "Sambar Sceptre" "Samite Gloves" "Samnite Helmet" "Sapphire Ring" "Satin Gloves" "Seaglass Amulet" "Serpentscale Boots" "Serpentscale Gauntlets" "Serrated Arrow Quiver" "Serrated Foil" "Shagreen Boots" "Shagreen Gloves" "Shagreen Tower Shield" "Sharkskin Boots" "Sharkskin Tunic" "Sharktooth Arrow Quiver" "Siege Helmet" "Silken Hood" "Sinner Tricorne" "Sleek Coat" "Slink Boots" "Slink Gloves" "Soldier Boots" "Soldier Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Spiked Gloves" "Spine Bow" "Stag Sceptre" "Stealth Gloves" "Steel Kite Shield" "Steel Ring" "Steelwood Bow" "Stygian Vise" "Sun Plate" "Supreme Spiked Shield" "Teak Round Shield" "Terror Maul" "Thicket Bow" "Thorium Spirit Shield" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Turquoise Amulet" "Two-Point Arrow Quiver" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Claw" "Vaal Gauntlets" "Vaal Greaves" "Vaal Mask" "Vaal Regalia" "Vaal Spirit Shield" "Vanguard Belt" "Varnished Coat" "Vermillion Ring" "Vile Arrow Quiver" "Void Axe" "Void Sceptre" "Wyrmscale Boots" "Wyrmscale Gauntlets" "Zealot Boots" "Zealot Gloves" "Zealot Helmet" "Zodiac Leather"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->shaper $tier->t21
HasInfluence Shaper
ItemLevel >= 80
Rarity Rare
BaseType == "Crystal Belt" "Gold Amulet" "Opal Ring"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->shaper $tier->t22
HasInfluence Shaper
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Angelic Kite Shield" "Apothecary's Gloves" "Archon Kite Shield" "Artillery Quiver" "Blue Pearl Amulet" "Bone Helmet" "Bone Ring" "Broadhead Arrow Quiver" "Calling Wand" "Cerulean Ring" "Chain Belt" "Champion Kite Shield" "Chiming Spirit Shield" "Citrine Amulet" "Colossal Tower Shield" "Coral Amulet" "Coral Ring" "Crusader Buckler" "Diamond Ring" "Dragonscale Gauntlets" "Eclipse Staff" "Elegant Round Shield" "Ezomyte Tower Shield" "Feathered Arrow Quiver" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Fugitive Boots" "Gold Ring" "Goliath Gauntlets" "Gripped Gloves" "Harmonic Spirit Shield" "Heavy Belt" "Imbued Wand" "Iolite Ring" "Ivory Bow" "Jade Amulet" "Lapis Amulet" "Leather Belt" "Lion Pelt" "Marble Amulet" "Moonstone Ring" "Onyx Amulet" "Pagan Wand" "Paua Amulet" "Pinnacle Tower Shield" "Riveted Boots" "Royal Burgonet" "Ruby Ring" "Rustic Sash" "Sage Wand" "Sapphire Ring" "Seaglass Amulet" "Siege Axe" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Spine Bow" "Steel Ring" "Stygian Vise" "Supreme Spiked Shield" "Titan Gauntlets" "Titanium Spirit Shield" "Topaz Ring" "Turquoise Amulet" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Gauntlets" "Vanguard Belt" "Vermillion Ring" "Vile Arrow Quiver"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->elder $tier->t21
HasInfluence Elder
ItemLevel >= 80
Rarity Rare
BaseType == "Bone Helmet" "Marble Amulet" "Vermillion Ring"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
Show # %D5 $type->rare->elder $tier->t22
HasInfluence Elder
ItemLevel >= 85
Rarity Rare
BaseType == "Agate Amulet" "Amber Amulet" "Amethyst Ring" "Ancient Gauntlets" "Apothecary's Gloves" "Arcanist Gloves" "Artillery Quiver" "Assassin's Mitts" "Aventail Helmet" "Behemoth Mace" "Blue Pearl Amulet" "Bone Ring" "Broadhead Arrow Quiver" "Calling Wand" "Cerulean Ring" "Citrine Amulet" "Conjurer Gloves" "Coral Amulet" "Coral Ring" "Coronal Maul" "Crystal Belt" "Demon Dagger" "Dragonscale Gauntlets" "Eelskin Gloves" "Eelskin Tunic" "Embroidered Gloves" "Eternal Burgonet" "Eternal Sword" "Ezomyte Axe" "Ezomyte Burgonet" "Ezomyte Tower Shield" "Fencer Helm" "Fiend Dagger" "Fingerless Silk Gloves" "Fugitive Boots" "Girded Tower Shield" "Gladiator Helmet" "Gladius" "Gold Amulet" "Gripped Gloves" "Heavy Belt" "Hubris Circlet" "Hunter Hood" "Hydrascale Gauntlets" "Imbued Wand" "Imperial Claw" "Iolite Ring" "Jade Amulet" "Lapis Amulet" "Lion Pelt" "Lunaris Circlet" "Mirrored Spiked Shield" "Murder Mitts" "Onyx Amulet" "Opal Ring" "Ornate Ringmail" "Pagan Wand" "Paua Amulet" "Penetrating Arrow Quiver" "Poignard" "Praetor Crown" "Primal Arrow Quiver" "Prismatic Ring" "Riveted Boots" "Riveted Gloves" "Royal Burgonet" "Ruby Ring" "Sai" "Sambar Sceptre" "Samnite Helmet" "Sapphire Ring" "Satin Gloves" "Satin Slippers" "Seaglass Amulet" "Shagreen Gloves" "Sharkskin Boots" "Sharkskin Gloves" "Siege Helmet" "Slink Gloves" "Sorcerer Boots" "Spike-Point Arrow Quiver" "Spiked Gloves" "Spiraled Wand" "Stealth Gloves" "Steel Ring" "Steelscale Gauntlets" "Steelwood Bow" "Stygian Vise" "Supreme Spiked Shield" "Tiger Hook" "Titan Gauntlets" "Topaz Ring" "Turquoise Amulet" "Two-Point Arrow Quiver" "Two-Stone Ring" "Two-Toned Boots" "Unset Ring" "Vaal Gauntlets" "Vanguard Belt" "Void Sceptre" "Wyrmscale Gauntlets"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 20 110 220
PlayAlertSound 3 300
PlayEffect Yellow
MinimapIcon 1 Yellow Cross
#------------------------------------
# [0206] Remaining
#------------------------------------
Show # %D4 $type->rare->any $tier->anytrinket
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Rare
Class == "Amulets" "Belts" "Rings"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D4 $type->rare->any $tier->anytoplevel
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
ItemLevel >= 86
Rarity Rare
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 50 200 50 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D3 $type->rare->any $tier->any
HasInfluence Crusader Elder Hunter Redeemer Shaper Warlord
Rarity Normal Magic Rare
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
#===============================================================================================================
# [[0300]] ELDRITCH ITEMS
#===============================================================================================================
# !! Waypoint c1.eldritch.all : "Eldritch Items - Exarch and Eater"
Show # %D3 $type->rare->exarch $tier->anyhigh
HasSearingExarchImplicit >= 1
Rarity Normal Magic Rare
BaseType == "Assassin's Mitts" "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Lion Pelt" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Pig-Faced Bascinet" "Praetor Crown" "Shagreen Gloves" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Stealth Boots" "Stealth Gloves" "Titan Gauntlets" "Titan Greaves" "Vaal Gauntlets" "Vaal Greaves" "Wyrmscale Gauntlets"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D1 $type->rare->exarch $tier->any
HasSearingExarchImplicit >= 1
Rarity Normal Magic Rare
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D3 $type->rare->eater $tier->anyhigh
HasEaterOfWorldsImplicit >= 1
Rarity Normal Magic Rare
BaseType == "Assassin's Mitts" "Crusader Boots" "Crusader Gloves" "Deicide Mask" "Dragonscale Boots" "Dragonscale Gauntlets" "Eternal Burgonet" "Hubris Circlet" "Hydrascale Boots" "Hydrascale Gauntlets" "Lion Pelt" "Murder Boots" "Murder Mitts" "Nightmare Bascinet" "Pig-Faced Bascinet" "Praetor Crown" "Shagreen Gloves" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Stealth Boots" "Stealth Gloves" "Titan Gauntlets" "Titan Greaves" "Vaal Gauntlets" "Vaal Greaves" "Wyrmscale Gauntlets"
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
Show # %D1 $type->rare->eater $tier->any
HasEaterOfWorldsImplicit >= 1
Rarity Normal Magic Rare
SetFontSize 18
SetTextColor 255 255 255 255
SetBorderColor 255 255 255 255
SetBackgroundColor 50 130 165
PlayEffect Blue Temp
#===============================================================================================================
# [[0400]] Exotic Bases
#===============================================================================================================
# !! Waypoint c1.exotic.all : "Exotic - Expedition, exotic Talismans, Sacrificial garbs"
# These bases don't usually drop during normal gameplay and are usually only acquired form certain sources
# These are bases such as heist and ritual bases.
Show # $type->exoticbases $tier->exoticheistbases
Rarity Normal Magic Rare
BaseType == "Accumulator Wand" "Alternating Sceptre" "Anarchic Spiritblade" "Apex Cleaver" "Assembler Wand" "Astrolabe Amulet" "Banishing Blade" "Battery Staff" "Blasting Blade" "Blunt Force Condenser" "Boom Mace" "Capacity Rod" "Capricious Spiritblade" "Cogwork Ring" "Cold-attuned Buckler" "Congregator Wand" "Crack Mace" "Crushing Force Magnifier" "Disapprobation Axe" "Endothermic Buckler" "Eventuality Rod" "Exhausting Spirit Shield" "Exothermic Tower Shield" "Fickle Spiritblade" "Flare Mace" "Flashfire Blade" "Flickerflame Blade" "Foundry Bow" "Geodesic Ring" "Heat-attuned Tower Shield" "Hedron Bow" "Hollowpoint Dagger" "Honed Cleaver" "Impact Force Propagator" "Infernal Blade" "Magmatic Tower Shield" "Malign Fangs" "Maltreatment Axe" "Mechalarm Belt" "Micro-Distillery Belt" "Oscillating Sceptre" "Pneumatic Dagger" "Polar Buckler" "Potentiality Rod" "Pressurised Dagger" "Prime Cleaver" "Psychotic Axe" "Rebuking Blade" "Reciprocation Staff" "Shadow Fangs" "Simplex Amulet" "Solarine Bow" "Stabilising Sceptre" "Subsuming Spirit Shield" "Transfer-attuned Spirit Shield" "Transformer Staff" "Void Fangs"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticritualbases
Rarity Normal Magic Rare
BaseType == "Aetherwind Gloves" "Archdemon Crown" "Atonement Mask" "Basemetal Treads" "Blizzard Crown" "Brimstone Treads" "Cloudwhisper Boots" "Darksteel Treads" "Debilitation Gauntlets" "Demon Crown" "Dreamquest Slippers" "Duskwalk Slippers" "Gale Crown" "Gauche Gloves" "Gruelling Gauntlets" "Imp Crown" "Leyline Gloves" "Nexus Gloves" "Nightwind Slippers" "Penitent Mask" "Sinistral Gloves" "Sorrow Mask" "Southswing Gloves" "Stormrider Boots" "Taxing Gauntlets" "Windbreak Boots" "Winter Crown"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticlakekala
Rarity Normal Magic Rare
BaseType == "Dusk Ring" "Gloam Ring" "Penumbra Ring" "Shadowed Ring" "Tenebrous Ring"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
Show # %D5 $type->exoticbases $tier->exoticexpeditionbases
Rarity Normal Magic Rare
BaseType == "Iron Flask" "Runic Crest" "Runic Crown" "Runic Gages" "Runic Gauntlets" "Runic Gloves" "Runic Greaves" "Runic Helm" "Runic Sabatons" "Runic Sollerets"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exotictalismanbases $artefactex
Rarity Normal Magic Rare
BaseType == "Greatwolf Talisman" "Rot Head Talisman"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # $type->exoticbases $tier->exoticbasesmisc
Rarity Normal Magic Rare
BaseType == "Grasping Mail"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # %D6 $type->exoticbaseslower $tier->exoticsacrificial
Mirrored False
Rarity Normal Magic Rare
BaseType == "Sacrificial Garb"
Corrupted False
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#===============================================================================================================
# [[0500]] IDENTIFIED MOD FILTERING - COMBINATIONS
#===============================================================================================================
# !! Waypoint c1.idmod.all : "Identified Mods - Best Veiled mods and combinations of expensive ID mods"
#------------------------------------
# [0501] ID Mod exceptions - override id mod matching section
#------------------------------------
Show # %DS5 $type->exoticmods $tier->t1veil
Rarity Rare
Identified True
HasExplicitMod "Catarina's Veiled" "Elreon's Veiled" "Leo's Veiled" "Rin's Veiled" "Vagan's Veiled" "Vorici's Veiled"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 0 75 30 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 0 Blue Diamond
Show # %DS4 $type->exoticmods $tier->t2veil
Rarity Rare
Identified True
HasExplicitMod "Gravicius' Veiled" "Guff's Veiled" "Haku's" "It That Fled's Veiled" "Korell's Veiled" "of Aisling's Veil" "of Cameria's Veil" "of Hillock's Veil" "of Janus' Veil" "of Jorgin's Veil" "Riker" "Tora's Veiled"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 20 20 0 255
PlayAlertSound 3 300
PlayEffect Blue
MinimapIcon 1 Blue Diamond
#------------------------------------
# [0502] Physical
#------------------------------------
Show # $type->rareid $tier->weapon_phys
DropLevel >= 55
Rarity Rare
Class == "Bows" "Claws" "Daggers" "One Hand Axes" "One Hand Maces" "One Hand Swords" "Thrusting One Hand Swords" "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Wands" "Warstaves"
Identified True
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod >=3 "Merciless" "Tyrannical" "Flaring" "Dictator's" "Emperor's" "of Celebration" "of Incision" "of Dissolution" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod =0 "Heavy" "Serrated" "Wicked" "Vicious" "Glinting" "Burnished" "Polished" "Honed" "of Needling" "of Skill"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->weapon_physpure
Mirrored False
DropLevel >= 55
Rarity Rare
Class == "Bows" "Claws" "Daggers" "One Hand Axes" "One Hand Maces" "One Hand Swords" "Thrusting One Hand Swords" "Two Hand Axes" "Two Hand Maces" "Two Hand Swords" "Wands" "Warstaves"
Identified True
Corrupted False
HasExplicitMod "Merciless" "Tyrannical" "Cruel" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod >=2 "Merciless" "Tyrannical" "Flaring" "Dictator's" "Emperor's" "of Celebration" "of Incision" "of Dissolution" "of the Underground" "Subterranean" "of Many" "of Tacati" "Tacati's"
HasExplicitMod =0 "Heavy" "Serrated" "Wicked" "Vicious" "Glinting" "Burnished" "Polished" "Honed" "of Needling" "of Skill"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
#------------------------------------
# [0503] Elemental
#------------------------------------
Show # $type->rareid $tier->weapon_ele
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Imperial Skean" "Jewelled Foil" "Maraketh Bow" "Spine Bow" "Spiraled Foil" "Thicket Bow"
Identified True
HasExplicitMod "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many"
HasExplicitMod >=4 "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity" "of Fury" "Devastating" "Overpowering" "of the Essence" "Essences" "Veiled" "of the Veil" "of the Underground" "Subterranean" "of Many"
HasExplicitMod =0 "Heated" "Smouldering" "Smoking" "Burning" "Frosted" "Chilled" "Icy" "Frigid" "Humming" "Buzzing" "Snapping" "Crackling" "of Needling" "of Skill" "Glinting" "Heavy"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255
SetBackgroundColor 47 0 74 255
PlayAlertSound 3 300
PlayEffect Purple
MinimapIcon 1 Purple Diamond
Show # $type->rareid $tier->weapon_elepure
Mirrored False
Rarity Rare
BaseType == "Ambusher" "Corsair Sword" "Eye Gouger" "Fancy Foil" "Gemini Claw" "Grove Bow" "Hellion's Paw" "Imbued Wand" "Imperial Bow" "Imperial Claw" "Imperial Skean" "Jewelled Foil" "Maraketh Bow" "Spine Bow" "Spiraled Foil" "Thicket Bow"
Identified True
Corrupted False
HasExplicitMod "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of the Underground" "Subterranean" "of Many"
HasExplicitMod >=3 "Carbonising" "Cremating" "Blasting" "Crystalising" "Entombing" "Polar" "Vapourising" "Electrocuting" "Discharging" "Matatl's" "Tacati" "Topotante's" "of Celebration" "of Infamy" "of Fame" "of Incision" "of Penetrating" "of Puncturing" "of Destruction" "of Ferocity" "of Fury" "Devastating" "Overpowering" "of the Essence" "Essences" "Veiled" "of the Veil" "of the Underground" "Subterranean" "of Many"
HasExplicitMod =0 "Heated" "Smouldering" "Smoking" "Burning" "Frosted" "Chilled" "Icy" "Frigid" "Humming" "Buzzing" "Snapping" "Crackling" "of Needling" "of Skill" "Glinting" "Heavy"
SetFontSize 18
SetTextColor 0 240 190 255
SetBorderColor 0 240 190 255