-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcarcass.filter
2054 lines (1795 loc) · 42.7 KB
/
carcass.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
# Carcass.filter
# Version 10.0
# Get the latest version at https://github.com/spookyglowingbadger/carcass-filter
#
# This filter is heavily inspired by NeverSink and some sections are borrowed from it, but it is stricter and more minimalistic than even NeverSink's Uber-Strict
# For leveling, use NeverSink's Regular filter instead:
# https://github.com/NeverSinkDev/NeverSink-Filter
# INSTRUCTIONS:
# Before you start using this filter you should go to the maps section and pick which tiers you want shown.
# Simply change the tiers you want to see to "Show" and the tiers you don't want to see to "Hide"
# Do the same thing for currencies. Later in the league you'll want to hide many of the low value currencies.
# Very few rares are shown, so add your own if you like.
#
# Tip: You can search the document for the index numbers to jump to the desired part of the filter. Most common text-editors for windows use the CTRL+F keyboard shortcut for this.
#
# Table of Contents:
#
# [0000] Overrides
#
# [1001] 6-links and 6-sockets
# [1002] Valuable Bases
# [1003] Chance Bases
# [1004] Crafting Bases
# [1005] Special Exceptions
# [1006] Rares
#
# [2001] Currency - Normal
# [2002] Currency - Essences
# [2003] Currency - Special
#
# [3001] Maps - Unique
# [3002] Maps - Labyrinth
# [3003] Maps - Blighted
# [3004] Maps - Shaped
# [3005] Maps - Red
# [3006] Maps - Yellow
# [3007] Maps - White
# [3008] Map Fragments
# [3009] Misc Map Items
#
# [4001] Uniques
#
# [5001] Gems
#
# [6001] Flasks
#
# [7001] Divination Cards
#
# [8001] Junk
#
# [9999] Safety Line
#
# ----------------------------------------------------
# Section: [0000]: Overrides
# Section: [1001]: 6-Links and 6-sockets
# 6Links
Show
LinkedSockets = 6
SetTextColor 255 0 0
SetBackgroundColor 255 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_12divine.mp3"
MinimapIcon 0 White Triangle
PlayEffect White
# 6Sockets
Show
Sockets = 6
Rarity <= Rare
SetBorderColor 175 96 37 255
SetFontSize 45
CustomAlertSound "Carcass_10sockets.mp3"
MinimapIcon 0 Yellow Triangle
# Section: [1002]: Valuable Bases
# Valuable Atlas Bases
Show
BaseType "Steel Ring" "Opal Ring" "Vermillion Ring" "Cerulean Ring"
SetFontSize 45
# Section: [1003]: Chance Bases
# Skyforth
Hide
BaseType "Sorcerer Boots"
Rarity = Normal
SetBorderColor 98 128 0
SetFontSize 45
Corrupted False
# Headhunter - Requires a map with an active Nemesis mod from Zana
Hide
BaseType "Leather Belt"
Rarity = Normal
SetBorderColor 98 128 0
SetFontSize 45
Corrupted False
# Kaom's Heart - Life meta in 3.0
Hide
BaseType "Glorious Plate"
Rarity = Normal
SetBorderColor 98 128 0
SetFontSize 45
Corrupted False
# Bisco's Collar
Hide
BaseType "Gold Amulet"
Rarity = Normal
SetBorderColor 98 128 0
SetFontSize 45
Corrupted False
# Section: [1004]: Crafting Bases
# Lab enchant helmets
Hide
BaseType "Hubris Circlet" "Eternal Burgonet" "Deicide Mask" "Praetor Crown" "Nightmare Bascinet" "Lion Pelt" "Bone Helmet"
Rarity < Rare
ItemLevel >= 84
SetBorderColor 255 255 255
SetFontSize 45
# Cluster Jewels
Show
BaseType "Large Cluster Jewel" "Medium Cluster Jewel" "Small Cluster Jewel"
Class "Jewel"
SetFontSize 45
# 82+ Magic Abyss Jewels (best life mod)
Show
Class "Abyss Jewel"
Rarity < Rare
ItemLevel >= 82
SetBorderColor 0 73 0
SetFontSize 45
# SSF Lower Level Magic Abyss Jewels
#Show
# Class "Abyss Jewel"
# BaseType "Searching Eye Jewel" "Murderous Eye Jewel" "Hypnotic Eye Jewel"
# Rarity < Rare
# ItemLevel >= 74
# SetBorderColor 0 73 0
# SetFontSize 45
# Incursion Blue Mods
Show
HasExplicitMod "Tacati's" "Citaqualotl's" "Matatl's" "Topotante's" "Xopec's" "Guatelitzi's" "of Puhuarte" "of Tacati" "of Matatl" "of Puhuarte" "of Guatelitzi" "of Citaqualotl"
SetBorderColor 240 52 47
SetFontSize 45
# Bestiary Aspects
Show
HasExplicitMod "of Fenumus"
SetBorderColor 240 52 47
SetFontSize 45
# Section: [1005]: Special Exceptions
# Don't miss the fishing rods!
Show
Class "Fishing Rod"
SetTextColor 255 0 0
SetBackgroundColor 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_6veryvaluable.mp3"
MinimapIcon 0 White Circle
PlayEffect White
Show
Class "Quest Items"
BaseType "Shaper's Orb"
SetBorderColor 74 230 58
SetFontSize 45
PlayEffect Green
# Watchstones
Show
BaseType "Watchstone"
SetBorderColor 74 230 58
SetFontSize 45
PlayEffect Green
Show
Class "Quest Items"
SetBorderColor 74 230 58
SetFontSize 45
PlayEffect Green
# Leaguestones that suck if they aren't magic
Hide
Class "Leaguestone"
BaseType "Torment Leaguestone" "Prophecy Leaguestone" "Anarchy Leaguestone" "Tempest Leaguestone"
Rarity = Normal
SetBorderColor 229 160 12
SetFontSize 45
# Leaguestones
Show
Class "Leaguestone"
SetBorderColor 229 160 12
SetFontSize 45
# Talismans
Show
Class "Amulets"
BaseType "Talisman"
SetBorderColor 50 230 100
SetFontSize 45
# Pantheon Souls
Show
Class "Pantheon Soul"
SetTextColor 255 255 255
SetBackgroundColor 189 186 109
SetBorderColor 210 0 0
SetFontSize 45
# Incursion items
Show
Class "Incursion Item"
SetTextColor 74 230 58
SetBorderColor 240 52 47
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Metamorph Sample
Show
Class "Metamorph Sample"
SetTextColor 74 230 58 255
SetBorderColor 74 230 58
SetFontSize 45
PlayEffect Green
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Green Circle
# Section: [1006]: Rares
# Bulky Synth crap
Hide
FracturedItem True
Width = 2
Height = 4
SetFontSize 26
# Synth crap
Show
FracturedItem True
SetFontSize 45
# Influenced Items (Add more rules to hide garbage later)
Show
HasInfluence Shaper Elder Crusader Redeemer Hunter Warlord
SetFontSize 45
# Vagan's veiled weapons
Show
Class "Two Hand" "Axes" "Swords" "Daggers" "Sceptre" "Mace" "Claws" "Staves"
Identified True
HasExplicitMod "Vagan's"
Rarity = Rare
SetFontSize 45
SetBorderColor 255 255 255
SetBackgroundColor 130 130 130
CustomAlertSound "Carcass_12divine.mp3"
MinimapIcon 0 White Circle
PlayEffect White
# Elreon's Veiled Rings/Amus
Show
Class "Rings" "Amulets"
Identified True
HasExplicitMod "Elreon's"
Rarity = Rare
SetFontSize 45
SetBorderColor 255 255 255
SetBackgroundColor 130 130 130
CustomAlertSound "Carcass_12divine.mp3"
MinimapIcon 0 White Circle
PlayEffect White
# Veiled rares
Show
Identified True
HasExplicitMod "Veil"
Rarity = Rare
SetFontSize 45
SetBorderColor 255 0 255
# Abyss Belts
Show
BaseType "Stygian Vise"
Rarity = Rare
SetFontSize 45
SetBorderColor 0 73 0
# Breach Rings
Hide
Class "Rings"
BaseType "Breach"
Rarity = Rare
SetBackgroundColor 65 20 80
SetBorderColor 130 25 255
SetFontSize 45
# Rare Good Amulet Bases
#Show
# Class "Amulets"
# BaseType "Onyx Amulet" "Citrine Amulet" "Agate Amulet" "Turquoise Amulet" "Jade Amulet" "Amber Amulet" "Lapis Amulet" "Marble Amulet"
# Rarity = Rare
# SetFontSize 45
# Rare Amulets
Hide
Class "Amulets"
Rarity = Rare
SetFontSize 45
# SSF 83 Rings
#Show
# BaseType "Two-Stone Ring" "Unset Ring" "Ruby Ring" "Sapphire Ring" "Topaz Ring" "Prismatic Ring" "Moonstone Ring"
# ItemLevel >= 83
# Class "Rings"
# Rarity = Rare
# SetFontSize 45
# SSF Good Ring Bases
#Show
# BaseType "Two-Stone Ring" "Unset Ring" "Ruby Ring" "Sapphire Ring" "Topaz Ring" "Prismatic Ring" "Moonstone Ring"
# Class "Rings"
# Rarity = Rare
# SetFontSize 45
# Rare Rings
Hide
Class "Rings"
Rarity = Rare
SetFontSize 45
# 82+ Rare Abyss Jewels (best life mod)
Show
Class "Abyss Jewel"
Rarity = Rare
ItemLevel >= 82
SetTextColor 255 255 0
SetBackgroundColor 75 75 0
SetBorderColor 0 73 0
SetFontSize 45
# SSF 74+ Rare Abyss Jewels
#Show
# Class "Abyss Jewel"
# BaseType "Searching Eye Jewel" "Murderous Eye Jewel" "Hypnotic Eye Jewel"
# Rarity = Rare
# ItemLevel >= 74
# SetTextColor 255 255 0
# SetBackgroundColor 75 75 0
# SetBorderColor 0 73 0
# SetFontSize 45
# Rare Jewels
Show
Class "Jewel"
Rarity = Rare
SetTextColor 255 255 0
SetBackgroundColor 75 75 0
SetBorderColor 255 255 0
SetFontSize 45
# Rare Abyss Jewels
Show
Class "Abyss Jewel"
Rarity = Rare
SetTextColor 255 255 0
SetBackgroundColor 75 75 0
SetBorderColor 255 255 0
SetFontSize 45
# SSF EDITS
# Delirium League SSF Belts
#Show
# BaseType "Leather Belt" "Crystal Belt"
# Rarity = Rare
# SetFontSize 45
# Delirium League SSF Body Armours
#Show
# BaseType "Blood Raiment" "Sadist Garb" "Varnished Coat"
# Rarity = Rare
# SetFontSize 45
# Delirium League SSF Gloves
#Show
# BaseType "Fingerless Silk Gloves" "Sorcerer Gloves" "Murder Mitts" "Assassin's Mitts"
# Rarity = Rare
# SetFontSize 45
# Delirium League SSF Boots
#Show
# BaseType "Two-Toned Boots" "Murder Boots" "Sorcerer Boots" "Assassin's Boots" "Dragonscale Boots" "Crusader Boots"
# Rarity = Rare
# SetFontSize 45
# Delirium League SSF Helmets
#Show
# BaseType "Hubris Circlet" "Deicide Mask"
# Rarity = Rare
# SetFontSize 45
# Delirium League SSF Wands
#Show
# BaseType "Profane Wand" "Prophecy Wand" "Tornado Wand" "Opal Wand" "Imbued Wand"
# Rarity = Rare
# SetFontSize 45
# Delirium League SSF Shields
#Show
# BaseType "Fossilised Spirit Shield"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Crystal Belt"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Fossilised Spirit Shield" "Titanium Spirit Shield" "Harmonic Spirit Shield" "Vaal Spirit Shield" "Thorium Spirit Shield" "Supreme Spiked Shield"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Titanium Spirit Shield" "Harmonic Spirit Shield" "Vaal Regalia" "Sorcerer Boots"
# ItemLevel >= 86
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Sorcerer Boots"
# ItemLevel >= 84
# Rarity < Unique
# SetFontSize 45
#Show
# BaseType "Fingerless Silk Gloves" "Sorcerer Gloves"
# ItemLevel >= 84
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Opal Sceptre"
# ItemLevel >= 84
# Rarity < Unique
# SetFontSize 45
#Show
# BaseType "Imperial Skean" "Ambusher" "Slaughter Knife" "Royal Skean"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Eternal Burgonet" "Nightmare Bascinet" "Royal Burgonet" "Pig-Faced Bascinet" "Ezomyte Burgonet" "Praetor Crown" "Prophet Crown" "Magistrate Crown"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Prophet Crown" "Magistrate Crown" "Praetor Crown"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Titan Greaves" "Dragonscale Boots" "Vaal Greaves" "Hydrascale Boots" "Slink Boots" "Two-Toned Boots"
# Rarity = Rare
# SetFontSize 45
#Show
# BaseType "Titan Gauntlets" "Dragonscale Gauntlets" "Vaal Gauntlets" "Hydrascale Gauntlets" "Spiked Gloves" "Slink Gloves" "Crusader Gloves" "Legion Gloves"
# Rarity = Rare
# SetFontSize 45
# 75+ good bases to identify
#Show
# BaseType "Gripped Gloves" "Two-Toned Boots"
# Rarity = Rare
# ItemLevel >= 75
# SetFontSize 45
# Enchanted Rare Helmets
Show
Class "Helmets"
AnyEnchantment True
Rarity = Rare
SetBorderColor 0 150 200
SetFontSize 45
PlayEffect Blue
# Section: [2001]: Currency - Normal
# Scroll Fragment
Hide
Class "Currency"
BaseType "Scroll Fragment"
SetFontSize 45
DisableDropSound
# Portal Scroll Stacks
Show
Class "Currency"
BaseType "Portal Scroll"
StackSize >= 20
SetBorderColor 254 128 128
SetFontSize 45
DisableDropSound
# Portal Scrolls
Hide
Class "Currency"
BaseType "Portal Scroll"
SetBorderColor 0 100 150
SetFontSize 45
DisableDropSound
# Scroll of Wisdom Stacks
Show
Class "Currency"
BaseType "Scroll of Wisdom"
StackSize >= 20
SetBorderColor 254 128 128
SetFontSize 45
DisableDropSound
# Scrolls of Wisdom
Hide
Class "Currency"
BaseType "Scroll of Wisdom"
SetBorderColor 254 128 128
SetFontSize 45
DisableDropSound
# Transmutation Shard
Hide
Class "Currency"
BaseType "Transmutation Shard"
SetFontSize 45
SetBorderColor 54 100 146
DisableDropSound
# Transmutes
Show
Class "Currency"
BaseType "Orb of Transmutation"
SetTextColor 255 255 255
SetBackgroundColor 54 100 146
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Augments
Show
Class "Currency"
BaseType "Orb of Augmentation"
SetTextColor 255 255 255
SetBackgroundColor 146 146 255
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Alteration Shard
Hide
Class "Currency"
BaseType "Alteration Shard"
SetFontSize 45
SetBorderColor 30 144 255
DisableDropSound
# Orb of Alteration
Show
Class "Currency"
BaseType "Orb of Alteration"
SetTextColor 255 255 255
SetBackgroundColor 30 144 255
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Armourer's
Hide
Class "Currency"
BaseType "Armourer's Scrap"
SetTextColor 255 255 255
SetBackgroundColor 87 87 87
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Blacksmith's
Hide
Class "Currency"
BaseType "Blacksmith's Whetstone"
SetTextColor 255 255 255
SetBackgroundColor 127 127 127
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Jeweller's Orb
Show
Class "Currency"
BaseType "Jeweller's Orb"
SetTextColor 0 0 0
SetBackgroundColor 124 178 202
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Orb of Chance
Show
Class "Currency"
BaseType "Orb of Chance"
SetTextColor 255 255 255
SetBackgroundColor 98 128 0
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Glassblower's Bauble
Show
Class "Currency"
BaseType "Glassblower's Bauble"
SetTextColor 255 255 255
SetBackgroundColor 160 128 200
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Chromatic Orb
Show
Class "Currency"
BaseType "Chromatic Orb"
SetTextColor 255 255 255
SetBackgroundColor 0 200 0
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Vaal Orb
Show
Class "Currency"
BaseType "Vaal Orb"
SetTextColor 255 255 255
SetBackgroundColor 210 0 0
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Regal Shard
Show
Class "Currency"
BaseType "Regal Shard"
SetFontSize 45
SetBorderColor 155 154 57
DisableDropSound
# Regal Orb
Show
Class "Currency"
BaseType "Regal Orb"
SetTextColor 255 255 255
SetBackgroundColor 155 154 57
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Orb of Regret
Show
Class "Currency"
BaseType "Orb of Regret"
SetTextColor 0 0 0
SetBackgroundColor 235 235 235
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Orb of Scouring
Show
Class "Currency"
BaseType "Orb of Scouring"
SetTextColor 0 0 0
SetBackgroundColor 245 245 245
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Chaos Shard
Show
Class "Currency"
BaseType "Chaos Shard"
SetFontSize 45
SetBorderColor 249 150 25
# Chaos Orb
Show
Class "Currency"
BaseType "Chaos Orb"
SetTextColor 0 0 0
SetBackgroundColor 249 150 25
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Gemcutter's Prism
Show
Class "Currency"
BaseType "Gemcutter's Prism"
SetTextColor 0 0 0
SetBackgroundColor 27 162 155
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Stacked Deck
Show
Class "Currency"
BaseType "Stacked Deck"
SetTextColor 0 0 0
SetBackgroundColor 249 150 25
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Simple Sextant
Show
Class "Currency"
BaseType "Simple Sextant"
SetTextColor 255 255 255
SetBackgroundColor 124 81 50
SetBorderColor 200 200 200
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Prime Sextant
Show
Class "Currency"
BaseType "Prime Sextant"
SetTextColor 255 255 255
SetBackgroundColor 124 81 50
SetBorderColor 254 213 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
PlayEffect Yellow
# Awakened Sextant
Show
Class "Currency"
BaseType "Awakened Sextant"
SetTextColor 255 255 255
SetBackgroundColor 124 81 50
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
PlayEffect Red
# Cartographer's Chisel
Show
Class "Currency"
BaseType "Cartographer's Chisel"
SetTextColor 255 255 255
SetBackgroundColor 144 101 70
SetBorderColor 0 0 0
SetFontSize 45
MinimapIcon 2 Yellow Circle
# Silver Coin
Show
Class "Currency"
BaseType "Silver Coin"
SetTextColor 255 255 255
SetBackgroundColor 88 0 179
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Alchemy Shard
Show
Class "Currency"
BaseType "Alchemy Shard"
SetFontSize 45
SetBorderColor 254 213 0
DisableDropSound
# Orb of Alchemy
Show
Class "Currency"
BaseType "Orb of Alchemy"
SetTextColor 0 0 0
SetBackgroundColor 254 213 0
SetBorderColor 0 0 0
SetFontSize 45
MinimapIcon 2 Yellow Circle
# Orb of Fusing
Show
Class "Currency"
BaseType "Orb of Fusing"
SetTextColor 0 0 0
SetBackgroundColor 184 218 242
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Blessed Orb
Show
Class "Currency"
BaseType "Blessed Orb"
SetTextColor 0 0 0
SetBackgroundColor 213 159 0
SetBorderColor 0 0 0
SetFontSize 45
DisableDropSound
# Exalted Shard
Show
Class "Currency"
BaseType "Exalted Shard"
SetFontSize 45
SetBorderColor 255 255 255
# T1.5 Currency
Show
Class "Currency"
BaseType "Divine Orb" "Orb of Annulment"
SetTextColor 255 0 0
SetBackgroundColor 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_12divine.mp3"
MinimapIcon 0 White Circle
PlayEffect White
# T1 Currency
Show
Class "Currency"
BaseType "Eternal Orb" "Exalted Orb" "Albino Rhoa Feather" "Crusader's Exalted Orb" "Redeemer's Exalted Orb" "Hunter's Exalted Orb" "Warlord's Exalted Orb" "Awakener's Orb"
SetTextColor 255 0 0
SetBackgroundColor 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_6veryvaluable.mp3"
MinimapIcon 0 White Circle
PlayEffect White
# MIRROR OF KALANDRA
Show
Class "Currency"
BaseType "Mirror of Kalandra" "Mirror Shard"
SetTextColor 255 0 0
SetBackgroundColor 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_6veryvaluable.mp3"
MinimapIcon 0 White Circle
PlayEffect White
# Harbinger League Shards
Show
Class "Currency"
BaseType "Annulment Shard" "Binding Shard" "Horizon Shard" "Harbinger's Shard" "Engineer's Shard" "Ancient Shard"
SetTextColor 0 0 0
SetBackgroundColor 88 124 244
SetBorderColor 254 128 222
SetFontSize 45
# Harbinger League Orbs
Show
Class "Currency"
BaseType "Orb of Binding" "Orb of Horizons" "Harbinger's Orb" "Engineer's Orb" "Ancient Orb"
SetTextColor 0 0 0
SetBackgroundColor 88 124 244
SetBorderColor 0 0 0
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Bestiary Orbs
Show
Class "Currency"
BaseType "Bestiary Orb" "Imprinted Bestiary Orb"
SetTextColor 255 255 255
SetBorderColor 0 255 36 255
SetBackgroundColor 255 127 39
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# Leveling nets
Hide
Class "Currency"
BaseType "Simple Rope Net" "Reinforced Rope Net" "Strong Rope Net" "Simple Iron Net" "Reinforced Iron Net"
SetTextColor 155 210 135 255
SetBorderColor 0 0 0
SetBackgroundColor 0 0 0 255
SetFontSize 45
DisableDropSound
# Early grind nets (Blood Aqueduct/Harbour Bridge/Low Maps)
Hide
Class "Currency"
BaseType "Strong Iron Net" "Simple Steel Net" "Reinforced Steel Net"
SetTextColor 155 210 135 255
SetBorderColor 0 0 0
SetBackgroundColor 0 0 0 255
SetFontSize 45
DisableDropSound
# Strong Steel Net
Hide
Class "Currency"
BaseType "Strong Steel Net"
SetTextColor 155 210 135 255
SetBorderColor 0 0 0
SetBackgroundColor 0 0 0 255
SetFontSize 45
DisableDropSound
# Thaumaturgical & Necromancy nets
Show
Class "Currency"
BaseType "Thaumaturgical Net" "Necromancy Net"
SetTextColor 155 210 135 255
SetBorderColor 0 255 36 255
SetBackgroundColor 0 0 0 255
SetFontSize 45
# Incursion vials
Show
Class "Currency"
BaseType "Vial of"
SetBackgroundColor 240 52 47
SetFontSize 45
# High Value Delve Fossils
Show
Class "Currency"
BaseType "Bloodstained Fossil" "Faceted Fossil" "Hollow Fossil" "Glyphic Fossil" "Fractured Fossil" "Tangled Fossil"
SetTextColor 255 0 0
SetBackgroundColor 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_6veryvaluable.mp3"
MinimapIcon 0 White Circle
PlayEffect White
# Delve Fossils
Show
Class "Currency"
BaseType "Fossil"
SetTextColor 0 0 0
SetBackgroundColor 249 150 25
SetBorderColor 0 150 200
SetFontSize 45
CustomAlertSound "Carcass_2currency.mp3"
MinimapIcon 0 Yellow Circle
# High Value Delve Resonators
Show
Class "Currency"
BaseType "Prime Chaotic Resonator" "Prime Alchemical Resonator"
SetTextColor 255 0 0
SetBackgroundColor 255 255 255
SetBorderColor 255 0 0
SetFontSize 45
CustomAlertSound "Carcass_6veryvaluable.mp3"