-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathitem.filter
2769 lines (2403 loc) · 54.8 KB
/
item.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
######
#
# Filter Organization Notes:
# * Styles for different Tiers
# * Metadata
# * Gem Names
# * Rune Upgrade Recipies
# * Runeword Recipies
# * Upgrade Uniques Recipies
# * Upgrade Rares Recipies
# * General Metadata (colors for Magic/Rares/etc)
# * Socket Recipies
# * Runes
# * Gems
# * Shopping Tiers 1-6
# * Uniques and Sets Tiers 1-6
# * Rares Tiers 1-6
# * Magic Tiers 1-6
# * Socketables Tiers 1-6
# * Misc Tiers 1-6
# * TODO: Identified (Uniques and Sets) Tiers 1-6
# * TODO: Normal Items
#
######
######
# START Styles
######
Style T1 Rune
SetName {Purple}<<< {Orange}T1 {Name} {Purple}>>>
ChatNotify "Ping Level" > 0
SetBackgroundColor Purple
SetBorderColor Purple
SetInventoryColor Purple
MinimapIcon Purple
Style T2 Rune
SetName {Purple}<<< {Orange}T2 {Name} {Purple}>>>
ChatNotify "Ping Level" > 1
SetBackgroundColor Purple
SetBorderColor Purple
SetInventoryColor Purple
MinimapIcon Purple
Style T3 Rune
SetName {Orange}T3 {Name}
ChatNotify "Ping Level" > 2
SetBackgroundColor Red
SetBorderColor Red
MinimapIcon Red
Style T4 Rune
SetName {Orange}T4 {Name}
ChatNotify "Ping Level" > 3
SetBorderColor Gold
MinimapIcon Gold
Style T1
SetName {Orange}T1 {Name}
ChatNotify "Ping Level" > 0
SetBorderColor Orange
MinimapIcon Orange
Style T2
SetName {Purple}T2 {Name}
ChatNotify "Ping Level" > 1
SetBorderColor Purple
MinimapIcon Purple
Style T3
SetName {Red}T3 {Name}
ChatNotify "Ping Level" > 2
SetBorderColor Red
MinimapIcon Red
Style T4
SetName {Gold}T4 {Name}
ChatNotify "Ping Level" > 3
SetBorderColor Gold
MinimapIcon Gold
Style T5
SetName {Dark Green}T5 {Name}
ChatNotify "Ping Level" > 4
SetBorderColor "Dark Green"
MinimapIcon "Dark Green"
Style T6
SetName {Gray}T6 {Name}
ChatNotify "Ping Level" > 5
SetBorderColor Gray
MinimapIcon Gray
######
# END Styles
######
######
# START Metadata
######
######
# Gems Metadata/Styling
######
Show
Class Gem
Class Amethyst
SetName {Purple}0 {White}{Name}
Continue
Show
Class Gem
Class Diamond
SetName {White}0 {White}{Name}
Continue
Show
Class Gem
Class Emerald
SetName {Dark Green}0 {White}{Name}
Continue
Show
Class Gem
Class Ruby
SetName {Red}0 {White}{Name}
Continue
Show
Class Gem
Class Sapphire
SetName {Blue}0 {White}{Name}
Continue
Show
Class Gem
Class Topaz
SetName {Yellow}0 {White}{Name}
Continue
Show
Class Gem
Class Skull
SetName {Gray}0 {White}{Name}
Continue
######
# Rune Upgrade Metadata
######
Show
Rune Cham
SetDescription {Description}{White}2x {Orange}Cham {Green}0{White}Flawless -> {Orange}Zod{Newline}
Continue
Show
Rune Sur
SetDescription {Description}{White}2x {Orange}Sur {Purple}0{White}Flawless -> {Orange}Ber{Newline}
Continue
Show
Rune Lo
SetDescription {Description}{White}2x {Orange}Lo {Yellow}0{White}Flawless -> {Orange}Sur{Newline}
Continue
Show
Rune Ohm
SetDescription {Description}{White}2x {Orange}Ohm {White}0{White}Normal -> {Orange}Lo{Newline}
Continue
Show
Rune Vex
SetDescription {Description}{White}2x {Orange}Vex {Green}0{White}Normal -> {Orange}Ohm{Newline}
Continue
Show
Rune Gul
SetDescription {Description}{White}2x {Orange}Gul {Red}0{White}Normal -> {Orange}Vex{Newline}
Continue
Show
Rune Ist
SetDescription {Description}{White}2x {Orange}Gul {Blue}0{White}Normal -> {Orange}Gul{Newline}
Continue
Show
Rune Mal
SetDescription {Description}{White}2x {Orange}Mal {Purple}0{White}Normal -> {Orange}Ist{Newline}
Continue
Show
Rune Um
SetDescription {Description}{White}2x {Orange}Um {Yellow}0{White}Normal -> {Orange}Mal{Newline}
Continue
Show
Rune Pul
SetDescription {Description}{White}2x {Orange}Pul {White}0{White}Flawed -> {Orange}Um{Newline}
Continue
Show
Rune Lem
SetDescription {Description}{White}3x {Orange}Lem {Green}0{White}Flawed -> {Orange}Pul{Newline}
Continue
Show
Rune Fal
SetDescription {Description}{White}3x {Orange}Fal {Red}0{White}Flawed -> {Orange}Lem{Newline}
Continue
Show
Rune Ko
SetDescription {Description}{White}3x {Orange}Ko {Blue}0{White}Flawed -> {Orange}Fal{Newline}
Continue
Show
Rune Lum
SetDescription {Description}{White}3x {Orange}Lum {Purple}0{White}Flawed -> {Orange}Ko{Newline}
Continue
Show
Rune Io
SetDescription {Description}{White}3x {Orange}Io {Yellow}0{White}Flawed -> {Orange}Lum{Newline}
Continue
Show
Rune Hel
SetDescription {Description}{White}2x {Orange}Hel {White}0{White}Chipped -> {Orange}Io{Newline}
Continue
Show
Rune Dol
SetDescription {Description}{White}3x {Orange}Dol {Green}0{White}Chipped -> {Orange}Hel{Newline}
Continue
Show
Rune Shael
SetDescription {Description}{White}3x {Orange}Shael {Red}0{White}Chipped -> {Orange}Dol{Newline}
Continue
Show
Rune Sol
SetDescription {Description}{White}3x {Orange}Sol {Blue}0{White}Chipped -> {Orange}Shael{Newline}
Continue
Show
Rune Amn
SetDescription {Description}{White}3x {Orange}Amn {Purple}0{White}Chipped -> {Orange}Sol{Newline}
Continue
Show
Rune Thul
SetDescription {Description}{White}3x {Orange}Thul {Yellow}0{White}Chipped -> {Orange}Amn{Newline}
Continue
Show
Rune Ort
SetDescription {Description}{White}3x {Orange}Ort -> {Orange}Thul{Newline}
Continue
Show
Rune Ral
SetDescription {Description}{White}3x {Orange}Ral -> {Orange}Ort{Newline}
Continue
Show
Rune Tal
SetDescription {Description}{White}3x {Orange}Tal -> {Orange}Ral{Newline}
Continue
Show
Rune Ith
SetDescription {Description}{White}3x {Orange}Ith -> {Orange}Tal{Newline}
Continue
Show
Rune Eth
SetDescription {Description}{White}3x {Orange}Eth -> {Orange}Ith{Newline}
Continue
Show
Rune Nef
SetDescription {Description}{White}3x {Orange}Nef -> {Orange}Eth{Newline}
Continue
Show
Rune Tir
SetDescription {Description}{White}3x {Orange}Tir -> {Orange}Nef{Newline}
Continue
Show
Rune Eld
SetDescription {Description}{White}3x {Orange}Eld -> {Orange}Tir{Newline}
Continue
Show
Rune El
SetDescription {Description}{White}3x {Orange}El -> {Orange}Eld{Newline}
Continue
######
# Runewords Metadata
######
Show
Class Armor
Rarity < Magic
Ethereal False
Runeword False
Sockets 2
SetDescription {Description}{White}Stealth: {Orange}TalEth {Gray}| {White}Smoke: {Orange}NefLum{Newline}
Continue
Show
Class Armor
Rarity < Magic
Ethereal False
Runeword False
Sockets 3
SetDescription {Description}{White}Treachery: {Orange}ShaelThulLem {Gray}| {White}Enigma: {Orange}JahIthBer{Newline}
Continue
Show
Class Armor
Rarity < Magic
Ethereal False
Runeword False
Sockets 4
SetDescription {Description}{White}Fortitude: {Orange}ElSolDolLo {Gray}| {White}Chains of Honor: {Orange}DolUmBerIst{Newline}
Continue
Show
Class Armor
Rarity < Magic
Ethereal True
Sockets 4
SetDescription {Description}{White}Chains of Honor: {Orange}DolUmBerIst{Newline}
Continue
Show
Class Any Shield
Rarity < Magic
Ethereal False
Runeword False
Sockets 2
SetDescription {Description}{White}Rhyme: {Orange}ShaelEth{Newline}
Continue
Show
Class Any Shield
Rarity < Magic
Ethereal False
Runeword False
Sockets 3
SetDescription {Description}{White}Sanctuary: {Orange}KoKoMal {Gray}| {White}Ancient's Pledge: {Orange}RalOrtTal{Newline}{White}Dream: {Orange}IoJahPul{Newline}
Continue
Show
Class Any Shield
Rarity < Magic
Ethereal False
Runeword False
Sockets 4
SetDescription {Description}{White}Spirit: {Orange}TalThulOrtAmn {Gray}| {White}Phoenix: {Orange}VexVexLoJah{Newline}
Continue
Show
Class Any Shield
Rarity < Magic
Ethereal True
Runeword False
Sockets 4
SetDescription {Description}{White}Exile: {Orange}VexOhmIstDol{Newline}
Continue
Show
Class Helm
Rarity < Magic
Ethereal False
Runeword False
Sockets 2
SetDescription {Description}{White}Lore: {Orange}OrtSol{Newline}
Continue
Show
Class Helm
Rarity < Magic
Ethereal False
Runeword False
Sockets 3
SetDescription {Description}{White}Delirium: {Orange}LemIstIo {Gray}| {White}Dream: {Orange}IoJahPul{Newline}
Continue
Show
Class Polearm
Rarity < Magic
Ethereal False
Runeword False
Sockets 4
SetDescription {Description}{White}Insight: {Orange}RalTirTalSol{Newline}
Continue
Show
Class Polearm
Rarity < Magic
Ethereal True
Runeword False
Sockets 4
SetDescription {Description}{White}Infinity: {Orange}BerMalBerIst {Gray}| {White}Insight: {Orange}RalTirTalSol{Newline}
Continue
Show
Class Polearm
Rarity < Magic
Ethereal True
Runeword False
Sockets 4
SetDescription {Description}{White}Obedience: {Orange}HelKoThulEthFal{Newline}
Continue
Show
Class Bow
Rarity < Magic
Runeword False
Sockets 3
SetDescription {Description}{White}Edge: {Orange}TirTalAmn{Newline}
Continue
Show
Class Bow
Rarity < Magic
Runeword False
Sockets 4
SetDescription {Description}{White}Faith: {Orange}OhmJahLemEld {Gray}| {White}Harmony: {Orange}TirIthSolKo{Newline}
Continue
Show
Class Sword
Rarity < Magic
Ethereal True
Runeword False
Sockets 3
SetDescription {Description}{White}Lawbringer: {Orange}AmnLemKo {Gray}| {White}Crescent Moon: {Orange}ShaelUmTir{Newline}
Continue
Show
Class Sword
Rarity < Magic
Runeword False
Sockets 4
SetDescription {Description}{White}Spirit: {Orange}TalThulOrtAmn {Gray}| {White}Passion: {Orange}DolOrtEldLem{Newline}{White}Oath: {Orange}ShaelPulMalLum{Newline}
Continue
Show
Class Sword
Rarity < Magic
Runeword False
Sockets 5
SetDescription {Description}{White}Grief: {Orange}EthTirLoMalRal {Gray}| {White}Death: {Orange}HelElVexOrtGul{Newline}
Continue
Show
Class Axe
Rarity < Magic
Runeword False
Sockets 3
SetDescription {Description}{White}Crescent Moon: {Orange}ShaelUmTir{Newline}
Continue
Show
Class Axe
Rarity < Magic
Runeword False
Sockets 4
SetDescription {Description}{White}Oath: {Orange}ShaelPulMalLum{Newline}
Continue
Show
Class Axe
Rarity < Magic
Runeword False
Sockets 4
SetDescription {Description}{White}Grief: {Orange}EthTirLoMalRal| {White}Beast: {Orange}BerTirUmMalLum{Newline}{White}Death: {Orange}HelElVexOrtGul{Newline}
Continue
Show
Class Mace
Rarity < Magic
Runeword False
Sockets 4
SetDescription {Description}{White}Heart of the Oak: {Orange}KoVexPulThul{Newline}
Continue
Show
Class Staff
Rarity < Magic
Runeword False
Sockets 2
SetDescription {Description}{White}Leaf: {Orange}TirRal{Newline}
Continue
Show
Class Staff
Rarity < Magic
Runeword False
Sockets 4
SetDescription {Description}{White}Memory: {Orange}LumIoSolEth{Newline}
Continue
#claws
Show
Class Hand to Hand, Hand to Hand 2
Rarity < Magic
Runeword False
Sockets 3
SetDescription {Description}{White}Plague: {Orange}ChamFalUm| {White}Chaos: {Orange}FalOhmUm{Newline}
Continue
Show
Class Wand
Rarity < Magic
Runeword False
Sockets 2
SetDescription {Description}{White}White: {Orange}DolIo{Newline}
Continue
Show
Class Orb
Rarity < Magic
Runeword False
Sockets 3
SetDescription {Description}{White}Plague: {Orange}ChamFalUm{Newline}
Continue
Show
Class Weapon
Rarity < Magic
Runeword False
Sockets 5
SetDescription {Description}{White}Call To Arms: {Orange}AmnRalMalIstOhm{Newline}
Continue
Show
Class Weapon
Rarity < Magic
Runeword False
Sockets 6
SetDescription {Description}{White}Breath of the Dying: {Orange}VexHelElEldZodEth{Newline}
Continue
######
# Upgrade Uniques Metadata
######
Show
Weapon True
Rarity Unique
Quality Normal
SetDescription {Description}{White}Upgrade to exceptional with {Orange}Ral Sol {Green}0{White}Perfect{Newline}
Continue
Show
Armor True
Rarity Unique
Quality Normal
SetDescription {Description}{White}Upgrade to exceptional with {Orange}Tal Shael {White}0{White}Perfect{Newline}
Continue
Show
Weapon True
Rarity Unique
Quality Exceptional
SetDescription {Description}{White}Upgrade to elite with {Orange}Lum Pul {Green}0{White}Perfect{Newline}
Continue
Show
Armor True
Rarity Unique
Quality Exceptional
SetDescription {Description}{White}Upgrade to elite with {Orange}Ko Lem {White}0{White}Perfect{Newline}
Continue
######
# Upgrade Rares Metadata
######
Show
Weapon True
Rarity Rare
Quality Normal
SetDescription {Description}{White}Upgrade to exceptional with {Orange}Ort Amn {Blue}0{White}Perfect{Newline}
Continue
Show
Armor True
Rarity Rare
Quality Normal
SetDescription {Description}{White}Upgrade to exceptional with {Orange}Ral Thul {White}0{White}Perfect{Newline}
Continue
Show
Weapon True
Rarity Rare
Quality Exceptional
SetDescription {Description}{White}Upgrade to elite with {Orange}Fal Um {Green}0{White}Perfect{Newline}
Continue
Show
Armor True
Rarity Rare
Quality Exceptional
SetDescription {Description}{White}Upgrade to elite with {Orange}Ko Pul {White}0{White}Perfect{Newline}
Continue
######
# General Metadata
######
Show
Class Any Armor, Weapon, Ring, Amulet
Rarity <= Magic
Price 35000
SetName {Name} {Gray}+35k
Continue
Show
Type Scroll of Identify
SetName {Red}* {White}ID
Continue
Show
Type Scroll of Town Portal
SetName {Blue}* {White}TP
Continue
Show
Class Healing Potion
SetName {Red}HP{Potion Number}
Continue
Show
Class Mana Potion
SetName {Blue}MP{Potion Number}
Continue
Show
Class Rejuv Potion
SetName {Purple}R{Potion Number}
Continue
Show
Class Rune
SetName {Orange}{Name}
Continue
Show
Rarity Inferior
SetName {Gray}{Name}
Continue
Show
Rarity in Normal-Superior
SetName {White}{Name}
Continue
Show
Rarity Crafted
SetName {Orange}{Name}
SetBorderColor Orange
Continue
Show
Rarity Set
SetName {Green}{Name}
SetBorderColor Green
Continue
Show
Rarity Rare
SetName {Yellow}{Name}
SetBorderColor Yellow
Continue
Show
Rarity Magic
SetName {Blue}{Name}
SetBorderColor Blue
Continue
Show
Rarity Unique
SetName {Gold}{Name}
SetBorderColor Gold
Continue
Show
Ethereal True
SetName {Dark Green}Eth {Name}
Continue
Show
Sockets > 0
SetName {Name} {Red}({Sockets})
Continue
######
# Socket Recipes
######
Show
Class Armor
Rarity Normal
Runeword False
Sockets 0
SetDescription {Description}{White}Add sockets with {Orange}Tal Thul {Yellow}0{White}Perfect{Newline}
Continue
Show
Class Melee Weapon
Rarity Normal
Runeword False
Sockets 0
SetDescription {Description}{White}Add sockets with {Orange}Ral Amn {Purple}0{White}Perfect{Newline}
Continue
Show
Class Any Shield
Rarity Normal
Runeword False
Sockets 0
SetDescription {Description}{White}Add sockets with {Orange}Tal Amn {Red}0{White}Perfect{Newline}
Continue
Show
Class Helm
Rarity Normal
Runeword False
Sockets 0
SetDescription {Description}{White}Add sockets with {Orange}Ral Thul {Blue}0{White}Perfect{Newline}
Continue
######
# END Metadata
######
######
# START Runes
######
Show
Rune in Sur-Jah
SetStyle T1 Rune
Show
Rune in Cham-Zod, in Vex-Lo
SetStyle T2 Rune
Show
Rune in Mal-Gul
SetStyle T3 Rune
Show
Rune in Lem-Um
SetStyle T4 Rune
Show
Rune in El-Fal
######
# END Runes
######
######
# START Gems
######
#show chipped/flawed/normal gems if current char level is below 51
Show
Class Gem
Class Chipped Gem, Flawed Gem, Standard Gem
CharacterLevel <= 50
#always show flawless/perf gems
Show
Class Gem
Class Flawless Gem, Perfect Gem
######
# END Gems
######
######
# START Shopping
######
######
# Shopping Tier 1
######
# 3 trap, 3 LS claws (alvl 60+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Traps" = 3 and "Lightning Sentry" = 3
SetStyle T1
# 3 pal combat, 3 BH, 3 conc scepter (alvl 60+)
Show
Class Scepter
Rarity Magic
Stats "Paladin +%d to Combat Skills" = 3 and "Blessed Hammer" = 3 and "Concentration" = 3
SetStyle T1
# 3 pal combat, 3 FoH, 3 conviction scepter (alvl 60+)
Show
Class Scepter
Rarity Magic
Stats "Paladin +%d to Combat Skills" = 3 and "Fist of the Heavens" = 3 and "Conviction" = 3
SetStyle T1
######
# Shopping Tier 2
######
# 3/20 Javazon Gloves (alvl 60+) [nightmare anya]
Show
Class Gloves
Rarity Magic
Ethereal False
Stats "Amazon +%d to Javelin and Spear Skills" = 3 and "Increased Attack Speed" >= 20
SetStyle T2
# 4os archon plate with life (of the whale, alvl 50) [hell Larzuk]
Show
Type Archon Plate
Rarity Magic
Ethereal False
Sockets 4
Stats "Life" >= 80
SetStyle T2
# 2 sin, 3 LS claws (alvl 50+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin Skills" >= 2 and "Lightning Sentry" = 3
SetStyle T2
# 3 trap, 2+ LS claws (alvl 60+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Traps" = 3 and "Lightning Sentry" >= 2
SetStyle T2
# 3 shadow, 3 venom claws (alvl 60+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Shadow Disciplines" = 3 and "Venom" = 3
SetStyle T2
# 2 pal, 3 FoH, 3 conviction scepter (alvl 50+)
Show
Class Scepter
Rarity Magic
Stats "Paladin Skills" = 2 and "Fist of the Heavens" = 3 and "Conviction" = 3
SetStyle T2
######
# Shopping Tier 3
######
# 2 trap, 3 LS claws (alvl 40+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Traps" >= 2 and "Lightning Sentry" = 3
SetStyle T3
# 2 sin, 3 venom claws (alvl 50+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin Skills" = 2 and "Venom" = 3
SetStyle T3
# 3 shadow, 2+ venom claws (alvl 60+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Shadow Disciplines" = 3 and "Venom" >= 2
SetStyle T3
# 2 shadow, 3 venom claws (alvl 40+)
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Shadow Disciplines" = 2 and "Venom" = 3
SetStyle T3
######
# Shopping Tier 4
######
# 4os gothic plates and ancient armor with life (of the whale, alvl 50) [hell charsi]
Show
Type Gothic Plate, Ancient Armor
Rarity Magic
Sockets 4
Ethereal False
Stats "Life" >= 80
SetStyle T4
# 2/20 jav gloves (alvl 40+) [nightmare anya]
Show
Class Gloves
Rarity Magic
Ethereal False
Stats "Amazon +%d to Javelin and Spear Skills" >= 2 and "Increased Attack Speed" >= 20
SetStyle T4
# 3os shields of deflecting (alvl 33+)
# tower, gothic, dragon, blade barrier, troll nest
Show
Type Tower Shield, Gothic Shield, Dragon Shield, Blade Barrier, Troll Nest
Rarity Magic
Ethereal False
Sockets 3
Stats "Faster Block Rate" >= 30
SetStyle T4
# 4os shields of deflecting (alvl 55+)
# aegis, ward
Show
Type Aegis, Ward
Rarity Magic
Ethereal False
Sockets 4
Stats "Faster Block Rate" >= 30
SetStyle T4
######
# Shopping Tier 5
######
# Lower res wand (need 1.9.8 or later)
Show
Class Wand
Rarity Magic
Stats ChargedSkill(91)
SetStyle T5
# Life tap wand (need 1.9.8 or later)
Show
Class Wand
Rarity Magic
Stats ChargedSkill(82)
SetStyle T5
# 3os helm with life (of the mammoth, no corona, spired helm, winged helm)
# Artisan's, alvl 33
# of the Mammoth, alvl 68
Show
Class Helm
Type != Corona
Type != Spired Helm
Type != Winged Helm
Rarity Magic
Sockets 3
Stats "Life" >= 30
SetStyle T5
# BO Sticks (+3 WC sticks)
# Echoing, alvl 60
Show
Class Weapon
Rarity Magic
Stats "Barbarian +%d to Warcries" = 3
SetStyle T5
# Javazon Gloves (+3)
# Lancer's, alvl 60
Show
Class Gloves
Rarity Magic
Stats "Amazon +%d to Javelin and Spear Skills" = 3
SetStyle T5
# Claws (+3 traps)
# Cunning, alvl 60
Show
Class Hand to Hand, Hand to Hand 2
Rarity Magic
Stats "Assassin +%d to Traps" = 3
SetStyle T5
# 3 pal combat scepters
# Rose Branded, alvl 60
Show
Class Scepter
Rarity Magic