forked from Lapudavo/ggg_default_filter_2.5.1c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.filter
12120 lines (10538 loc) · 370 KB
/
default.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
# Special Item - Fishing Rod
Show
BaseType "Fishing Rod"
SetTextColor 128 0 128
SetBorderColor 180 96 0
SetFontSize 45
PlayAlertSound 5 300
# Hideout Microtransactions & Decorations
Show
Class "Hideout Doodads" "Microtransactions"
SetTextColor 255 192 203
# Quest Items
Show
Class "Quest"
SetFontSize 35
# Tabula Rasa Catcher
Show
SocketGroup "WWWWWW"
BaseType "Simple Robe"
Rarity = Unique
SetFontSize 36
# 6Link Any
Show
LinkedSockets = 6
SetTextColor 128 0 128
SetBorderColor 180 96 0
SetFontSize 45
PlayAlertSound 5 300
# 5Link Any
Show
LinkedSockets = 5
Class "Body Armours"
SetBorderColor 180 96 0
SetFontSize 40
PlayAlertSound 1 175
Show
LinkedSockets = 5
Class "Bows"
ItemLevel >= 64
SetBorderColor 180 96 0
SetFontSize 40
PlayAlertSound 1 175
Show
LinkedSockets = 5
Class "Staves"
ItemLevel >= 55
SetBorderColor 180 96 0
SetFontSize 40
Show
LinkedSockets = 5
SetBorderColor 180 96 0
SetFontSize 38
# 6Socket Any
Show
Sockets = 6
SetBackgroundColor 0 0 0
SetBorderColor 180 96 0
SetFontSize 39
PlayAlertSound 9 225
# Sacrificial Garb
Show
BaseType "Sacrificial Garb"
SetTextColor 210 0 0
SetBorderColor 150 0 0
# Currency - Highest Valuable
Show
BaseType "Mirror of Kalandra" "Albino Rhoa Feather"
SetTextColor 128 0 128
SetBackgroundColor 255 215 0
SetBorderColor 180 96 0
SetFontSize 45
PlayAlertSound 5 300
# Currency - High Valuable
Show
BaseType "Exalted Orb" "Eternal Orb" "Divine Orb"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 175 96 37
SetFontSize 40
PlayAlertSound 5 300
# Currency - Valuable
Show
BaseType "Chaos Orb" "Regal Orb" "Gemcutter's Prism" "Orb of Regret"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Orb of Fusing
Show
BaseType "Orb of Fusing"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Blessed Orb
Show
BaseType "Blessed Orb"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Orb of Scouring
Show
BaseType "Orb of Scouring"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Orb of Alchemy
Show
BaseType "Orb of Alchemy"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Stacked Deck
Show
BaseType "Stacked Deck"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Vaal Orb
Show
BaseType "Vaal Orb"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Cartographer's Chisel
Show
BaseType "Cartographer's Chisel"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Perandus Coin
Show
BaseType "Perandus Coin"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130 0
SetFontSize 36
# Currency - Medium Value
Show
BaseType "Orb of Alteration" "Chromatic Orb" "Jeweller's Orb" "Orb of Chance" "Glassblower's Bauble" "Orb of Transmutation" "Orb of Augmentation"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0 235
SetBorderColor 170 158 130 0
SetFontSize 36
# Currency - Armourer's Scrap & Blacksmith's Whetstone
Show # Currency - Armourer's Scrap & Blacksmith's Whetstone
BaseType "Armourer's Scrap" "Blacksmith's Whetstone"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0 220
SetBorderColor 170 158 130 0
SetFontSize 36
# Currency - Wisdom Scroll
Show # Currency - Wisdom Scroll
BaseType "Scroll of Wisdom"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0 220
SetBorderColor 170 158 130 0
SetFontSize 36
# Currency - Portal Scroll
Show # Currency - Portal Scroll
BaseType "Portal Scroll"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0 220
SetBorderColor 170 158 130 0
SetFontSize 36
# Currency - Scroll Fragment & Alteration Shard
Show # Currency - Scroll Fragment & Alteration Shard
BaseType "Scroll Fragment" "Alteration Shard"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0 220
SetBorderColor 170 158 130 0
SetFontSize 36
# Currency - Labyrinth Keys
Show
BaseType "Absorption" "Bane of the Loyal" "Cogs of Disruption" "Golden Key" "Heart of the Gargoyle" "Orb of Elemental Dispersion" "Portal Shredder" "Rod of Detonation" "Sand of Eternity" "Silver Key" "Treasure Key" "Eber's Key" "Yriel's Key" "Inya's Key" "Volkuur's Key"
SetTextColor 0 0 0
SetBackgroundColor 170 158 130
SetBorderColor 0 0 0
# Currency - Remnant of Corruption
Show
Class "Currency"
BaseType "Remnant of Corruption"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130
SetFontSize 36
PlayAlertSound 9 225
# Currency - Cartographer's Sextant
Show
Class "Currency"
BaseType "Cartographer's Sextant"
SetTextColor 0 0 0
SetBackgroundColor 255 200 0
SetBorderColor 0 0 0
SetFontSize 36
PlayAlertSound 9 225
# Currency - Cartographer's Seal
Show
Class "Currency"
BaseType "Cartographer's Seal"
SetTextColor 0 0 0
SetBackgroundColor 255 200 0
SetBorderColor 0 0 0
SetFontSize 37
PlayAlertSound 9 225
# Currency - Unshaping Orb
Show
Class "Currency"
BaseType "Unshaping Orb"
SetTextColor 0 0 0
SetBackgroundColor 255 200 0
SetBorderColor 0 0 0
SetFontSize 36
PlayAlertSound 9 225
# Currency - Essence
Show
Class "Currency"
BaseType "Essence"
SetTextColor 0 0 0
SetBackgroundColor 170 158 130
SetBorderColor 0 0 0
SetFontSize 36
PlayAlertSound 9 225
# Currency - Prophecy
Show
Class "Currency"
BaseType "Silver Coin" "Prophecy"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 181 75 255 150
SetFontSize 38
PlayAlertSound 9 225
# Currency - Breach Splinter
Show
Class "Currency"
BaseType "Splinter of Xoph" "Splinter of Tul" "Splinter of Esh" "Splinter of Uul-Netol" "Splinter of Chayula"
SetTextColor 166 90 255
SetBackgroundColor 0 0 0
SetFontSize 36
PlayAlertSound 7 225
# Currency - Breach Blessing
Show
Class "Currency"
BaseType "Blessing of Xoph" "Blessing of Tul" "Blessing of Esh" "Blessing of Uul-Netol" "Blessing of Chayula"
SetTextColor 166 90 255
SetBackgroundColor 0 0 0
SetFontSize 36
PlayAlertSound 7 225
# Maps - Map Fragments - Breachstones
Show
Class "Map Fragments"
BaseType "Xoph's Breachstone" "Tul's Breachstone" "Esh's Breachstone" "Uul-Netol's Breachstone" "Chayula's Breachstone"
SetTextColor 255 255 255
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255
SetFontSize 40
PlayAlertSound 2 200
# Currency - All
Show
Class "Currency"
SetTextColor 170 158 130
SetBackgroundColor 0 0 0
SetBorderColor 170 158 130 0
SetFontSize 36
# Gems - Empower/Enhance/Enlighten
Show # Gems - Empower/Enhance/Enlighten
Class "Gems"
BaseType "Empower" "Enhance" "Enlighten"
SetTextColor 180 96 0
SetBackgroundColor 0 0 0
SetBorderColor 27 162 155
PlayAlertSound 9 225
# Gems - Portal/DetonateMines/AddedChaos
Show # Gems - Portal/DetonateMines/AddedChaos
Class "Gems"
BaseType "Portal" "Detonate Mines" "Added Chaos Damage"
SetTextColor 27 162 155
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# Gems - Qual10+
Show # Gems - Qual10+
Quality >= 10
Class "Gems"
SetTextColor 27 162 155
SetBackgroundColor 0 0 0
SetBorderColor 30 144 255
# Gems - Qual1+
Show # Gems - Qual1+
Quality >= 1
Class "Gems"
SetTextColor 27 162 155
SetBackgroundColor 0 0 0
SetBorderColor 0 100 150 200
# Gems - Vaal
Show # Gems - Vaal
Class "Gems"
BaseType "Vaal"
SetTextColor 27 162 155
SetBorderColor 210 0 0
# Gems - Active All
Show # Gems - Active
Class "Active Skill Gems"
SetTextColor 27 162 155
SetFontSize 34
# Gems - Support All
Show # Gems - Support
Class "Support Skill Gems"
SetTextColor 27 162 155
SetFontSize 34
# Gems - All
Show # Gems - All
Class "Gems"
SetTextColor 27 162 155
SetFontSize 34
# Unique - Highest Valuable
Show
BaseType "Occultist's Vestment" "Glorious Plate" "Prophecy Wand" "Desert Brigandine" "Sorcerer Boots" "Golden Bracers" "Golden Obi" "Legion Gloves" "Fishing Rod" "Golden Caligae" "Golden Wreath" "Sapphire Flask" "Citrine Amulet" "Jasper Chopper" "Despot Axe" "Golden Hoop" "Jet Amulet" "Golden Flame" "Jewelled Foil"
Rarity = Unique
SetTextColor 128 0 128
SetBorderColor 180 96 0
SetFontSize 45
PlayAlertSound 5 300
# Unique - High Valuable
Show
BaseType "Ancient Greaves" "Champion Kite Shield" "Citrine Amulet" "Despot Axe" "Glorious Plate" "Penetrating Arrow Quiver" "Sanctified Life Flask" "Sanctified Mana Flask" "Serpentscale Boots" "Siege Axe" "Slaughter Knife" "Spine Bow" "Steelhead" "Trapper Boots" "Zealot Helmet" "Gladiator Plate"
Rarity = Unique
SetBorderColor 180 96 0
SetFontSize 40
PlayAlertSound 5 225
# Unique - All
Show
Rarity = Unique
SetTextColor 175 96 37
# Maps - DropLevel 78+
Show
DropLevel >= 78
Class "Maps"
SetBorderColor 150 0 0 # Maps - 78+
SetFontSize 45
PlayAlertSound 6 250
# Maps - DropLevel 73 - 77
Show # Maps - DropLevel 73 - 77
DropLevel >= 73
DropLevel <= 77
Class "Maps"
SetFontSize 38
PlayAlertSound 2 200
# Maps - DropLevel <= 72
Show # Maps - DropLevel <= 72
DropLevel <= 72
Class "Maps"
# Maps - Labyrinth
Show # Maps - Labyrinth
Class "Labyrinth"
SetTextColor 74 230 58
# Maps - Map Frag - Mortal Hope
Show # Maps - Map Frag - Mortal Hope
Class "Map Fragments"
BaseType "Mortal Hope"
SetBorderColor 150 0 0
SetFontSize 45
PlayAlertSound 6 250
# Maps - Map Frag - Shaper Fragments
Show # Maps - Map Frag - Shaper Fragments
Class "Map Fragments"
BaseType "Fragment of the Phoenix" "Fragment of the Minotaur" "Fragment of the Chimera" "Fragment of the Hydra"
SetFontSize 38
PlayAlertSound 2 200
# Maps - Map Frag - Sacrifice at Midnight
Show # Maps - Map Frag - Sacrifice at Midnight
Class "Map Fragments"
BaseType "Sacrifice at Midnight"
SetBorderColor 150 0 0
PlayAlertSound 2 200
# Maps - Map Frag - All
Show # Maps - Map Frag - All
Class "Map Fragments"
# Maps - All
Show # Maps - All
Class "Map"
# Jewels - Rare
Show
Class "Jewel"
Rarity = Rare
Show # Jewels - Normal/Magic
Class "Jewel"
Rarity <= Magic
SetBorderColor 136 136 255
# Divination Cards - Highest Value
Show
Class "Divination Card"
BaseType "The Trial" "The Enlightened" "The Surveyor"
SetTextColor 0 186 254
SetBackgroundColor 0 0 0
SetBorderColor 74 230 58 200
SetFontSize 42
PlayAlertSound 5 250
# Divination Cards - High Value
Show
Class "Divination Card"
BaseType "The Brittle Emperor" "The Doctor" "The Hunger" "The Wind" "The Avenger" "The Celestial Justicar" "The Fiend" "The King's Heart" "The Queen" "The Last One Standing" "The Artist" "Wealth and Power" "House of Mirrors" "The Dragon's Heart" "Pride Before the Fall" "The Vast" "Bowyer's Dream" "Hunter's Reward" "The Thaumaturgist" "The Warlord" "The Offering" "Lost Worlds" "The Ethereal" "Abandoned Wealth" "The Dapper Prodigy" "Time-Lost Relic" "The Trial" "The Surveyor" "Last Hope" "The Enlightened" "The Dark Mage" "The Immortal" "The Harvester" "The Devastator" "Mawr Blaidd"
SetTextColor 0 186 254
SetBackgroundColor 0 0 0
SetBorderColor 0 186 254
SetFontSize 42
PlayAlertSound 5 250
# Divination Cards - Challenge League - Valuable
Show
Class "Divination Card"
BaseType "The Fox" "Lucky Deck" "Treasure Hunter" "Vinia's Token" "The Stormcaller" "The Penitent" "Earth Drinker" "Death" "Dialla's Subjugation" "The Hoarder" "The Drunken Aristocrat" "The Pack Leader" "The Gladiator" "The Road to Power" "The Chains that Bind" "The Betrayal" "The Fletcher" "Tranquillity" "Earth Drinker" "Rats" "The Watcher" "Chaotic Disposition" "The Cartographer" "Emperor of Purity" "Lysah's Respite" "The Calling" "The Formless Sea" "The Valkyrie" "The Wolf" "Lucky Deck" "The Scavenger"
SetTextColor 0 186 254
SetBorderColor 180 96 0
PlayAlertSound 9 225
# Divination Cards - Low Value
Show # Divination Cards - Low Value
Class "Divination Card"
BaseType "The Carrion Crow" "Turn the Other Cheek"
SetTextColor 0 186 254
SetBorderColor 0 186 254 0
# Divination Cards - All
Show # Divination Cards - All
Class "Divination Card"
SetTextColor 0 186 254
SetBorderColor 0 186 254
# ItemLevel 84+ Rares - T1 Armour
Show
BaseType "Glorious Plate" "Assassin's Garb" "Vaal Regalia" "Carnal Armour" "Saintly Chainmail" "Triumphant Lamellar" "Titan Greaves" "Slink Boots" "Sorcerer Boots" "Murder Boots" "Two-Toned Boots" "Dragonscale Boots" "Spiked Gloves" "Gripped Gloves" "Fingerless Silk Gloves" "Murder Mitts" "Crusader Gloves" "Dragonscale Gauntlets" "Eternal Burgonet" "Lion Pelt" "Hubris Circlet" "Deicide Mask" "Bone Helmet" "Nightmare Bascinet" "Pinnacle Tower Shield" "Imperial Buckler" "Titanium Spirit Shield" "Supreme Spiked Shield" "Archon Kite Shield" "Elegant Round Shield"
Rarity = Rare
ItemLevel >= 84
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 77+ Rares - T1 Armour
Show
BaseType "Glorious Plate" "Assassin's Garb" "Vaal Regalia" "Carnal Armour" "Saintly Chainmail" "Triumphant Lamellar" "Titan Greaves" "Slink Boots" "Sorcerer Boots" "Murder Boots" "Two-Toned Boots" "Dragonscale Boots" "Spiked Gloves" "Gripped Gloves" "Fingerless Silk Gloves" "Murder Mitts" "Crusader Gloves" "Dragonscale Gauntlets" "Eternal Burgonet" "Lion Pelt" "Hubris Circlet" "Deicide Mask" "Bone Helmet" "Nightmare Bascinet" "Pinnacle Tower Shield" "Imperial Buckler" "Titanium Spirit Shield" "Supreme Spiked Shield" "Archon Kite Shield" "Elegant Round Shield"
Rarity = Rare
ItemLevel >= 77
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 83+ Rares - T1 Weapon
Show
Class "Claws" "Daggers" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Axes" "One Hand Maces" "Bows" "Staves" "Two Hand Swords" "Two Hand Axes" "Two Hand Maces" "Sceptres"
BaseType "Maraketh Bow" "Gemini Claw" "Sai" "Runic Hatchet" "Behemoth Mace" "Tiger Hook" "Sambar Sceptre" "Eclipse Staff" "Dragoon Sword" "Fleshripper" "Coronal Maul" "Exquisite Blade" "Profane Wand"
Rarity = Rare
ItemLevel >= 83
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 77+ Rares - T1 Weapon
Show
Class "Claws" "Daggers" "Wands" "One Hand Swords" "Thrusting One Hand Swords" "One Hand Axes" "One Hand Maces" "Bows" "Staves" "Two Hand Swords" "Two Hand Axes" "Two Hand Maces" "Sceptres"
BaseType "Maraketh Bow" "Gemini Claw" "Sai" "Runic Hatchet" "Behemoth Mace" "Tiger Hook" "Sambar Sceptre" "Eclipse Staff" "Dragoon Sword" "Fleshripper" "Coronal Maul" "Exquisite Blade" "Profane Wand"
Rarity = Rare
ItemLevel >= 77
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 84+ Rares - Craft Bases - Armour
Show
BaseType "Astral Plate" "Royal Burgonet" "Fossilised Spirit Shield" "Praetor Crown" "Crusader Boots" "Sorcerer Gloves" "Slink Gloves" "Titan Gauntlets"
Rarity = Rare
ItemLevel >= 84
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 77+ Rares - Craft Bases - Armour
Show
BaseType "Astral Plate" "Royal Burgonet" "Fossilised Spirit Shield" "Praetor Crown" "Crusader Boots" "Sorcerer Gloves" "Slink Gloves" "Titan Gauntlets"
Rarity = Rare
ItemLevel >= 77
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 83+ Rares - Craft Bases - Weapon
Show
BaseType "Imbued Wand" "Ambusher" "Reaver Sword" "Thicket Bow" "Great White Claw" "Corsair Sword" "Harbinger Bow" "Vaal Axe" "Platinum Kris" "Opal Wand" "Imperial Claw" "Terror Claw" "Jewelled Foil" "Vaal Rapier" "Piledriver"
Rarity = Rare
ItemLevel >= 83
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 77+ Rares - Craft Bases - Weapon
Show
BaseType "Imbued Wand" "Ambusher" "Reaver Sword" "Thicket Bow" "Great White Claw" "Corsair Sword" "Harbinger Bow" "Vaal Axe" "Platinum Kris" "Opal Wand" "Imperial Claw" "Terror Claw" "Jewelled Foil" "Vaal Rapier" "Piledriver"
Rarity = Rare
ItemLevel >= 77
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 84+ Rares - Jewelery
Show
Class "Amulets" "Rings" "Belts"
Rarity = Rare
ItemLevel >= 84
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 77+ Rares - Jewelery
Show
Class "Amulets" "Rings" "Belts"
Rarity = Rare
ItemLevel >= 77
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 84+ Rares - Quiver
Show
BaseType "Spike-Point Arrow Quiver"
Rarity = Rare
ItemLevel >= 84
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# ItemLevel 77+ Rares - Quiver
Show
BaseType "Spike-Point Arrow Quiver"
Rarity = Rare
ItemLevel >= 77
SetTextColor 255 255 0
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
Show # Lvling Exceptions - Jewelery
BaseType "Coral Ring" "Leather Belt" "Iron Ring" "Rustic Sash" "Heavy Belt"
Rarity = Normal
ItemLevel <= 12
SetTextColor 240 240 240
Show # Lvling Exceptions - Jewelry
BaseType "Coral Ring" "Leather Belt" "Iron Ring" "Rustic Sash" "Heavy Belt"
Rarity = Magic
ItemLevel <= 12
SetTextColor 140 190 255
Show # Lvling Exceptions - Jewelery
BaseType "Jade Amulet" "Lapis Amulet" "Amber Amulet"
Rarity = Normal
ItemLevel <= 20
SetTextColor 240 240 240
Show # Lvling Exceptions - Jewelery
BaseType "Jade Amulet" "Lapis Amulet" "Amber Amulet"
Rarity = Magic
ItemLevel <= 20
SetTextColor 140 190 255
Show # Lvling Exceptions - Jewelery
BaseType "Citrine Amulet" "Turquoise Amulet" "Agate Amulet"
Rarity = Normal
ItemLevel <= 30
SetTextColor 240 240 240
Show # Lvling Exceptions - Jewelery
BaseType "Citrine Amulet" "Turquoise Amulet" "Agate Amulet"
Rarity = Magic
ItemLevel <= 30
SetTextColor 140 190 255
Show # Lvling Exceptions - Jewelery
BaseType "Ruby Ring" "Sapphire Ring" "Topaz Ring"
Rarity = Normal
ItemLevel <= 40
SetTextColor 240 240 240
Show # Lvling Exceptions - Jewelery
BaseType "Ruby Ring" "Sapphire Ring" "Topaz Ring"
Rarity = Magic
ItemLevel <= 40
SetTextColor 140 190 255
Show # Lvling Exceptions - Quartz Sceptre
LinkedSockets = 3
BaseType "Quartz Sceptre"
ItemLevel <= 25
SetBorderColor 210 0 0
Show # Lvling Exceptions - Sceptres
LinkedSockets = 3
BaseType "Quartz Sceptre" "Crystal Sceptre" "Opal Sceptre"
Rarity = Normal
ItemLevel <= 65
SetTextColor 240 240 240
SetFontSize 30
Show # Lvling Exceptions - Sceptres
LinkedSockets = 3
BaseType "Quartz Sceptre" "Crystal Sceptre" "Opal Sceptre"
Rarity = Magic
ItemLevel <= 65
SetTextColor 140 190 255
SetFontSize 30
Show # Lvling Exceptions - Quivers - Serrated Arrow Quiver
Class "Quivers"
BaseType "Serrated Arrow Quiver"
Rarity = Normal
ItemLevel <= 15
SetTextColor 240 240 240
SetFontSize 30
Show # Lvling Exceptions - Quivers - Serrated Arrow Quiver
Class "Quivers"
BaseType "Serrated Arrow Quiver"
Rarity = Magic
ItemLevel <= 15
SetTextColor 140 190 255
SetFontSize 30
Show # Lvling Exceptions - Quivers
Class "Quivers"
Rarity <= Magic
ItemLevel <= 20
SetFontSize 30
# Chance Recipe - Occultist's Vestment
Show
BaseType "Occultist's Vestment"
Rarity = Normal
SetTextColor 127 127 127
SetBackgroundColor 0 0 0 200
SetBorderColor 175 96 37
SetFontSize 32
# Chance Recipe - Glorious Plate
Show
BaseType "Glorious Plate"
Rarity = Normal
SetTextColor 127 127 127
SetBackgroundColor 0 0 0 200
SetBorderColor 180 96 0
SetFontSize 32
# Chance Recipe - Prophecy Wand
Show
BaseType "Prophecy Wand"
Rarity = Normal
SetTextColor 127 127 127
SetBackgroundColor 0 0 0 200
SetBorderColor 180 96 0
SetFontSize 32
# Chance Recipe - Sorcerer Boots
Show
BaseType "Sorcerer Boots"
Rarity = Normal
SetTextColor 127 127 127
SetBackgroundColor 0 0 0 200
SetBorderColor 180 96 0
SetFontSize 32
# Chance Recipe - Deicide Mask
Show
BaseType "Deicide Mask"
Rarity = Normal
SetTextColor 127 127 127
SetBackgroundColor 0 0 0 200
SetBorderColor 180 96 0
SetFontSize 32
# Chance Recipe - Sapphire Flask
Show
BaseType "Sapphire Flask"
Rarity = Normal
SetTextColor 127 127 127
SetBackgroundColor 0 0 0 200
SetBorderColor 180 96 0
SetFontSize 32
# Chroma Orb Recipe
Show # Misc - Chromatic Orb Recipe - 4x1
SocketGroup "RGB"
Height = 4
Width = 1
Rarity <= Magic
SetBorderColor 50 230 100
SetFontSize 36
Show # Misc - Chroma Orb Recipe - 3x1
SocketGroup "RGB"
Height = 3
Width = 1
Rarity <= Magic
SetBorderColor 74 230 58
SetFontSize 36
Show # Misc - Chroma Orb Recipe - 2x2
SocketGroup "RGB"
Height = 2
Width = 2
Rarity <= Magic
SetBorderColor 74 230 58
SetFontSize 36
Show # Misc - Chroma Orb Recipe - Large
SocketGroup "RGB"
Rarity <= Magic
SetBorderColor 74 230 58
SetFontSize 36
# Chroma Orb Recipe Larger
Show # Misc - Chromatic Orb Recipe
SocketGroup "RGB"
Height = 4
Width = 1
Rarity = Rare
SetBorderColor 27 162 155 205
Show # Misc - Chroma Orb Recipe - Rare - 3x1
SocketGroup "RGB"
Height = 3
Width = 1
Rarity = Rare
SetBorderColor 27 162 155 205
Show # Misc - Chroma Orb Recipe - Rare - 2x2
SocketGroup "RGB"
Height = 2
Width = 2
Rarity = Rare
SetBorderColor 27 162 155 205
Show # Misc - Chroma Orb Recipe - Rare - Large
SocketGroup "RGB"
Rarity = Rare
SetBorderColor 27 162 155 205
SetFontSize 34
# Talisman - Rare
Show # Talisman - Rare
Class "Amulets"
BaseType "Talisman"
Rarity = Rare
SetTextColor 255 255 119
SetBackgroundColor 0 0 0
# Talisman - Magic
Show # Talisman - Magic
Class "Amulets"
BaseType "Talisman"
Rarity = Magic
SetTextColor 136 136 255
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
# Talisman - Normal
Show # Talisman - Normal
Class "Amulets"
BaseType "Talisman"
Rarity = Normal
SetTextColor 255 255 255
SetBackgroundColor 0 0 0
SetBorderColor 255 255 255 0
Hide # Low Jewelery
BaseType "Coral Amulet" "Paua Ring" "Paua Amulet"
Rarity <= Magic
ItemLevel >= 45
SetBackgroundColor 0 0 0 190
SetFontSize 30
Hide # Low Jewelery
BaseType "Iron Ring"
Rarity <= Magic
ItemLevel >= 45
SetBackgroundColor 0 0 0 190
SetFontSize 30
Hide # Low Jewelery
BaseType "Cloth Belt" "Studded Belt" "Heavy Belt"
Rarity <= Magic
ItemLevel >= 45
SetBackgroundColor 0 0 0 190
SetFontSize 30
Show # Amulets, Rings, Belts - Rare
Class "Rings" "Amulets" "Belts"
Rarity = Rare
SetTextColor 255 255 119
SetBackgroundColor 0 0 0
Show # Amulets, Rings, Belts - 84+ - Norm
Class "Rings" "Amulets" "Belts"
Rarity = Normal
ItemLevel >= 84
SetTextColor 240 240 240
SetBackgroundColor 55 55 55
SetFontSize 30
Show # Amulets, Rings, Belts - 84+ - Magic
Class "Rings" "Amulets" "Belts"
Rarity = Magic
ItemLevel >= 84
SetTextColor 140 190 255
SetBackgroundColor 55 55 55
SetFontSize 30
Show # Amulets, Rings, Belts - Atlas of Worlds
Class "Rings" "Amulets" "Belts"
BaseType "Steel Ring" "Opal Ring" "Blue Pearl Amulet" "Marble Amulet" "Vanguard Belt" "Crystal Belt"
Rarity <= Magic
SetFontSize 35
Show # Amulets, Rings, Belts - 75+ - Norm
Class "Rings" "Amulets" "Belts"
Rarity = Normal
ItemLevel >= 75
SetTextColor 240 240 240
SetFontSize 30
Hide # Amulets, Rings, Belts - 75+ - Magic
Class "Rings" "Amulets" "Belts"
Rarity = Magic
ItemLevel >= 75
SetTextColor 140 190 255
SetFontSize 30
Show # Amulets, Rings, Belts - 68+ - Norm
Class "Rings" "Amulets" "Belts"
Rarity = Normal
ItemLevel >= 68
SetBackgroundColor 0 0 0 200
SetFontSize 30
Hide # Amulets, Rings, Belts - 68+ - Magic
Class "Rings" "Amulets" "Belts"
Rarity = Magic
ItemLevel >= 68
SetBackgroundColor 0 0 0 200
SetFontSize 30
Show # Amulets, Rings, Belts - <68 - Norm
Class "Rings" "Amulets" "Belts"
Rarity = Normal
ItemLevel < 68
SetBackgroundColor 0 0 0 200
SetFontSize 30
Show # Amulets, Rings, Belts - <68 - Magic
Class "Rings" "Amulets" "Belts"
Rarity = Magic
ItemLevel < 68
SetBackgroundColor 0 0 0 200
SetFontSize 30
Show # Amulets, Rings, Belts - All
Class "Rings" "Amulets" "Belts"
SetBackgroundColor 0 0 0 200
SetFontSize 30
# Chisel Recipes
Show # Misc - Chisel Recipe - Norm
BaseType "Gavel" "Stone Hammer" "Rock Breaker"
Rarity = Normal
SetBackgroundColor 127 127 127
SetBorderColor 127 127 127
SetFontSize 30
Show # Misc - Chisel Recipe - Magic
Quality >= 12
BaseType "Gavel" "Stone Hammer" "Rock Breaker"
Rarity = Magic
SetBackgroundColor 0 0 0 200
SetBorderColor 127 127 127
SetFontSize 30
Show # Misc - Chisel Recipe - Rare
Quality >= 16
BaseType "Gavel" "Stone Hammer" "Rock Breaker"
Rarity = Rare
SetBackgroundColor 0 0 0 200
SetBorderColor 127 127 127
SetFontSize 30
Show # Flasks - Quality - Qual10+ - Norm
Quality >= 10
Class "Flasks"
Rarity = Normal
SetTextColor 240 240 240
SetFontSize 30
Show # Flasks - Quality - Qual10+ - Magic
Quality >= 10
Class "Flasks"
Rarity = Magic
SetTextColor 140 190 255
SetFontSize 30
Show # Flasks - Lvling - Life - Small - Norm
Class "Life Flasks"
Rarity = Normal
ItemLevel <= 6
SetTextColor 240 240 240
SetFontSize 30
Show # Flasks - Lvling - Life - Small - Magic
Class "Life Flasks"
Rarity = Magic
ItemLevel <= 6
SetTextColor 140 190 255
SetFontSize 30
Show # Flasks - Lvling - Life - Medium - Norm
DropLevel >= 3
Class "Life Flasks"
Rarity = Normal
ItemLevel <= 12
SetTextColor 240 240 240
SetFontSize 30