-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlad.filter
2770 lines (2413 loc) · 77.1 KB
/
lad.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 ITEMS
Show # Quest-type items
Class Quest "Atlas Upgrade Item" "Labyrinth" "Incursion Item" "Pantheon Souls"
SetTextColor 0 255 0
SetBorderColor 0 255 0
SetFontSize 45
PlayAlertSound 15 200
MinimapIcon 0 Green Circle
PlayEffect Green
Show # Fishing Rods
Class "Fishing Rod"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 1 300
SetFontSize 45
MinimapIcon 0 Brown Star
PlayEffect Brown
Show
BaseType "Sacrificial Garb"
SetFontSize 45
# GEMS
Show # Awakened Gems
Class Gem
BaseType "Awakened"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 1 300
SetFontSize 45
MinimapIcon 0 Red Triangle
PlayEffect Red
Show # Lvl 21 Gems
Class Gem
GemLevel = 21
SetBorderColor 128 128 255
SetFontSize 45
PlayAlertSound 4 250
PlayEffect Cyan
MinimapIcon 0 Cyan Triangle
Show # Lvl 2+ Empower/Enlighten/Enhance
Class Gem
BaseType "Empower" "Enhance" "Enlighten"
GemLevel >= 2
SetBorderColor 128 128 255
SetFontSize 45
PlayAlertSound 4 250
PlayEffect Cyan
MinimapIcon 0 Cyan Triangle
Show # Lv 7 Special Gems
Class Gem
BaseType "Brand Recall" "Blood and Sand"
GemLevel >= 5
SetBorderColor 128 128 255
SetFontSize 45
PlayAlertSound 4 250
PlayEffect Cyan
MinimapIcon 0 Cyan Triangle
Show # Transfigured Gems
Class Gem
TransfiguredGem True
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # 20 Quality Gems
Class Gem
Quality = 20
SetBorderColor 128 128 255
SetFontSize 40
PlayAlertSound 12 300
MinimapIcon 1 Cyan Triangle
Show # 10+ Quality Gems
Class Gem
Quality > 10
SetBorderColor 128 128 255
MinimapIcon 2 Cyan Triangle
SetFontSize 40
Show # Quality Gems
Class Gem
Quality > 0
SetBorderColor 128 128 255
MinimapIcon 2 Cyan Triangle
Show # Lvl 19/20 Gem
Class Gem
GemLevel >= 18
SetBorderColor 128 128 255
SetFontSize 40
MinimapIcon 1 Cyan Triangle
Show # T1 Drop Only Gems
Class Gem
BaseType "Empower Support" "Enlighten Support" "Enhance Support"
SetFontSize 40
PlayAlertSound 12 300
MinimapIcon 1 Cyan Triangle
Show # T2 Drop Only Gems
Class Gem
BaseType "Portal" "Vaal Breach" "Vaal Immortal Call" "Elemental Penetration Support"
SetFontSize 40
MinimapIcon 1 Cyan Triangle
Show # Gems with low max level
Class Gem
BaseType "Brand Recall" "Blood and Sand"
GemLevel >= 5
SetBorderColor 128 128 255
SetFontSize 40
MinimapIcon 1 Cyan Triangle
Show # Vaal Gems
Class Gem
BaseType "Vaal" "Impurity"
# LEAGUE ITEMS
# Settlers
Show # Gold
Class Gold
BaseType Gold
Show # Runes
Class "Stackable Currency"
BaseType == "Life Rune" "Sun Rune" "Bound Rune" "War Rune" "River Rune" "Bounty Rune" "Journey Rune" "Mountain Rune" "Time Rune" "Power Rune"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
# Affliction
Show # Tinctures
Class "Tincture"
SetTextColor 255 0 0
SetBorderColor 255 0 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Red UpsideDownHouse
Show # Charms
Class "Charms"
SetTextColor 255 0 0
SetBorderColor 255 0 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Red UpsideDownHouse
Show # Vendor Corpses
Class "Corpses"
SetTextColor 255 0 0
SetBorderColor 255 0 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Red UpsideDownHouse
# Ancestors
Show # Hinekora's Lock
Class "Stackable Currency"
BaseType == "Hinekora's Lock"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
Show # Omens
Class "Stackable Currency"
BaseType "Omen"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
Show # Honoured Tattoos
Class "Stackable Currency"
BaseType "Honoured Tattoo"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
Show # Loyalty Tattoos
Class "Stackable Currency"
BaseType "Loyalty Tattoo"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
Show # Basic Tattoos
Class "Stackable Currency"
BaseType "Tattoo"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
# Crucible
Show # Crucible Items
HasCruciblePassiveTree True
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 0 Yellow Star
PlayEffect Yellow
# Sanctum
Show # Sanctum Research
Class "Sanctum Research"
BaseType "Forbidden Tome" "Sanctum"
SetTextColor 255 0 0
SetBorderColor 255 0 0
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Red Cross
PlayEffect Red
Show # Sanctified Relic
Class "Sanctified Relic"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Yellow Star
PlayEffect Yellow
Show # Relic
Class "Relic"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 0 Yellow Star
PlayEffect Yellow
Show # Kalandra
Class "Stackable Currency"
BaseType == "Reflective Oil" "Reflecting Mist"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 0 Yellow Star
PlayEffect Yellow
Show # Kalandra Tablet
Class "Misc Map Items"
BaseType "Mirrored Tablet"
SetTextColor 255 0 0
SetBorderColor 255 0 0
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Red Cross
PlayEffect Red
Show # Sentinel Currency
Class "Stackable Currency"
BaseType "Power Core" "Recombinator"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 12 300
SetFontSize 45
MinimapIcon 0 Red Triangle
Show # Sentinels
Class "Sentinel Drone"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # Scourge T1 Currency
Class "Stackable Currency"
BaseType "Tainted Exalted Orb" "Tainted Mythic Orb" "Tainted Divine Teardrop"
SetTextColor 255 0 0
SetBorderColor 255 0 0
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Red Cross
PlayEffect Red
Show # Scourge T2 Currency
Class "Stackable Currency"
BaseType "Tainted Chaos Orb" "Tainted Blessing" "Tainted Chromatic Orb" "Tainted Orb of Fusing" "Tainted Jeweller's Orb" "Tainted Blacksmith's Whetstone" "Tainted Armourer's Scrap" "Tainted"
SetTextColor 255 0 0
SetBorderColor 255 0 0
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 1 Red Cross
Show # Expedition Currency
Class "Stackable Currency"
BaseType "Exotic Coinage" "Scrap Metal" "Astragali" "Burial Medallion"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Cyan Kite
PlayEffect Cyan
Show # Expedition Artifacts
Class "Stackable Currency"
BaseType "Circle Artifact" "Scythe Artifact" "Order Artifact" "Sun Artifact"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Cyan Kite
PlayEffect Cyan
Show # Expedition Logbooks
Class "Logbook"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Cyan Cross
PlayEffect Cyan
Show # Ritual Splinters
Class Currency
BaseType "Ritual Splinter"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Red Raindrop
PlayEffect Red
Show # Ritual Vessels
BaseType "Ritual Vessel" "Blood-filled Vessel"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Red Cross
PlayEffect Red
Show # Crescent Splinters
Class Currency
BaseType "Crescent Splinter"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Red Raindrop
PlayEffect Red
Show # T1 Ritual BaseTypes
BaseType "Dreamquest Slippers" "Brimstone Treads" "Stormrider Boots" "Thwarting Gauntlets" "Trapsetter Gloves" "Nexus Gloves" "Blizzard Crown" "Archdemon Crown" "Penitent Mask"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 40
MinimapIcon 0 Yellow UpsideDownHouse
Show # T2-3 Ritual BaseTypes
BaseType "Cloudwhisper Boots" "Nightwind Slippers" "Windbreak Boots" "Darksteel Treads" "Duskwalk Slippers" "Basemetal Treads" "Guarding Gauntlets" "Preserving Gauntlets" "Apprentice Gloves" "Tinker Gloves" "Aetherwind Gloves" "Leyline Gloves" "Winter Crown" "Gale Crown" "Demon Crown" "Imp Crown" "Atonement Mask" "Sorrow Mask"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 40
MinimapIcon 0 Yellow UpsideDownHouse
Show # Heist Replica Uniques
Replica True
Rarity Unique
SetBorderColor 175 96 37
PlayAlertSound 1 300
SetFontSize 45
MinimapIcon 0 Brown Star
PlayEffect Brown
Show # Heist Currency
Class == "Stackable Currency"
BaseType == "Tailoring Orb" "Tempering Orb" "Secondary Regrading Lens" "Prime Regrading Lens"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # Heist Trinkets
Class Trinket
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # Heist Loot
Class "Heist Target"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # Heist Unique Contracts
Rarity Unique
Class Contract
SetBorderColor 175 96 37
SetFontSize 45
PlayAlertSound 6 250
MinimapIcon 0 Brown UpsideDownHouse
PlayEffect Brown
Show # Heist Contracts
Class Contract
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 14 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # Heist Blueprints
Class Blueprint
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 9 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # T1 Heist Merc Gear
BaseType "Foliate Brooch" "Whisper-woven Cloak" "Obsidian Sharpening Stone" "Precise Arrowhead" "Burst Band" "Master Lockpick" "Steel Bracers" "Thaumaturgical Sensing Charm" "Thaumetic Flashpowder" "Thaumaturgical Ward" "Grandmaster Keyring" "Silkweave Sole" "Regicide Disguise Kit" "Thaumetic Blowtorch"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 45
MinimapIcon 0 Yellow UpsideDownHouse
PlayEffect Yellow
Show # T2 Heist Merc Gear
BaseType "Enamel Brooch" "Hooded Cloak" "Fine Sharpening Stone" "Hollowpoint Arrowhead" "Aggregator Charm" "Fine Lockpick" "Runed Bracers" "Polished Sensing Charm" "Azurite Flashpowder" "Shining Ward" "Skeleton Keyring" "Winged Sole" "Espionage Disguise Kit" "Sulphur Blowtorch"
SetTextColor 255 181 0
SetBorderColor 255 181 0
PlayAlertSound 11 300
SetFontSize 40
MinimapIcon 1 Yellow UpsideDownHouse
PlayEffect Yellow
Show # Heist Mercenary Gear
Class "Heist Cloak" "Heist Brooch" "Heist Tool" "Heist Gear"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 35
MinimapIcon 2 Yellow UpsideDownHouse
Show # Heist Experimental Basetypes
BaseType "Assembler Wand" "Congregator Wand" "Accumulator Wand" "Hollowpoint Dagger" "Pressurised Dagger" "Pneumatic Dagger" "Flickerflame Blade" "Flashfire Blade" "Infernal Blade" "Shadow Fangs" "Malign Fangs" "Void Fangs" "Maltreatment Axe" "Disapprobation Axe" "Psychotic Axe" "Fickle Spiritblade" "Capricious Spiritblade" "Anarchic Spiritblade" "Flare Mace" "Crack Mace" "Boom Mace" "Oscillating Sceptre" "Stabilising Sceptre" "Alternating Sceptre" "Hedron Bow" "Foundry Bow" "Solarine Bow" "Transformer Staff" "Reciprocation Staff" "Battery Staff" "Capacity Rod" "Potentiality Rod" "Eventuality Rod" "Prime Cleaver" "Honed Cleaver" "Apex Cleaver" "Rebuking Blade" "Blasting Blade" "Banishing Blade" "Blunt Force Condenser" "Crushing Force Magnifier" "Impact Force Propagator" "Micro-Distillery Belt" "Mechalarm Belt" "Astrolabe Amulet" "Simplex Amulet" "Cogwork Ring" "Geodesic Ring" "Exhausting Spirit Shield" "Subsuming Spirit Shield" "Transfer-attuned Spirit Shield" "Endothermic Buckler" "Polar Buckler" "Cold-attuned Buckler" "Exothermic Tower Shield" "Magmatic Tower Shield" "Heat-attuned Tower Shield" "Composite Ring" "Manifold Ring" "Ratcheting Ring" "Helical Ring" "Focused Amulet" "Mechanical Belt"
SetBorderColor 255 181 0
SetFontSize 40
MinimapIcon 1 Yellow UpsideDownHouse
Show # Harvest Lifeforce
Class "Stackable Currency"
BaseType "Wild Crystallised Lifeforce" "Vivid Crystallised Lifeforce" "Primal Crystallised Lifeforce" "Sacred Crystallised Lifeforce"
SetTextColor 45 133 223
SetBorderColor 45 133 223
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 0 Blue Star
PlayEffect Blue
Show # Harvested Currency
Class "Stackable Currency"
BaseType "Infused Engineer's Orb" "Time-light Scroll" "Fragmentation Scroll" "Deregulation Scroll" "Electroshock Scroll" "Haemocombustion Scroll" "Specularity Scroll" "Facetor's Lens"
SetTextColor 45 133 223
SetBorderColor 45 133 223
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 0 Blue Star
PlayEffect Blue
Show # Delirium Orbs
Class "Stackable Currency"
BaseType "Delirium Orb"
SetBorderColor 255 0 255
SetTextColor 255 0 255
PlayAlertSound 4 300
SetFontSize 45
MinimapIcon 0 Red Triangle
PlayEffect Red
Show # Delirium Simulacrum Splinters
Class "Stackable Currency"
BaseType "Simulacrum Splinter"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 0 Grey Raindrop
PlayEffect Grey
Show # Delirium Simulacrum Map
Class "Map Fragment"
BaseType "Simulacrum"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 9 300
MinimapIcon 0 Grey Star
PlayEffect Grey
Show # T1 Blight Oils
Class "Stackable Currency"
BaseType == "Golden Oil" "Silver Oil" "Tainted Oil"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Yellow Star
PlayEffect Yellow
Show # Blight Oils
Class "Stackable Currency"
BaseType == "Verdant Oil" "Teal Oil" "Azure Oil" "Indigo Oil" "Violet Oil" "Crimson Oil" "Black Oil" "Opalescent Oil" "Prismatic Oil"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 45
PlayAlertSound 11 300
MinimapIcon 1 Yellow Star
PlayEffect Yellow
Show # Common Blight Oils
Class "Stackable Currency"
BaseType == "Clear Oil" "Sepia Oil" "Amber Oil"
SetTextColor 255 181 0
SetBorderColor 255 181 0
SetFontSize 40
PlayAlertSound 11 300
MinimapIcon 2 Yellow Star
Show # GG Incubators
Class Incubator
BaseType "Time-Lost Incubator" "Geomancer's Incubator" "Eldritch Incubator"
SetTextColor 100 159 255
SetBorderColor 100 159 255
SetFontSize 45
PlayAlertSound 1 300
MinimapIcon 0 Blue Diamond
PlayEffect Blue
Show # All Incubators
Class Incubator
SetTextColor 100 159 255
SetBorderColor 100 159 255
SetFontSize 45
PlayAlertSound 16 250
MinimapIcon 1 Blue Diamond
PlayEffect Blue Temp
# Fractured Items
Show # Jewels/Flasks
FracturedItem True
Class Jewel Flask
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T1 Rings
FracturedItem True
Class Ring
BaseType == "Prismatic Ring" "Opal Ring" "Steel Ring" "Vermillion Ring" "Cerulean Ring" "Iolite Ring"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Rings
FracturedItem True
Class Ring
BaseType == "Ruby Ring" "Topaz Ring" "Sapphire Ring" "Two-Stone Ring" "Coral Ring" "Amethyst Ring" "Dusk Ring" "Penumbra Ring" "Gloam Ring" "Tenebrous Ring" "Shadowed Ring" "Bone Ring" "Ring"
SetFontSize 40
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T1 Amulets
FracturedItem True
Class Amulet
BaseType == "Amber Amulet" "Jade Amulet" "Lapis Amulet" "Agate Amulet" "Citrine Amulet" "Turquoise Amulet" "Onyx Amulet"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T1 Belts
FracturedItem True
Class Belt
BaseType == "Crystal Belt" "Stygian Vise"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Belts
FracturedItem True
Class Belt
BaseType == "Leather Belt" "Heavy Belt"
SetFontSize 40
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T1 Fractured Weps
FracturedItem True
BaseType "Opal Sceptre" "Void Sceptre" "Sambar Sceptre" "Profane Wand" "Prophecy Wand" "Imbued Wand" "Demon's Horn" "Opal Wand" "Convoking Wand" "Carved Wand" "Engraved Wand" "Calling Wand" "Convening Wand"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Fractured Weps
FracturedItem True
BaseType "Eclipse Staff" "Exquisite Blade" "Vaal Axe" "Karui Maul" "Karui Chopper" "Platinum Kris" "Golden Kris" "Copper Kris" "Jewelled Foil" "Spiraled Foil" "Imperial Claw" "Gemini Claw"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # T1 Fractured Quivers
FracturedItem True
BaseType "Penetrating Arrow Quiver" "Artillery Quiver" "Broadhead Arrow Quiver" "Primal Arrow Quiver" "Two-Point Arrow Quiver"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Fractured Quivers
FracturedItem True
BaseType "Spike-Point Arrow Quiver" "Heavy Arrow Quiver" "Vile Arrow Quiver"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # T1 Fractured Chests
FracturedItem True
BaseType "Grasping Mail" "General's Brigandine" "Triumphant Lamellar"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Fractured Chests
FracturedItem True
BaseType "Full Dragonscale" "Desert Brigandine" "Dragonscale Doublet" "Battle Lamellar" "Commander's Brigandine" "Exquisite Leather" "Destiny Leather" "Glorious Plate" "Gladiator Plate" "Crusader Plate" "Vaal Regalia" "Astral Plate" "Assassin's Garb" "Zodiac Leather"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # T1 Shields
FracturedItem True
BaseType == "Supreme Spiked Shield" "Mirrored Spiked Shield" "Sovereign Spiked Shield" "Polished Spiked Shield" "Titanium Spirit Shield" "Harmonic Spirit Shield" "Fossilised Spirit Shield"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Shields
FracturedItem True
BaseType == "Vaal Spirit Shield" "Archon Kite Shield" "Angelic Kite Shield" "Ezomyte Tower Shield" "Shagreen Tower Shield" "Crested Tower Shield" "Mahogany Tower Shield" "Titanium Spirit Shield" "Harmonic Spirit Shield" "Fossilised Spirit Shield" "Pinnacle Tower Shield" "Ebony Tower Shield"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # T1 Gloves
FracturedItem True
BaseType == "Thwarting Gauntlets" "Gripped Gloves" "Slink Gloves" "Trapsetter Gloves" "Fingerless Silk Gloves" "Nexus Gloves" "Apothecary's Gloves" "Runic Gauntlets" "Dragonscale Gauntlets" "Murder Mitts" "Assassin's Mitts" "Hydrascale Gauntlets"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Gloves
FracturedItem True
BaseType == "Shagreen Gloves" "Stealth Gloves" "Vaal Gauntlets" "Goliath Gauntlets" "Spiked Gloves" "Titan Gauntlets" "Sorcerer Gloves"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # T1 Boots
FracturedItem True
BaseType == "Brimstone Treads" "Two-Toned Boots" "Sorcerer Boots" "Dreamquest Slippers" "Slink Boots" "Stormrider Boots" "Fugitive Boots" "Runic Sabatons" "Murder Boots" "Dragonscale Boots" "Dragonscale Boots" "Hydrascale Boots"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Boots
FracturedItem True
BaseType == "Vaal Greaves" "Arcanist Slippers" "Stealth Boots" "Assassin's Boots" "Carnal Boots" "Crusader Boots" "Legion Boots" "Hydrascale Boots" "Titan Greaves"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # T1 Helm
FracturedItem True
BaseType == "Lion Pelt" "Sinner Tricorne" "Bone Helmet" "Hubris Circlet" "Runic Crown" "Penitent Mask" "Nightmare Bascinet" "Archdemon Crown" "Blizzard Crown" "Pig-Faced Bascinet" "Fluted Bascinet"
SetFontSize 45
SetTextColor 28 132 186
SetBorderColor 28 132 186
PlayAlertSound 16 250
Show # T2 Helm
FracturedItem True
BaseType == "Ezomyte Burgonet" "Samnite Helmet" "Silken Hood" "Ursine Pelt" "Mind Cage" "Solaris Circlet""Praetor Crown" "Deicide Mask" "Vaal Mask" "Royal Burgonet" "Eternal Burgonet"
SetFontSize 38
SetTextColor 28 132 186
SetBorderColor 28 132 186
Show # Shit Fractured Scraps
FracturedItem True
SetTextColor 28 132 186
Show # Synthesised Items
SynthesisedItem True
SetFontSize 45
SetTextColor 128 232 86
SetBorderColor 128 232 86
PlayAlertSound 16 250
Show # T1 Scarabs
Class "Map Fragments"
BaseType "Horned Scarab" "Scarab of Monstrous Lineage"
SetBorderColor 255 90 90
SetTextColor 255 255 255
SetFontSize 45
PlayAlertSound 6 300
MinimapIcon 0 Orange Moon
PlayEffect Orange
Show # T2 Scarabs
Class "Map Fragments"
BaseType "Divination Scarab" "Harbinger Scarab" "Essence Scarab" "Legion Scarab of Eternal Conflict" "Cartography Scarab" "Breach Scarab"
SetBorderColor 255 90 90
SetTextColor 255 255 255
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Orange Moon
PlayEffect Orange
Show # Scarabs
Class "Map Fragments"
BaseType "Scarab"
SetBorderColor 255 90 90
SetTextColor 255 255 255
SetFontSize 40
PlayAlertSound 12 300
MinimapIcon 1 Orange Moon
PlayEffect Orange Temp
Show # Veiled Scarabs
Class "Stackable Currency"
BaseType "Veiled Scarab"
SetBorderColor 255 90 90
SetTextColor 255 255 255
SetFontSize 40
PlayAlertSound 12 300
MinimapIcon 1 Orange Moon
PlayEffect Orange Temp
Show # Delve Fossils
Class Currency
BaseType "Scorched Fossil" "Frigid Fossil" "Metallic Fossil" "Jagged Fossil" "Aberrant Fossil" "Pristine Fossil" "Dense Fossil" "Corroded Fossil" "Prismatic Fossil" "Aetheric Fossil" "Serrated Fossil" "Lucent Fossil" "Shuddering Fossil" "Bound Fossil" "Opulent Fossil" "Deft Fossil" "Fundamental Fossil" "Faceted Fossil" "Bloodstained Fossil" "Hollow Fossil" "Fractured Fossil" "Glyphic Fossil" "Tangled Fossil" "Sanctified Fossil" "Gilded Fossil"
SetTextColor 100 159 255
SetBorderColor 100 159 255
SetFontSize 45
PlayAlertSound 11 250
MinimapIcon 0 Cyan Kite
PlayEffect Cyan Temp
Show # Prime Resonators
Class "Delve Stackable Socketable Currency"
BaseType "Prime Chaotic Resonator"
SetTextColor 255 255 255
SetBorderColor 100 159 255
PlayAlertSound 1 300
SetFontSize 45
MinimapIcon 0 Cyan Kite
PlayEffect Cyan
Show # Delve Resonators
Class "Delve Stackable Socketable Currency"
BaseType "Primitive Alchemical Resonator" "Potent Alchemical Resonator" "Powerful Alchemical Resonator" "Prime Alchemical Resonator" "Primitive Chaotic Resonator" "Potent Chaotic Resonator" "Powerful Chaotic Resonator" "Prime Chaotic Resonator"
SetTextColor 255 255 255
SetBorderColor 100 159 255
SetFontSize 40
PlayAlertSound 11 250
MinimapIcon 1 Cyan Kite
PlayEffect Cyan Temp
Show # Incursion
Class "Incursion Item"
SetBorderColor 155 210 135
SetTextColor 155 210 135
SetFontSize 45
PlayAlertSound 16 250
MinimapIcon 0 Green Circle
PlayEffect Green
Show # Incursion Vials
Class "Stackable Currency"
BaseType "Vial of Dominance" "Vial of Summoning" "Vial of Awakening" "Vial of the Ritual" "Vial of Fate" "Vial of Consequence" "Vial of the Ghost" "Vial of Transcendence" "Vial of Sacrifice"
SetBorderColor 155 210 135
SetTextColor 155 210 135
SetFontSize 45
PlayAlertSound 16 250
Show # Bestiary Orbs + Thaum Nets
Class Currency
BaseType "Bestiary Orb" "Imprinted Bestiary Orb"
SetBorderColor 0 255 255
SetTextColor 0 255 255
SetFontSize 45
Show # Thaum Nets
Class Currency
BaseType "Thaumaturgical Net" "Necromancy Net"
SetBorderColor 0 255 255
SetTextColor 0 255 255
SetFontSize 45
Show # T1-9 Nets
Class Currency
BaseType "Simple Rope Net" "Reinforced Rope Net" "Strong Rope Net" "Simple Iron Net" "Reinforced Iron Net" "Strong Iron Net" "Simple Steel Net" "Reinforced Steel Net" "Strong Steel Net"
SetBorderColor 0 255 255
SetFontSize 45
Show # Leaguestones T1
Class Leaguestone
BaseType "Breach Leaguestone" "Beyond Leaguestone" "Bloodlines Leaguestone" "Nemesis Leaguestone"
SetBorderColor 0 255 255
SetFontSize 45
PlayAlertSound 7 200
Show # Leaguestones
Class Leaguestone
SetBorderColor 0 255 255
SetFontSize 45
Show # Chayula Splinters
BaseType "Splinter of Chayula"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 12 300
MinimapIcon 0 Red Raindrop
Show # Breach Splinters
BaseType "Splinter of Tul" "Splinter of Uul-Netol" "Splinter of Xoph" "Splinter of Esh"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
MinimapIcon 1 Red Raindrop
Show # Chayula Blessings
BaseType "Blessing of Chayula"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 1 300
MinimapIcon 0 Red Triangle
Show # Breach Blessings
BaseType "Blessing of Tul" "Blessing of Uul-Netol" "Blessing of Xoph" "Blessing of Esh"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
MinimapIcon 0 Red Triangle
Show # T1 Essences
Class Currency
BaseType "Essence of Hysteria" "Essence of Delirium" "Essence of Horror" "Essence of Insanity"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 4 300
MinimapIcon 0 Red Triangle
PlayEffect Red
Show # T2 Essences
Class Currency
BaseType "Deafening Essence" "Shrieking Essence" "Screaming Essence"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 12 300
MinimapIcon 0 Red Triangle
Show # Essences
Class Currency
BaseType "Essence"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 40
PlayAlertSound 12 300
MinimapIcon 0 Red Triangle
Show # Essence Remnant
Class Currency
BaseType "Remnant"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 12 300
MinimapIcon 0 Red Triangle
# MAPS
Show # Reliquary Keys
BaseType == "Timeworn Reliquary Key" "Ancient Reliquary Key" "Vaal Reliquary Key" "Shiny Reliquary Key" "Archive Reliquary Key" "Cosmic Reliquary Key" "Decaying Reliquary Key" "Forgotten Reliquary Key" "Oubliette Reliquary Key" "Visceral Reliquary Key" "Voidborn Reliquary Key"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 1 300
SetFontSize 45
Show # Reliquary Keys
Class == "Vault Keys"
SetTextColor 255 0 255
SetBorderColor 255 0 255
PlayAlertSound 1 300
SetFontSize 45
Show # Misc League Items
BaseType == "Chronicle of Atzoatl" "Inscribed Ultimatum" "Mirrored Tablet" "Primeval Remnant" "Primordial Remnant"
SetTextColor 255 255 255
SetBorderColor 255 90 90
SetFontSize 45
PlayAlertSound 1 250
MinimapIcon 0 Orange Cross
PlayEffect Orange
Show # T1 Legion Splinters
Class "Stackable Currency"
BaseType "Timeless Maraketh Splinter" "Timeless Templar Splinter"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
PlayAlertSound 12 300
MinimapIcon 0 Red Raindrop
Show # Legion Splinters
Class "Stackable Currency"
BaseType "Timeless Karui Splinter" "Timeless Eternal Empire Splinter" "Timeless Vaal Splinter"
SetTextColor 160 32 240
SetBorderColor 160 32 240
SetFontSize 45
MinimapIcon 1 Red Raindrop
# Map Fragments
Show # Uber Boss Fragments
Class "Map Fragments"
BaseType == "Cosmic Fragment" "Decaying Fragment" "Awakening Fragment" "Synthesising Fragment" "Reality Fragment" "Devouring Fragment" "Blazing Fragment" "Synthesising Fragment"
SetTextColor 255 255 255
SetBorderColor 255 90 90
SetFontSize 45
PlayAlertSound 4 250
MinimapIcon 0 Orange Cross
PlayEffect Orange
Show # Boss Fragments
Class "Map Fragments"
BaseType == "Fragment of Enslavement" "Fragment of Eradication" "Fragment of Constriction" "Fragment of Purification" "Fragment of Shape" "Fragment of Knowledge" "Fragment of Terror" "Fragment of Emptiness" "Fragment of the Hydra" "Fragment of the Phoenix" "Fragment of the Minotaur" "Fragment of the Chimera" "Mortal Grief" "Mortal Rage" "Mortal Hope" "Mortal Ignorance" "Al-Hezmin's Crest" "Baran's Crest" "Drox's Crest" "Veritania's Crest" "An Audience With The King"
SetTextColor 255 255 255
SetBorderColor 255 90 90
SetFontSize 45
PlayAlertSound 4 250
MinimapIcon 0 Orange Cross
PlayEffect Orange
Show # Atziri Fragments
Class "Map Fragments"
BaseType == "Sacrifice at Dusk" "Sacrifice at Dawn" "Sacrifice at Noon" "Sacrifice at Midnight"
SetBorderColor 255 90 90
SetTextColor 255 90 90