This repository has been archived by the owner on Feb 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoftrta_tight.filter
6066 lines (5403 loc) · 160 KB
/
oftrta_tight.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
###############################################################################
# #
# One Filter to Rule Them All #
# "Path of Exile" Item Filter #
# #
# Version: 4.3.0 Strictness: tight #
# #
# https://www.pathofexile.com/forum/view-thread/1259059 #
# #
# #
# This work is licensed under the Creative Commons Attribution 3.0 #
# Unported (CC BY 3.0) License. #
# To view a copy of this license, visit #
# https://creativecommons.org/licenses/by/3.0/ #
# #
# Copyright 2015 - 2019 Florian Thiessen #
# #
###############################################################################
###############################################################################
# Section: ### Exceptions [9K6RBT] ############################################
###############################################################################
#DENX9Y
Show #DENX9Y
BaseType "Fishing Rod"
SetTextColor 0 255 150
SetBorderColor 0 255 150
SetFontSize 45
PlayAlertSound 5 300
MinimapIcon 0 Yellow Diamond
PlayEffect Yellow
#TKE801
Show #TKE801
LinkedSockets = 6
Rarity Normal Magic Rare
SetTextColor 0 255 150
SetBorderColor 0 255 150
SetFontSize 45
PlayAlertSound 5 300
MinimapIcon 1 Green Hexagon
#7O5DB4
Show #7O5DB4
Sockets = 6
Rarity Normal Magic Rare
SetBorderColor 0 255 150
SetFontSize 36
PlayAlertSound 9 225
MinimapIcon 2 Yellow Diamond
#NL8DV4
Show #NL8DV4
BaseType "Sacrificial Garb"
SetBorderColor 127 127 127
SetFontSize 36
### /Exceptions ###############################################################
###############################################################################
###############################################################################
# Section: ### Enchantments [UI2ER0] ##########################################
###############################################################################
#X9VXG6
Show #X9VXG6
AnyEnchantment True
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Blade Vortex Duration 2" "Enchantment Cyclone Attack Speed 2" "Enchantment Double Strike Double Damage Vs Bleeding 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Ice Nova Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Lightning Warp Duration 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Righteous Fire Damage 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spark Num Of Additional Projectiles 2" "Enchantment Storm Call Duration 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Winter Orb Damage 2" "Storm Brand Attached Target Lightning Penetration 2"
SetBorderColor 127 127 127
SetFontSize 42
PlayAlertSound 5 200
MinimapIcon 0 White Triangle
PlayEffect White
#C6SDRU
Show #C6SDRU
AnyEnchantment True
Rarity Unique
Class "Helmets"
HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Blade Vortex Duration 2" "Enchantment Cyclone Attack Speed 2" "Enchantment Double Strike Double Damage Vs Bleeding 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Ice Nova Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Lightning Warp Duration 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Righteous Fire Damage 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spark Num Of Additional Projectiles 2" "Enchantment Storm Call Duration 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Winter Orb Damage 2" "Storm Brand Attached Target Lightning Penetration 2"
SetBorderColor 127 127 127
SetFontSize 42
PlayAlertSound 5 200
MinimapIcon 0 White Triangle
PlayEffect White
#CRC5E6
Show #CRC5E6
AnyEnchantment True
SetBorderColor 127 127 127
SetFontSize 39
MinimapIcon 2 White Triangle
PlayEffect White
### /Enchantments #############################################################
###############################################################################
###############################################################################
# Section: ### Elder (Normal & Magic) [3BY890] ################################
###############################################################################
#E4IA32
Show #E4IA32
ItemLevel >= 86
Rarity Normal
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Champion Kite Shield" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#4GGJKH
Show #4GGJKH
ItemLevel >= 86
Rarity Magic
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Champion Kite Shield" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#Z63D94
Show #Z63D94
ItemLevel >= 85
Rarity Normal
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#DB767F
Show #DB767F
ItemLevel >= 85
Rarity Magic
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#8Z0FPN
Show #8Z0FPN
ItemLevel >= 85
Rarity Normal
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#LQCZ09
Show #LQCZ09
ItemLevel >= 85
Rarity Magic
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#OSC8GQ
Show #OSC8GQ
ItemLevel >= 84
Rarity Normal
BaseType "Crusader Boots" "Crusader Gloves" "Dragonscale Boots" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Gripped Gloves" "Murder Boots" "Murder Mitts" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#6B45EH
Show #6B45EH
ItemLevel >= 84
Rarity Magic
BaseType "Crusader Boots" "Crusader Gloves" "Dragonscale Boots" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Gripped Gloves" "Murder Boots" "Murder Mitts" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#LPCQ9Y
Show #LPCQ9Y
ItemLevel >= 84
Rarity Normal
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#7H831Y
Show #7H831Y
ItemLevel >= 84
Rarity Magic
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#N97UEF
Show #N97UEF
Rarity Normal Magic
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Elder"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#YAD3DD
Show #YAD3DD
Rarity Normal Magic
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Elder"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#5RB0D5
Show #5RB0D5
ItemLevel >= 86
Rarity Normal
Class "Amulets" "Belts" "Quiver"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#MMKC1R
Show #MMKC1R
ItemLevel >= 86
Rarity Magic
Class "Amulets" "Belts" "Quiver"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#2005KJ
Show #2005KJ
ItemLevel >= 85
Rarity Normal
Class "Amulets" "Belts" "Quiver"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#LJB571
Show #LJB571
ItemLevel >= 85
Rarity Magic
Class "Amulets" "Belts" "Quiver"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#KUFGNC
Show #KUFGNC
Rarity Normal
Class "Amulets" "Belts" "Quiver"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#DW0ZLR
Show #DW0ZLR
Rarity Magic
Class "Amulets" "Belts" "Quiver"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#BCBL9E
Show #BCBL9E
ItemLevel >= 84
Rarity Normal
Class "Rings"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#H3A3DS
Show #H3A3DS
ItemLevel >= 84
Rarity Magic
Class "Rings"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#10ESBB
Show #10ESBB
ItemLevel >= 83
Rarity Normal
Class "Rings"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#Q03E4Y
Show #Q03E4Y
ItemLevel >= 83
Rarity Magic
Class "Rings"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#RSJZP1
Show #RSJZP1
Rarity Normal
Class "Rings"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#SGHDGF
Show #SGHDGF
Rarity Magic
Class "Rings"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#BIC1P1
Show #BIC1P1
ItemLevel >= 83
Rarity Normal
BaseType "Ambusher" "Coronal Maul" "Demon Dagger" "Exquisite Blade" "Fleshripper" "Gemini Claw" "Harbinger Bow" "Harpy Rapier" "Jewelled Foil" "Siege Axe" "Skean" "Spiraled Foil" "Vaal Axe"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#Z8ZA3B
Show #Z8ZA3B
ItemLevel >= 83
Rarity Magic
BaseType "Ambusher" "Coronal Maul" "Demon Dagger" "Exquisite Blade" "Fleshripper" "Gemini Claw" "Harbinger Bow" "Harpy Rapier" "Jewelled Foil" "Siege Axe" "Skean" "Spiraled Foil" "Vaal Axe"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#Z802XS
Show #Z802XS
ItemLevel >= 84
Rarity Normal
BaseType "Convoking Wand" "Imbued Wand" "Kris" "Profane Wand" "Sambar Sceptre" "Void Sceptre"
HasInfluence "Elder"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#6EC9QE
Show #6EC9QE
ItemLevel >= 84
Rarity Magic
BaseType "Convoking Wand" "Imbued Wand" "Kris" "Profane Wand" "Sambar Sceptre" "Void Sceptre"
HasInfluence "Elder"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#KR9326
Show #KR9326
Rarity Normal Magic
BaseType "Ambusher" "Coronal Maul" "Demon Dagger" "Exquisite Blade" "Fleshripper" "Gemini Claw" "Harbinger Bow" "Harpy Rapier" "Jewelled Foil" "Siege Axe" "Skean" "Spiraled Foil" "Vaal Axe"
HasInfluence "Elder"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#39DT16
Show #39DT16
Rarity Normal Magic
BaseType "Convoking Wand" "Imbued Wand" "Kris" "Profane Wand" "Sambar Sceptre" "Void Sceptre"
HasInfluence "Elder"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
### /Elder (Normal & Magic) ###################################################
###############################################################################
###############################################################################
# Section: ### Shaper (Normal & Magic) [DTYXE9] ###############################
###############################################################################
#D7MK9G
Show #D7MK9G
ItemLevel >= 86
Rarity Normal
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Champion Kite Shield" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#9XD6M9
Show #9XD6M9
ItemLevel >= 86
Rarity Magic
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Champion Kite Shield" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#GC3ATD
Show #GC3ATD
ItemLevel >= 85
Rarity Normal
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#0R9O5Y
Show #0R9O5Y
ItemLevel >= 85
Rarity Magic
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#PMQL2L
Show #PMQL2L
ItemLevel >= 85
Rarity Normal
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#522368
Show #522368
ItemLevel >= 85
Rarity Magic
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#2N8Z5O
Show #2N8Z5O
ItemLevel >= 84
Rarity Normal
BaseType "Crusader Boots" "Crusader Gloves" "Dragonscale Boots" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Gripped Gloves" "Murder Boots" "Murder Mitts" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#4T34DA
Show #4T34DA
ItemLevel >= 84
Rarity Magic
BaseType "Crusader Boots" "Crusader Gloves" "Dragonscale Boots" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Gripped Gloves" "Murder Boots" "Murder Mitts" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#IK32AP
Show #IK32AP
ItemLevel >= 84
Rarity Normal
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#D09RLE
Show #D09RLE
ItemLevel >= 84
Rarity Magic
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#H4EE4V
Show #H4EE4V
Rarity Normal Magic
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Shaper"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#E7RB33
Show #E7RB33
Rarity Normal Magic
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Shaper"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#0TDS7B
Show #0TDS7B
ItemLevel >= 86
Rarity Normal
Class "Amulets" "Belts" "Quiver"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#GZO040
Show #GZO040
ItemLevel >= 86
Rarity Magic
Class "Amulets" "Belts" "Quiver"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#9Q585K
Show #9Q585K
ItemLevel >= 85
Rarity Normal
Class "Amulets" "Belts" "Quiver"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#AVQL85
Show #AVQL85
ItemLevel >= 85
Rarity Magic
Class "Amulets" "Belts" "Quiver"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#3OS1E3
Show #3OS1E3
Rarity Normal
Class "Amulets" "Belts" "Quiver"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#81FF5J
Show #81FF5J
Rarity Magic
Class "Amulets" "Belts" "Quiver"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#CNRIZJ
Show #CNRIZJ
ItemLevel >= 84
Rarity Normal
Class "Rings"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#03U4DY
Show #03U4DY
ItemLevel >= 84
Rarity Magic
Class "Rings"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#LNA38Y
Show #LNA38Y
ItemLevel >= 83
Rarity Normal
Class "Rings"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#VEDA3P
Show #VEDA3P
ItemLevel >= 83
Rarity Magic
Class "Rings"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#NLBC5X
Show #NLBC5X
Rarity Normal
Class "Rings"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#5TL4ZC
Show #5TL4ZC
Rarity Magic
Class "Rings"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#DSYK4X
Show #DSYK4X
ItemLevel >= 83
Rarity Normal
BaseType "Ambusher" "Coronal Maul" "Demon Dagger" "Exquisite Blade" "Fleshripper" "Gemini Claw" "Harbinger Bow" "Harpy Rapier" "Jewelled Foil" "Siege Axe" "Skean" "Spiraled Foil" "Vaal Axe"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#XVJ9RF
Show #XVJ9RF
ItemLevel >= 83
Rarity Magic
BaseType "Ambusher" "Coronal Maul" "Demon Dagger" "Exquisite Blade" "Fleshripper" "Gemini Claw" "Harbinger Bow" "Harpy Rapier" "Jewelled Foil" "Siege Axe" "Skean" "Spiraled Foil" "Vaal Axe"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#RX897B
Show #RX897B
ItemLevel >= 84
Rarity Normal
BaseType "Convoking Wand" "Imbued Wand" "Kris" "Profane Wand" "Sambar Sceptre" "Void Sceptre"
HasInfluence "Shaper"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#S24CA6
Show #S24CA6
ItemLevel >= 84
Rarity Magic
BaseType "Convoking Wand" "Imbued Wand" "Kris" "Profane Wand" "Sambar Sceptre" "Void Sceptre"
HasInfluence "Shaper"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#UAPQSF
Show #UAPQSF
Rarity Normal Magic
BaseType "Ambusher" "Coronal Maul" "Demon Dagger" "Exquisite Blade" "Fleshripper" "Gemini Claw" "Harbinger Bow" "Harpy Rapier" "Jewelled Foil" "Siege Axe" "Skean" "Spiraled Foil" "Vaal Axe"
HasInfluence "Shaper"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#UM02JZ
Show #UM02JZ
Rarity Normal Magic
BaseType "Convoking Wand" "Imbued Wand" "Kris" "Profane Wand" "Sambar Sceptre" "Void Sceptre"
HasInfluence "Shaper"
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
### /Shaper (Normal & Magic) ##################################################
###############################################################################
###############################################################################
# Section: ### Crusader Redeemer Hunter Warlord (Normal & Magic) [NWTLY4] #####
###############################################################################
#FBQ8JE
Show #FBQ8JE
ItemLevel >= 86
Rarity Normal
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Champion Kite Shield" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#M47EGI
Show #M47EGI
ItemLevel >= 86
Rarity Magic
BaseType "Assassin's Garb" "Astral Plate" "Bone Helmet" "Champion Kite Shield" "Crusader Boots" "Dragonscale Boots" "Eternal Burgonet" "Fossilised Spirit Shield" "Glorious Plate" "Hubris Circlet" "Lion Pelt" "Murder Boots" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet" "Saintly Chainmail" "Slink Boots" "Sorcerer Boots" "Titan Greaves" "Titanium Spirit Shield" "Triumphant Lamellar" "Two-Toned Boots" "Vaal Regalia"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#NCQIYA
Show #NCQIYA
ItemLevel >= 85
Rarity Normal
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70
SetBorderColor 200 200 200
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#UHHRKY
Show #UHHRKY
ItemLevel >= 85
Rarity Magic
BaseType "Crusader Gloves" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Gripped Gloves" "Murder Mitts" "Slink Gloves" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70
SetBorderColor 136 136 255
SetFontSize 42
MinimapIcon 0 White Star
PlayEffect White
#HJJMQ0
Show #HJJMQ0
ItemLevel >= 85
Rarity Normal
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#DPCAFA
Show #DPCAFA
ItemLevel >= 85
Rarity Magic
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#M37YNR
Show #M37YNR
ItemLevel >= 84
Rarity Normal
BaseType "Crusader Boots" "Crusader Gloves" "Dragonscale Boots" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Gripped Gloves" "Murder Boots" "Murder Mitts" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#3DJQZ6
Show #3DJQZ6
ItemLevel >= 84
Rarity Magic
BaseType "Crusader Boots" "Crusader Gloves" "Dragonscale Boots" "Dragonscale Gauntlets" "Fingerless Silk Gloves" "Fossilised Spirit Shield" "Gripped Gloves" "Murder Boots" "Murder Mitts" "Slink Boots" "Slink Gloves" "Sorcerer Boots" "Sorcerer Gloves" "Spiked Gloves" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Two-Toned Boots"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 39
MinimapIcon 1 White Star
PlayEffect White
#T8FJUS
Show #T8FJUS
ItemLevel >= 84
Rarity Normal
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 240 240 240
SetBackgroundColor 70 70 70 230
SetBorderColor 200 200 200
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#V88BFG
Show #V88BFG
ItemLevel >= 84
Rarity Magic
BaseType "Eternal Burgonet" "Hubris Circlet" "Lion Pelt" "Nightmare Bascinet" "Praetor Crown" "Royal Burgonet"
HasInfluence "Crusader" "Hunter" "Redeemer" "Warlord"
SetTextColor 140 190 255
SetBackgroundColor 70 70 70 230
SetBorderColor 136 136 255
SetFontSize 36
MinimapIcon 2 White Star
PlayEffect White
#M64SYH
Show #M64SYH
Rarity Normal Magic