-
Notifications
You must be signed in to change notification settings - Fork 49
/
allitems_dict.py
2962 lines (2923 loc) · 95.8 KB
/
allitems_dict.py
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
itemdict = {"Unarmed":[176, 173],
"Iron Helmet":[64, 156],
"Crimson Amber Medallion":[232, 3],
"Black Knife Tiche":[64, 13],
"Glintstone Pebble":[160, 15],
"Catch Flame":[112, 23],
"Ash of War: Lions Claw":[16, 39],
"Dagger":[64, 66],
"Scale Armor":[164, 156],
"Crimson Amber Medallion +1":[233, 3],
"Black Knife Tiche +1":[65, 13],
"Great Glintstone Shard":[161, 15],
"O, Flame!":[113, 23],
"Ash of War: Impaling Thrust":[116, 39],
"Black Knife":[80, 105],
"Iron Gauntlets":[8, 157],
"Crimson Amber Medallion +2":[234, 3],
"Black Knife Tiche +2":[66, 13],
"Swift Glintstone Shard":[170, 15],
"Flame Sling":[122, 23],
"Ash of War: Piercing Fang":[216, 39],
"Parrying Dagger":[96, 144],
"Leather Trousers":[108, 157],
"Cerulean Amber Medallion":[242, 3],
"Black Knife Tiche +3":[67, 13],
"Glintstone Cometshard":[180, 15],
"Flame, Fall Upon Them":[132, 23],
"Ash of War: Spinning Slash":[60, 40],
"Miséricorde":[112, 183],
"Kaiden Helm":[80, 195],
"Cerulean Amber Medallion +1":[243, 3],
"Black Knife Tiche +4":[68, 13],
"Comet":[181, 15],
"Whirl, O Flame!":[142, 23],
"Ash of War: Charge Forth":[4, 41],
"Reduvia":[128, 222],
"Kaiden Armor":[180, 195],
"Cerulean Amber Medallion +2":[244, 3],
"Black Knife Tiche +5":[69, 13],
"Shard Spiral":[190, 15],
"Flame, Cleanse Me":[152, 23],
"Ash of War: Stamp (Upward Cut)":[104, 41],
"Crystal Knife":[144, 5],
"Kaiden Gauntlets":[24, 196],
"Viridian Amber Medallion":[252, 3],
"Black Knife Tiche +6":[70, 13],
"Glintstone Stars":[200, 15],
"Flame, Grant Me Strength":[162, 23],
"Ash of War: Stamp (Sweep)":[204, 41],
"Celebrants Sickle":[160, 44],
"Kaiden Trousers":[124, 196],
"Viridian Amber Medallion +1":[253, 3],
"Black Knife Tiche +7":[71, 13],
"Star Shower":[210, 15],
"Flame, Protect Me":[172, 23],
"Ash of War: Blood Tax":[48, 42],
"Glintstone Kris":[176, 83],
"Drake Knight Helm":[96, 234],
"Viridian Amber Medallion +2":[254, 3],
"Black Knife Tiche +8":[72, 13],
"Crystal Barrage":[220, 15],
"Giantsflame Take Thee":[212, 23],
"Ash of War: Repeating Thrust":[148, 42],
"Scorpions Stinger":[192, 122],
"Drake Knight Armor":[196, 234],
"Arsenal Charm":[6, 4],
"Black Knife Tiche +9":[73, 13],
"Glintstone Arc":[230, 15],
"Flame of the Fell God":[222, 23],
"Ash of War: Wild Strikes":[248, 42],
"Great Knife":[208, 161],
"Drake Knight Gauntlets":[40, 235],
"Arsenal Charm +1":[7, 4],
"Black Knife Tiche +10":[74, 13],
"Cannon of Haima":[240, 15],
"Burn, O Flame!":[232, 23],
"Ash of War: Spinning Strikes":[92, 43],
"Wakizashi":[224, 200],
"Drake Knight Greaves":[140, 235],
"Great-Jars Arsenal":[8, 4],
"Banished Knight Oleg":[40, 17],
"Crystal Burst":[250, 15],
"Black Flame":[66, 24],
"Ash of War: Double Slash":[192, 43],
"Cinquedea":[240, 239],
"Drake Knight Helm (Altered)":[72, 238],
"Erdtrees Favor":[16, 4],
"Banished Knight Oleg +1":[41, 17],
"Shatter Earth":[4, 16],
"Surge, O Flame!":[76, 24],
"Ash of War: Prelates Charge":[36, 44],
"Ivory Sickle":[16, 62],
"Drake Knight Armor (Altered)":[172, 238],
"Erdtrees Favor +1":[17, 4],
"Banished Knight Oleg +2":[42, 17],
"Rock Blaster":[14, 16],
"Scouring Black Flame":[86, 24],
"Ash of War: Unsheathe":[136, 44],
"Bloodstained Dagger":[32, 101],
"Scaled Helm":[128, 56],
"Erdtrees Favor +2":[18, 4],
"Banished Knight Oleg +3":[43, 17],
"Gavel of Haima":[24, 16],
"Black Flame Ritual":[96, 24],
"Ash of War: Square Off":[236, 44],
"Erdsteel Dagger":[48, 140],
"Scaled Armor":[228, 56],
"Radagons Scarseal":[26, 4],
"Banished Knight Oleg +4":[44, 17],
"Terra Magicus":[34, 16],
"Black Flame Blade":[106, 24],
"Ash of War: Giant Hunt":[80, 45],
"Blade of Calling":[64, 179],
"Scaled Gauntlets":[72, 57],
"Radagons Soreseal":[27, 4],
"Banished Knight Oleg +5":[45, 17],
"Starlight":[44, 16],
"Black Flames Protection":[116, 24],
"Ash of War: Lorettas Slash":[24, 46],
"Longsword":[128, 132],
"Scaled Greaves":[172, 57],
"Starscourge Heirloom":[36, 4],
"Banished Knight Oleg +6":[46, 17],
"Comet Azur":[104, 16],
"Noble Presence":[126, 24],
"Ash of War: Poison Moth Flight":[124, 46],
"Bloody Longsword":[204, 136],
"Scaled Armor (Altered)":[204, 60],
"Prosthesis-Wearer Heirloom":[46, 4],
"Banished Knight Oleg +7":[47, 17],
"Founding Rain of Stars":[114, 16],
"Bloodflame Talons":[156, 24],
"Ash of War: Spinning Weapon":[224, 46],
"Short Sword":[144, 171],
"Perfumer Hood":[144, 95],
"Stargazer Heirloom":[56, 4],
"Banished Knight Oleg +8":[48, 17],
"Stars of Ruin":[124, 16],
"Bloodboon":[166, 24],
"Ash of War: Storm Assault":[168, 47],
"Broadsword":[160, 210],
"Perfumer Robe":[244, 95],
"Two Fingers Heirloom":[66, 4],
"Banished Knight Oleg +9":[49, 17],
"Glintblade Phalanx":[204, 16],
"Bloodflame Blade":[176, 24],
"Ash of War: Stormcaller":[12, 48],
"Lordsworns Straight Sword":[192, 32],
"Perfumer Gloves":[88, 96],
"Silver Scarab":[76, 4],
"Banished Knight Oleg +10":[50, 17],
"Carian Phalanx":[205, 16],
"Barrier of Gold":[186, 24],
"Ash of War: Sword Dance":[112, 48],
"Weathered Straight Sword":[208, 71],
"Perfumer Sarong":[188, 96],
"Gold Scarab":[86, 4],
"Banished Knight Engvall":[16, 21],
"Greatblade Phalanx":[206, 16],
"Protection of the Erdtree":[196, 24],
"Ash of War: Glintblade Phalanx":[32, 78],
"Ornamental Straight Sword":[224, 110],
"Perfumer Robe (Altered)":[220, 99],
"Moon of Nokstella":[116, 4],
"Banished Knight Engvall +1":[17, 21],
"Rennalas Full Moon":[8, 17],
"Rejection":[0, 25],
"Ash of War: Sacred Blade":[132, 78],
"Golden Epitaph":[240, 149],
"Travelers Hat":[160, 134],
"Green Turtle Talisman":[126, 4],
"Banished Knight Engvall +2":[18, 21],
"Rannis Dark Moon":[9, 17],
"Wrath of Gold":[10, 25],
"Ash of War: Ice Spear":[232, 78],
"Nox Flowing Sword":[0, 189],
"Perfumers Traveling Garb":[4, 135],
"Stalwart Horn Charm":[136, 4],
"Banished Knight Engvall +3":[19, 21],
"Magic Downpour":[18, 17],
"Urgent Heal":[20, 25],
"Ash of War: Glintstone Pebble":[76, 79],
"Inseparable Sword":[16, 228],
"Travelers Gloves":[104, 135],
"Stalwart Horn Charm +1":[137, 4],
"Banished Knight Engvall +4":[20, 21],
"Lorettas Greatbow":[28, 17],
"Heal":[21, 25],
"Ash of War: Bloody Slash":[176, 79],
"Coded Sword":[48, 50],
"Travelers Slops":[204, 135],
"Immunizing Horn Charm":[146, 4],
"Banished Knight Engvall +5":[21, 21],
"Lorettas Mastery":[29, 17],
"Great Heal":[22, 25],
"Ash of War: Lifesteal Fist":[20, 80],
"Sword of Night and Flame":[96, 167],
"Perfumers Traveling Garb (Altered)":[236, 138],
"Immunizing Horn Charm +1":[147, 4],
"Banished Knight Engvall +6":[22, 21],
"Magic Glintblade":[38, 17],
"Lords Heal":[23, 25],
"Ash of War: Eruption":[220, 80],
"Crystal Sword":[112, 206],
"Alberichs Pointed Hat":[192, 212],
"Clarifying Horn Charm":[156, 4],
"Banished Knight Engvall +7":[23, 21],
"Glintstone Icecrag":[48, 17],
"Erdtree Heal":[24, 25],
"Ash of War: Prayerful Strike":[64, 81],
"Carian Knights Sword":[160, 67],
"Alberichs Robe":[36, 213],
"Clarifying Horn Charm +1":[157, 4],
"Banished Knight Engvall +8":[24, 21],
"Zamor Ice Storm":[58, 17],
"Blessings Boon":[30, 25],
"Ash of War: Gravitas":[164, 81],
"Sword of St. Trina":[176, 106],
"Alberichs Bracers":[136, 213],
"Prince of Deaths Pustule":[166, 4],
"Banished Knight Engvall +9":[25, 21],
"Freezing Mist":[68, 17],
"Blessing of the Erdtree":[31, 25],
"Ash of War: Storm Blade":[8, 82],
"Miquellan Knights Sword":[192, 145],
"Alberichs Trousers":[236, 213],
"Prince of Deaths Cyst":[167, 4],
"Banished Knight Engvall +10":[26, 21],
"Carian Greatsword":[78, 17],
"Cure Poison":[40, 25],
"Ash of War: Earthshaker":[208, 82],
"Cane Sword":[208, 184],
"Alberichs Pointed Hat (Altered)":[168, 216],
"Mottled Necklace":[176, 4],
"Fanged Imp Ashes":[248, 24],
"Adulas Moonblade":[79, 17],
"Lords Aid":[41, 25],
"Ash of War: Golden Land":[52, 83],
"Regalia of Eochaid":[224, 223],
"Alberichs Robe (Altered)":[12, 217],
"Mottled Necklace +1":[177, 4],
"Fanged Imp Ashes +1":[249, 24],
"Carian Slicer":[88, 17],
"Flame Fortification":[50, 25],
"Ash of War: Flaming Strike":[152, 83],
"Nobles Slender Sword":[240, 6],
"Spellblades Pointed Hat":[208, 251],
"Bull-Goats Talisman":[186, 4],
"Fanged Imp Ashes +2":[250, 24],
"Carian Piercer":[98, 17],
"Magic Fortification":[60, 25],
"Ash of War: Thunderbolt":[96, 84],
"Warhawks Talon":[0, 46],
"Spellblades Traveling Attire":[52, 252],
"Marikas Scarseal":[196, 4],
"Fanged Imp Ashes +3":[251, 24],
"Scholars Armament":[108, 17],
"Lightning Fortification":[70, 25],
"Ash of War: Lightning Slash":[196, 84],
"Lazuli Glintstone Sword":[16, 85],
"Spellblades Gloves":[152, 252],
"Marikas Soreseal":[197, 4],
"Fanged Imp Ashes +4":[252, 24],
"Scholars Shield":[118, 17],
"Divine Fortification":[80, 25],
"Ash of War: Carian Grandeur":[40, 85],
"Rotten Crystal Sword":[32, 124],
"Spellblades Trousers":[252, 252],
"Warrior Jar Shard":[206, 4],
"Fanged Imp Ashes +5":[253, 24],
"Lucidity":[128, 17],
"Lords Divine Fortification":[90, 25],
"Ash of War: Carian Greatsword":[140, 85],
"Bastard Sword":[192, 198],
"Spellblades Traveling Attire (Altered)":[28, 0],
"Shard of Alexander":[207, 4],
"Fanged Imp Ashes +6":[254, 24],
"Frozen Armament":[138, 17],
"Night Maidens Mist":[100, 25],
"Ash of War: Vacuum Slice":[240, 85],
"Bloody Bastard Sword":[12, 203],
"Bull-Goat Helm":[224, 34],
"Millicents Prosthesis":[226, 4],
"Fanged Imp Ashes +7":[255, 24],
"Shattering Crystal":[148, 17],
"Assassins Approach":[110, 25],
"Ash of War: Black Flame Tornado":[84, 86],
"Forked Greatsword":[208, 237],
"Bull-Goat Armor":[68, 35],
"Magic Scorpion Charm":[208, 7],
"Fanged Imp Ashes +8":[0, 25],
"Crystal Release":[158, 17],
"Shadow Bait":[120, 25],
"Ash of War: Sacred Ring of Light":[184, 86],
"Iron Greatsword":[224, 20],
"Bull-Goat Gauntlets":[168, 35],
"Lightning Scorpion Charm":[218, 7],
"Fanged Imp Ashes +9":[1, 25],
"Crystal Torrent":[168, 17],
"Darkness":[130, 25],
"Ash of War: Blood Blade":[128, 87],
"Lordsworns Greatsword":[240, 59],
"Bull-Goat Greaves":[12, 36],
"Fire Scorpion Charm":[228, 7],
"Fanged Imp Ashes +10":[2, 25],
"Ambush Shard":[248, 17],
"Golden Vow":[200, 25],
"Ash of War: Phantom Slash":[228, 87],
"Knights Greatsword":[0, 99],
"Iron Kasa":[240, 73],
"Sacred Scorpion Charm":[238, 7],
"Latenna the Albinauric":[224, 28],
"Night Shard":[2, 18],
"Discus of Light":[44, 26],
"Ash of War: Spectral Lance":[72, 88],
"Flamberge":[16, 138],
"Ronins Armor":[84, 74],
"Red-Feathered Branchsword":[248, 7],
"Latenna the Albinauric +1":[225, 28],
"Night Comet":[12, 18],
"Triple Rings of Light":[45, 26],
"Ash of War: Chilling Mist":[172, 88],
"Ordoviss Greatsword":[32, 177],
"Ronins Gauntlets":[184, 74],
"Ritual Sword Talisman":[2, 8],
"Latenna the Albinauric +2":[226, 28],
"Thopss Barrier":[22, 18],
"Radagons Rings of Light":[54, 26],
"Ash of War: Poisonous Mist":[16, 89],
"Alabaster Lords Sword":[48, 216],
"Ronins Greaves":[28, 75],
"Spear Talisman":[12, 8],
"Latenna the Albinauric +3":[227, 28],
"Carian Retaliation":[32, 18],
"Elden Stars":[64, 26],
"Ash of War: Shield Bash":[48, 117],
"Banished Knights Greatsword":[64, 255],
"Ronins Armor (Altered)":[60, 78],
"Hammer Talisman":[22, 8],
"Latenna the Albinauric +4":[228, 28],
"Eternal Darkness":[42, 18],
"Law of Regression":[74, 26],
"Ash of War: Barricade Shield":[148, 117],
"Dark Moon Greatsword":[80, 38],
"Guilty Hood":[0, 113],
"Winged Sword Insignia":[32, 8],
"Latenna the Albinauric +5":[229, 28],
"Unseen Blade":[52, 18],
"Immutable Shield":[84, 26],
"Ash of War: Parry":[248, 117],
"Helphens Steeple":[144, 194],
"Cloth Garb":[100, 113],
"Rotten Winged Sword Insignia":[33, 8],
"Latenna the Albinauric +6":[230, 28],
"Unseen Form":[62, 18],
"Litany of Proper Death":[94, 26],
"Ash of War: Carian Retaliation":[36, 119],
"Blasphemous Blade":[160, 233],
"Cloth Trousers":[44, 114],
"Dagger Talisman":[42, 8],
"Latenna the Albinauric +7":[231, 28],
"Meteorite":[92, 18],
"Law of Causality":[104, 26],
"Ash of War: Storm Wall":[136, 119],
"Marais Executioners Sword":[176, 16],
"Black Wolf Mask":[16, 152],
"Arrows Reach Talisman":[52, 8],
"Latenna the Albinauric +8":[232, 28],
"Meteorite of Astel":[93, 18],
"Orders Blade":[114, 26],
"Ash of War: Golden Parry":[236, 119],
"Sword of Milos":[192, 55],
"Blaidds Armor":[116, 152],
"Blue Dancer Charm":[62, 8],
"Tarnisheds Furled Finger":[100, 0],
"Latenna the Albinauric +9":[233, 28],
"Rock Sling":[102, 18],
"Order Healing":[124, 26],
"Ash of War: Shield Crash":[80, 120],
"Golden Order Greatsword":[208, 94],
"Blaidds Gauntlets":[216, 152],
"Twinblade Talisman":[72, 8],
"Duelists Furled Finger":[101, 0],
"Latenna the Albinauric +10":[234, 28],
"Gravity Well":[112, 18],
"Bestial Sling":[144, 26],
"Ash of War: No Skill":[180, 120],
"Claymore":[224, 133],
"Blaidds Greaves":[60, 153],
"Axe Talisman":[82, 8],
"Bloody Finger":[102, 0],
"Nomad Ashes":[200, 32],
"Collapsing Stars":[113, 18],
"Stone of Gurranq":[154, 26],
"Ash of War: Thopss Barrier":[24, 121],
"Gargoyles Greatsword":[240, 172],
"Blaidds Armor (Altered)":[92, 156],
"Lance Talisman":[92, 8],
"Finger Severer":[103, 0],
"Nomad Ashes +1":[201, 32],
"Magma Shot":[192, 18],
"Beast Claw":[164, 26],
"Ash of War: Through and Through":[64, 156],
"Deaths Poker":[0, 212],
"Black Knife Hood":[32, 191],
"Arrows Sting Talisman":[102, 8],
"White Cipher Ring":[104, 0],
"Nomad Ashes +2":[202, 32],
"Gelmirs Fury":[202, 18],
"Gurranqs Beast Claw":[174, 26],
"Ash of War: Barrage":[164, 156],
"Gargoyles Blackblade":[16, 251],
"Black Knife Armor":[132, 191],
"Lord of Bloods Exultation":[112, 8],
"Blue Cipher Ring":[105, 0],
"Nomad Ashes +3":[203, 32],
"Roiling Magma":[212, 18],
"Bestial Vitality":[184, 26],
"Ash of War: Mighty Shot":[8, 157],
"Greatsword":[0, 9],
"Black Knife Gauntlets":[232, 191],
"Kindred of Rots Exultation":[122, 8],
"Tarnished Wizened Finger":[106, 0],
"Nomad Ashes +4":[204, 32],
"Rykards Rancor":[222, 18],
"Bestial Constitution":[194, 26],
"Ash of War: Enchanted Shot":[208, 157],
"Watchdogs Greatsword":[16, 48],
"Black Knife Greaves":[76, 192],
"Claw Talisman":[132, 8],
"Phantom Bloody Finger":[107, 0],
"Nomad Ashes +5":[205, 32],
"Briars of Sin":[36, 19],
"Lightning Spear":[244, 26],
"Ash of War: Sky Shot":[52, 158],
"Malikeths Black Blade":[32, 87],
"Black Knife Armor (Altered)":[108, 195],
"Roar Medallion":[142, 8],
"Taunters Tongue":[108, 0],
"Nomad Ashes +6":[206, 32],
"Briars of Punishment":[46, 19],
"Ancient Dragons Lightning Strike":[254, 26],
"Ash of War: Rain of Arrows":[152, 158],
"Trolls Golden Sword":[48, 126],
"Exile Hood":[48, 230],
"Curved Sword Talisman":[152, 8],
"Small Golden Effigy":[109, 0],
"Nomad Ashes +7":[207, 32],
"Rancorcall":[136, 19],
"Lightning Strike":[8, 27],
"Ash of War: Hoarfrost Stomp":[180, 195],
"Zweihander":[64, 165],
"Exile Armor":[148, 230],
"Companion Jar":[162, 8],
"Small Red Effigy":[110, 0],
"Nomad Ashes +8":[208, 32],
"Ancient Death Rancor":[137, 19],
"Frozen Lightning Spear":[9, 27],
"Ash of War: Storm Stomp":[24, 196],
"Starscourge Greatsword":[80, 204],
"Exile Gauntlets":[248, 230],
"Perfumers Talisman":[172, 8],
"Festering Bloody Finger":[111, 0],
"Nomad Ashes +9":[209, 32],
"Explosive Ghostflame":[146, 19],
"Honed Bolt":[18, 27],
"Ash of War: Kick":[124, 196],
"Royal Greatsword":[96, 243],
"Exile Greaves":[92, 231],
"Graven-School Talisman":[184, 11],
"Recusant Finger":[112, 0],
"Nomad Ashes +10":[210, 32],
"Fias Mist":[156, 19],
"Ancient Dragons Lightning Spear":[28, 27],
"Ash of War: Lightning Ram":[224, 196],
"Godslayers Greatsword":[112, 26],
"Banished Knight Helm":[64, 13],
"Graven-Mass Talisman":[185, 11],
"Phantom Bloody Finger":[113, 0],
"Nightmaiden & Swordstress Puppets":[176, 36],
"Tibias Summons":[166, 19],
"Fortissaxs Lightning Spear":[29, 27],
"Ash of War: Flame of the Redmanes":[68, 197],
"Ruins Greatsword":[128, 65],
"Banished Knight Armor":[164, 13],
"Faithfuls Canvas Talisman":[224, 11],
"Phantom Recusant Finger":[114, 0],
"Nightmaiden & Swordstress Puppets +1":[177, 36],
"Death Lightning":[176, 19],
"Lansseaxs Glaive":[38, 27],
"Ash of War: Ground Slam":[168, 197],
"Grafted Blade Greatsword":[160, 143],
"Banished Knight Gauntlets":[8, 14],
"Flocks Canvas Talisman":[234, 11],
"Memory of Grace":[115, 0],
"Nightmaiden & Swordstress Puppets +2":[178, 36],
"Oracle Bubbles":[236, 19],
"Electrify Armament":[48, 27],
"Ash of War: Golden Slam":[12, 198],
"Troll Knights Sword":[176, 182],
"Banished Knight Greaves":[108, 14],
"Old Lords Talisman":[244, 11],
"Spectral Steed Whistle":[130, 0],
"Nightmaiden & Swordstress Puppets +3":[179, 36],
"Great Oracular Bubble":[246, 19],
"Vykes Dragonbolt":[58, 27],
"Ash of War: Waves of Darkness":[112, 198],
"Estoc":[64, 75],
"10031128":[12, 0],
"Banished Knight Helm (Altered)":[40, 17],
"Radagon Icon":[254, 11],
"Phantom Great Rune":[135, 0],
"Nightmaiden & Swordstress Puppets +4":[180, 36],
"Dragonbolt Blessing":[59, 27],
"Ash of War: Hoarah Louxs Earthshaker":[212, 198],
"Cleanrot Knights Sword":[80, 114],
"Banished Knight Armor (Altered)":[140, 17],
"Primal Glintstone Blade":[8, 12],
"Furlcalling Finger Remedy":[150, 0],
"Nightmaiden & Swordstress Puppets +5":[181, 36],
"Dragonfire":[88, 27],
"Ash of War: Determination":[96, 234],
"Rapier":[96, 153],
"Briar Helm":[80, 52],
"Godfrey Icon":[18, 12],
"Nightmaiden & Swordstress Puppets +6":[182, 36],
"Agheels Flame":[89, 27],
"Ash of War: Royal Knights Resolve":[196, 234],
"Rogiers Rapier":[112, 192],
"Briar Armor":[180, 52],
"Dragoncrest Shield Talisman":[160, 15],
"Tarnisheds Furled Finger":[170, 0],
"Nightmaiden & Swordstress Puppets +7":[183, 36],
"Magma Breath":[98, 27],
"Ash of War: Assassins Gambit":[40, 235],
"Antspur Rapier":[128, 231],
"Briar Gauntlets":[24, 53],
"Dragoncrest Shield Talisman +1":[161, 15],
"Duelists Furled Finger":[171, 0],
"Nightmaiden & Swordstress Puppets +8":[184, 36],
"Theodorixs Magma":[99, 27],
"Ash of War: Golden Vow":[140, 235],
"Frozen Needle":[144, 14],
"Briar Greaves":[124, 53],
"Dragoncrest Shield Talisman +2":[162, 15],
"Bloody Finger":[172, 0],
"Nightmaiden & Swordstress Puppets +9":[185, 36],
"Dragonice":[108, 27],
"Ash of War: Sacred Order":[240, 235],
"Nobles Estoc":[160, 53],
"Briar Armor (Altered)":[156, 56],
"Dragoncrest Greatshield Talisman":[163, 15],
"White Cipher Ring":[174, 0],
"Nightmaiden & Swordstress Puppets +10":[186, 36],
"Borealiss Mist":[109, 27],
"Ash of War: Shared Order":[84, 236],
"Bloody Helice":[128, 141],
"Page Hood":[96, 91],
"Spelldrake Talisman":[170, 15],
"Blue Cipher Ring":[175, 0],
"Mimic Tear Ashes":[152, 40],
"Rotten Breath":[118, 27],
"Ash of War: Seppuku":[184, 236],
"Godskin Stitcher":[144, 180],
"Page Garb":[196, 91],
"Spelldrake Talisman +1":[171, 15],
"Taunters Tongue":[178, 0],
"Mimic Tear Ashes +1":[153, 40],
"Ekzykess Decay":[119, 27],
"Ash of War: Cragblade":[28, 237],
"Great Épée":[160, 219],
"Page Trousers":[140, 92],
"Spelldrake Talisman +2":[172, 15],
"Small Golden Effigy":[179, 0],
"Mimic Tear Ashes +2":[154, 40],
"Glintstone Breath":[128, 27],
"Ash of War: Barbaric Roar":[232, 253],
"Dragon Kings Cragblade":[192, 41],
"Page Garb (Altered)":[172, 95],
"Flamedrake Talisman":[180, 15],
"Small Red Effigy":[180, 0],
"Mimic Tear Ashes +3":[155, 40],
"Smarags Glintstone Breath":[129, 27],
"Ash of War: War Cry":[76, 254],
"Falchion":[192, 207],
"Nights Cavalry Helm":[112, 130],
"Flamedrake Talisman +1":[181, 15],
"Spectral Steed Whistle":[181, 0],
"Mimic Tear Ashes +4":[156, 40],
"Placidusaxs Ruin":[138, 27],
"Ash of War: Beasts Roar":[176, 254],
"Beastmans Curved Sword":[208, 246],
"Nights Cavalry Armor":[212, 130],
"Flamedrake Talisman +2":[182, 15],
"Furlcalling Finger Remedy":[182, 0],
"Mimic Tear Ashes +5":[157, 40],
"Dragonclaw":[148, 27],
"Ash of War: Trolls Roar":[20, 255],
"Shotel":[224, 29],
"Nights Cavalry Gauntlets":[56, 131],
"Boltdrake Talisman":[190, 15],
"Festering Bloody Finger":[183, 0],
"Mimic Tear Ashes +6":[158, 40],
"Dragonmaw":[168, 27],
"Ash of War: Braggarts Roar":[120, 255],
"Shamshir":[240, 68],
"Nights Cavalry Greaves":[156, 131],
"Boltdrake Talisman +1":[191, 15],
"Recusant Finger":[184, 0],
"Mimic Tear Ashes +7":[159, 40],
"Greyolls Roar":[178, 27],
"Ash of War: Endure":[112, 17],
"Bandits Curved Sword":[0, 108],
"Nights Cavalry Helm (Altered)":[88, 134],
"Boltdrake Talisman +2":[192, 15],
"Rune Arc":[190, 0],
"Mimic Tear Ashes +8":[160, 40],
"Pest Threads":[32, 28],
"Ash of War: Vow of the Indomitable":[212, 17],
"Magma Blade":[16, 147],
"Nights Cavalry Armor (Altered)":[188, 134],
"Haligdrake Talisman":[200, 15],
"Godricks Great Rune":[191, 0],
"Mimic Tear Ashes +9":[161, 40],
"Swarm of Flies":[42, 28],
"Ash of War: Holy Ground":[56, 18],
"Flowing Curved Sword":[32, 186],
"Blue Silver Mail Hood":[128, 169],
"Haligdrake Talisman +1":[201, 15],
"Radahns Great Rune":[192, 0],
"Mimic Tear Ashes +10":[162, 40],
"Poison Mist":[52, 28],
"Ash of War: Quickstep":[128, 56],
"Wing of Astel":[48, 225],
"Blue Silver Mail Armor":[228, 169],
"Haligdrake Talisman +2":[202, 15],
"Morgotts Great Rune":[193, 0],
"Crystalian Ashes":[128, 44],
"Poison Armament":[62, 28],
"Ash of War: Bloodhounds Step":[228, 56],
"Scavengers Curved Sword":[64, 8],
"Blue Silver Bracelets":[72, 170],
"Pearldrake Talisman":[210, 15],
"Rykards Great Rune":[194, 0],
"Crystalian Ashes +1":[129, 44],
"Scarlet Aeonia":[72, 28],
"Ash of War: Raptor of the Mists":[72, 57],
"Eclipse Shotel":[96, 86],
"Blue Silver Mail Skirt":[172, 170],
"Pearldrake Talisman +1":[211, 15],
"Mohgs Great Rune":[195, 0],
"Crystalian Ashes +2":[130, 44],
"Inescapable Frenzy":[132, 28],
"Ash of War: White Shadows Lure":[8, 76],
"Serpent-Gods Curved Sword":[112, 125],
"Blue Silver Mail Armor (Altered)":[204, 173],
"Pearldrake Talisman +2":[212, 15],
"Malenias Great Rune":[196, 0],
"Crystalian Ashes +3":[131, 44],
"The Flame of Frenzy":[142, 28],
"Mantis Blade":[128, 164],
"Nomadic Merchants Chapeau":[144, 208],
"Crucible Scale Talisman":[220, 15],
"Flask of Wondrous Physick":[250, 0],
"Crystalian Ashes +4":[132, 44],
"Unendurable Frenzy":[143, 28],
"Scimitar":[160, 242],
"Nomadic Merchants Finery":[244, 208],
"Crucible Feather Talisman":[230, 15],
"Flask of Wondrous Physick":[251, 0],
"Crystalian Ashes +5":[133, 44],
"Frenzied Burst":[152, 28],
"Bloody Scimitar":[236, 246],
"Nomadic Merchants Trousers":[188, 209],
"Blue-Feathered Branchsword":[240, 15],
"Fire Pot":[44, 1],
"Crystalian Ashes +6":[134, 44],
"Howl of Shabriri":[162, 28],
"Grossmesser":[176, 25],
"Nomadic Merchants Finery (Altered)":[220, 212],
"Ritual Shield Talisman":[250, 15],
"Redmane Fire Pot":[45, 1],
"Crystalian Ashes +7":[135, 44],
"Aspects of the Crucible: Tail":[76, 29],
"Onyx Lords Greatsword":[16, 57],
"Malformed Dragon Helm":[160, 247],
"Greatshield Talisman":[4, 16],
"Giantsflame Fire Pot":[46, 1],
"Crystalian Ashes +8":[136, 44],
"Aspects of the Crucible: Horns":[86, 29],
"Dismounter":[32, 96],
"Malformed Dragon Armor":[4, 248],
"Crucible Knot Talisman":[14, 16],
"Lightning Pot":[64, 1],
"Crystalian Ashes +9":[137, 44],
"Aspects of the Crucible: Breath":[96, 29],
"Bloodhounds Fang":[48, 135],
"Malformed Dragon Gauntlets":[104, 248],
"Crimson Seed Talisman":[136, 19],
"Ancient Dragonbolt Pot":[65, 1],
"Crystalian Ashes +10":[138, 44],
"Black Blade":[106, 29],
"Magma Wyrms Scalesword":[64, 174],
"Malformed Dragon Greaves":[204, 248],
"Cerulean Seed Talisman":[146, 19],
"Fetid Pot":[74, 1],
"Ancestral Follower Ashes":[104, 48],
"Fires Deadly Sin":[220, 30],
"Zamor Curved Sword":[80, 213],
"Tree Sentinel Helm":[176, 30],
"Blessed Dew Talisman":[156, 19],
"Swarm Pot":[84, 1],
"Ancestral Follower Ashes +1":[105, 48],
"Golden Lightning Fortification":[223, 30],
"Omen Cleaver":[96, 252],
"Tree Sentinel Armor":[20, 31],
"Takers Cameo":[166, 19],
"Holy Water Pot":[94, 1],
"Ancestral Follower Ashes +2":[106, 48],
"Monks Flameblade":[112, 35],
"Tree Sentinel Gauntlets":[120, 31],
"Godskin Swaddling Cloth":[176, 19],
"Sacred Order Pot":[95, 1],
"Ancestral Follower Ashes +3":[107, 48],
"Beastmans Cleaver":[128, 74],
"Tree Sentinel Greaves":[220, 31],
"Assassins Crimson Dagger":[186, 19],
"Freezing Pot":[104, 1],
"Ancestral Follower Ashes +4":[108, 48],
"Morgotts Cursed Sword":[160, 152],
"Tree Sentinel Armor (Altered)":[252, 34],
"Assassins Cerulean Dagger":[196, 19],
"Poison Pot":[114, 1],
"Ancestral Follower Ashes +5":[109, 48],
"Uchigatana":[64, 84],
"Royal Knight Helm":[192, 69],
"Crepuss Vial":[112, 23],
"Oil Pot":[124, 1],
"Ancestral Follower Ashes +6":[110, 48],
"Nagakiba":[80, 123],
"Royal Knight Armor":[36, 70],
"Concealing Veil":[122, 23],
"Alluring Pot":[134, 1],
"Ancestral Follower Ashes +7":[111, 48],
"Hand of Malenia":[96, 162],
"Royal Knight Gauntlets":[136, 70],
"Carian Filigreed Crest":[132, 23],
"Beastlure Pot":[135, 1],
"Ancestral Follower Ashes +8":[112, 48],
"Meteoric Ore Blade":[112, 201],
"Royal Knight Greaves":[236, 70],
"Longtail Cat Talisman":[152, 23],
"Roped Fire Pot":[144, 1],
"Ancestral Follower Ashes +9":[113, 48],
"Rivers of Blood":[128, 240],
"Royal Knight Armor (Altered)":[12, 74],
"Shabriris Woe":[162, 23],
"Roped Lightning Pot":[164, 1],
"Ancestral Follower Ashes +10":[114, 48],
"Moonveil":[160, 62],
"Nox Monk Hood":[208, 108],
"Daedicars Woe":[172, 23],
"Roped Fetid Pot":[174, 1],
"Winged Misbegotten Ashes":[80, 52],
"Dragonscale Blade":[176, 101],
"Nox Monk Armor":[52, 109],
"Sacrificial Twig":[182, 23],
"Roped Poison Pot":[184, 1],
"Winged Misbegotten Ashes + 1":[81, 52],
"Serpentbone Blade":[192, 140],
"Nox Monk Bracelets":[152, 109],
"Furled Fingers Trick-Mirror":[192, 23],
"Roped Oil Pot":[194, 1],
"Winged Misbegotten Ashes + 2":[82, 52],
"Twinblade":[128, 150],
"Nox Monk Greaves":[252, 109],
"Hosts Trick-Mirror":[202, 23],
"Roped Magic Pot":[204, 1],
"Winged Misbegotten Ashes + 3":[83, 52],
"Bloody Twinblade":[204, 154],
"Nox Monk Hood (Altered)":[184, 112],
"Entwining Umbilical Cord":[212, 23],
"Roped Fly Pot":[214, 1],
"Winged Misbegotten Ashes + 4":[84, 52],
"Godskin Peeler":[144, 189],
"Nox Monk Armor (Altered)":[28, 113],
"Ancestral Spirits Horn":[222, 23],
"Roped Freezing Pot":[224, 1],
"Winged Misbegotten Ashes + 5":[85, 52],
"Twinned Knight Swords":[176, 11],
"Nox Swordstress Crown":[160, 116],
"Roped Volcano Pot":[234, 1],
"Winged Misbegotten Ashes + 6":[86, 52],
"Eleonoras Poleblade":[208, 89],
"Nox Swordstress Armor":[4, 117],
"Roped Holy Water Pot":[254, 1],
"Winged Misbegotten Ashes + 7":[87, 52],
"Gargoyles Twinblade":[0, 207],
"Night Maiden Twin Crown":[136, 120],
"Volcano Pot":[88, 2],
"Winged Misbegotten Ashes + 8":[88, 52],
"Gargoyles Black Blades":[16, 246],
"Night Maiden Armor":[236, 120],
"Albinauric Pot":[98, 2],
"Winged Misbegotten Ashes + 9":[89, 52],
"Mace":[192, 216],
"Nox Swordstress Crown (Altered)":[112, 124],
"Cursed-Blood Pot":[118, 2],
"Winged Misbegotten Ashes + 10":[90, 52],
"Club":[208, 255],
"Nox Swordstress Armor (Altered)":[212, 124],
"Sleep Pot":[128, 2],
"Albinauric Ashes":[56, 56],
"Bloody Club":[28, 4],
"Great Horned Headband":[224, 147],
"Rancor Pot":[138, 2],
"Albinauric Ashes +1":[57, 56],
"Curved Club":[240, 77],
"Fur Raiment":[68, 148],
"Magic Pot":[148, 2],
"Albinauric Ashes +2":[58, 56],
"Warpick":[0, 117],
"Fur Leggings":[12, 149],
"Academy Magic Pot":[149, 2],
"Albinauric Ashes +3":[59, 56],
"Morning Star":[16, 156],
"Shining Horned Headband":[200, 151],
"Rot Pot":[158, 2],
"Albinauric Ashes +4":[60, 56],
"Varrés Bouquet":[32, 195],
"Shaman Furs":[44, 152],
"Rowa Raisin":[42, 3],
"Albinauric Ashes +5":[61, 56],
"Spiked Club":[48, 234],
"Shaman Leggings":[244, 152],
"Sweet Raisin":[43, 3],
"Albinauric Ashes +6":[62, 56],
"Hammer":[64, 17],
"Duelist Helm":[240, 186],
"Frozen Raisin":[44, 3],
"Albinauric Ashes +7":[63, 56],
"Monks Flamemace":[80, 56],
"Gravekeeper Cloak":[84, 187],
"Boiled Crab":[52, 3],
"Albinauric Ashes +8":[64, 56],
"Envoys Horn":[96, 95],
"Duelist Greaves":[28, 188],
"Boiled Prawn":[62, 3],
"Albinauric Ashes +9":[65, 56],
"Scepter of the All-Knowing":[112, 134],
"Gravekeeper Cloak (Altered)":[60, 191],
"Neutralizing Boluses":[132, 3],
"Albinauric Ashes +10":[66, 56],
"Nox Flowing Hammer":[128, 173],
"Sanguine Noble Hood":[0, 226],
"Stanching Boluses":[142, 3],
"Skeletal Militiaman Ashes":[32, 60],
"Ringed Finger":[144, 212],
"Sanguine Noble Robe":[100, 226],
"Thawfrost Boluses":[152, 3],
"Skeletal Militiaman Ashes +1":[33, 60],
"Stone Club":[160, 251],
"Sanguine Noble Waistcloth":[44, 227],
"Stimulating Boluses":[162, 3],
"Skeletal Militiaman Ashes +2":[34, 60],
"Marikas Hammer":[176, 34],
"Guardian Mask":[16, 9],
"Preserving Boluses":[172, 3],
"Skeletal Militiaman Ashes +3":[35, 60],
"Large Club":[0, 27],
"Guardian Garb (Full Bloom)":[116, 9],
"Rejuvenating Boluses":[182, 3],
"Skeletal Militiaman Ashes +4":[36, 60],
"Greathorn Hammer":[16, 66],
"Guardian Bracers":[216, 9],
"Clarifying Boluses":[192, 3],
"Skeletal Militiaman Ashes +5":[37, 60],
"Battle Hammer":[32, 105],
"Guardian Greaves":[60, 10],
"Flask of Crimson Tears":[232, 3],
"Skeletal Militiaman Ashes +6":[38, 60],
"Great Mace":[96, 5],
"Guardian Garb":[92, 13],
"Flask of Crimson Tears":[233, 3],
"Skeletal Militiaman Ashes +7":[39, 60],
"Curved Great Club":[128, 83],
"Cleanrot Helm":[32, 48],
"Flask of Crimson Tears +1":[234, 3],
"Skeletal Militiaman Ashes +8":[40, 60],
"Celebrants Skull":[208, 22],
"Cleanrot Armor":[132, 48],
"Flask of Crimson Tears +1":[235, 3],
"Skeletal Militiaman Ashes +9":[41, 60],
"Pickaxe":[224, 61],
"Cleanrot Gauntlets":[232, 48],
"Flask of Crimson Tears +2":[236, 3],
"Skeletal Militiaman Ashes +10":[42, 60],
"Beastclaw Greathammer":[240, 100],
"Cleanrot Greaves":[76, 49],
"Flask of Crimson Tears +2":[237, 3],
"Skeletal Bandit Ashes":[8, 64],
"Envoys Long Horn":[0, 140],
"Cleanrot Helm (Altered)":[8, 52],
"Flask of Crimson Tears +3":[238, 3],
"Skeletal Bandit Ashes +1":[9, 64],
"Cranial Vessel Candlestand":[16, 179],
"Cleanrot Armor (Altered)":[108, 52],
"Flask of Crimson Tears +3":[239, 3],
"Skeletal Bandit Ashes +2":[10, 64],
"Great Stars":[32, 218],
"Fire Monk Hood":[48, 87],
"Flask of Crimson Tears +4":[240, 3],
"Skeletal Bandit Ashes +3":[11, 64],
"Brick Hammer":[48, 1],
"Fire Monk Armor":[148, 87],
"Flask of Crimson Tears +4":[241, 3],
"Skeletal Bandit Ashes +4":[12, 64],
"Devourers Scepter":[64, 40],
"Fire Monk Gauntlets":[248, 87],
"Flask of Crimson Tears +5":[242, 3],
"Skeletal Bandit Ashes +5":[13, 64],
"Rotten Battle Hammer":[80, 79],
"Fire Monk Greaves":[92, 88],
"Flask of Crimson Tears +5":[243, 3],
"Skeletal Bandit Ashes +6":[14, 64],
"Nightrider Flail":[64, 93],
"Blackflame Monk Hood":[24, 91],
"Flask of Crimson Tears +6":[244, 3],
"Skeletal Bandit Ashes +7":[15, 64],
"Flail":[80, 132],
"Blackflame Monk Armor":[124, 91],
"Flask of Crimson Tears +6":[245, 3],
"Skeletal Bandit Ashes +8":[16, 64],
"Family Heads":[96, 171],
"Blackflame Monk Gauntlets":[224, 91],
"Flask of Crimson Tears +7":[246, 3],
"Skeletal Bandit Ashes +9":[17, 64],
"Bastards Stars":[112, 210],
"Blackflame Monk Greaves":[68, 92],
"Flask of Crimson Tears +7":[247, 3],
"Skeletal Bandit Ashes +10":[18, 64],
"Chainlink Flail":[128, 249],
"Fire Prelate Helm":[64, 126],
"Flask of Crimson Tears +8":[248, 3],
"Oracle Envoy Ashes":[240, 67],
"Battle Axe":[128, 159],
"Fire Prelate Armor":[164, 126],
"Flask of Crimson Tears +8":[249, 3],
"Oracle Envoy Ashes +1":[241, 67],
"Forked Hatchet":[144, 198],
"Fire Prelate Gauntlets":[8, 127],
"Flask of Crimson Tears +9":[250, 3],
"Oracle Envoy Ashes +2":[242, 67],
"Hand Axe":[160, 237],
"Fire Prelate Greaves":[108, 127],
"Flask of Crimson Tears +9":[251, 3],
"Oracle Envoy Ashes +3":[243, 67],
"Jawbone Axe":[176, 20],
"Fire Prelate Armor (Altered)":[140, 130],
"Flask of Crimson Tears +10":[252, 3],
"Oracle Envoy Ashes +4":[244, 67],
"Iron Cleaver":[192, 59],
"Aristocrat Headband":[80, 165],
"Flask of Crimson Tears +10":[253, 3],
"Oracle Envoy Ashes +5":[245, 67],
"Ripple Blade":[208, 98],
"Aristocrat Garb":[180, 165],
"Flask of Crimson Tears +11":[254, 3],
"Oracle Envoy Ashes +6":[246, 67],
"Celebrants Cleaver":[224, 137],
"Aristocrat Boots":[124, 166],
"Flask of Crimson Tears +11":[255, 3],
"Oracle Envoy Ashes +7":[247, 67],
"Icerind Hatchet":[0, 216],
"Aristocrat Garb (Altered)":[156, 169],
"Flask of Crimson Tears +12":[0, 4],
"Oracle Envoy Ashes +8":[248, 67],
"Highland Axe":[32, 38],
"Aristocrat Hat":[96, 204],
"Flask of Crimson Tears +12":[1, 4],
"Oracle Envoy Ashes +9":[249, 67],
"Bloody Highland Axe":[108, 42],
"Aristocrat Coat":[196, 204],
"Flask of Cerulean Tears":[26, 4],
"Oracle Envoy Ashes +10":[250, 67],
"Sacrificial Axe":[48, 77],
"Old Aristocrat Cowl":[112, 243],
"Flask of Cerulean Tears":[27, 4],
"Putrid Corpse Ashes":[216, 71],
"Rosus Axe":[64, 116],
"Old Aristocrat Gown":[212, 243],
"Flask of Cerulean Tears +1":[28, 4],
"Putrid Corpse Ashes +1":[217, 71],
"Stormhawk Axe":[96, 194],
"Old Aristocrat Shoes":[156, 244],
"Flask of Cerulean Tears +1":[29, 4],
"Putrid Corpse Ashes +2":[218, 71],
"Greataxe":[192, 225],
"Vulgar Militia Helm":[160, 104],
"Flask of Cerulean Tears +2":[30, 4],