From 7064495dd35be792c78af7511771119c12f4c9cf Mon Sep 17 00:00:00 2001 From: Ariescyn Date: Thu, 5 Jan 2023 12:16:21 -0500 Subject: [PATCH] v1.65 final --- SaveManager.py | 191 ++- allitems_dict.py | 2962 ++++++++++++++++++++++++++++++++++++++++++++ data/changelog.txt | 5 +- hexedit.py | 116 +- os_layer.py | 6 +- 5 files changed, 3258 insertions(+), 22 deletions(-) create mode 100644 allitems_dict.py diff --git a/SaveManager.py b/SaveManager.py index 2cc1215..92b6ce0 100644 --- a/SaveManager.py +++ b/SaveManager.py @@ -1190,7 +1190,10 @@ def done(): return nms = get_charnames(file) archive_file(file, name, "ACTION: Changed SteamID", nms) - hexedit.replace_id(file, int(x[0])) + out = hexedit.replace_id(file, int(x[0])) + if out is False: + popup("Unable to find SteamID, SaveData may be corrupt.") + return popup("Successfully changed SteamID") popupwin.destroy() @@ -1670,6 +1673,185 @@ def done(): but_cancel = Button(idwin, text="Cancel", borderwidth=5, width=6, command=lambda: idwin.destroy()) but_cancel.grid(row=1, column=0, sticky='w', padx=(200,100), pady=(0,15)) + def replace_menu(): + def populate_items(*args): + global itemdb + + + cat = cat_vars.get() + itemdb = itemdata.Items() + items = itemdb.get_item_ls(cat) + + dropdown3["menu"].delete(0, "end") # remove full list + for i in items: + if len(i) > 1: + dropdown3["menu"].add_command(label=i, command=TKIN._setit(i_vars, i)) + i_vars.set("Items") # default value set + char = c_vars.get() + + + def populate_inventory(): + inv_lb.delete(0,END) + char = c_vars.get() # "1. charname" + if char == "Character" or char == "": + popup("Character not selected", parent_window=win) + return + + + if char.split(".")[1] == " ": + popup( + "Can't write to empty slot.\nGo in-game and create a character to overwrite.", parent_window=win + ) + return + + name = fetch_listbox_entry(lb1)[0] # Save file name. EX: main + if len(name) < 1: + popup(txt="Slot not selected", parent_window=win) + return + + dest_file = f"{savedir}{name}/{ext()}" + char_ind = int(char.split(".")[0]) + + try: + inventory_items = hexedit.get_inventory(dest_file, char_ind) + except: + popup("Unable to load inventory! Do you have Tarnished's Wizened Finger?", parent_window=win) + return + for item in inventory_items: + inv_lb.insert(END, " " + item["name"]) + + # Main GUI content STAT + + + def replace_item(): + + item = i_vars.get() + if item == "Items" or item == "": + popup("Select an item first.", parent_window=win) + return + + char = c_vars.get() # "1. charname" + if char == "Character" or char == "": + popup("Character not selected", parent_window=win) + return + + + if char.split(".")[1] == " ": + popup( + "Can't write to empty slot.\nGo in-game and create a character to overwrite.", parent_window=win + ) + return + + + item_to_replace = fetch_listbox_entry(inv_lb)[1].lstrip() + if item_to_replace == "": + popup("Select an item to replace!", parent_window=win) + return + + + name = fetch_listbox_entry(lb1)[1].strip() # Save file name. EX: main + if len(name) < 1: + popup(txt="Slot not selected", parent_window=win) + return + + dest_file = f"{savedir}{name}/{ext()}" + char_ind = int(char.split(".")[0]) + archive_file(dest_file, name, f"ACTION: Replaced {item_to_replace}", get_charnames(dest_file)) + + inventory_entries = hexedit.get_inventory(dest_file, char_ind) + + itemid = itemdb.db[cat_vars.get()].get(item) + + for entry in inventory_entries: + if entry["name"] == item_to_replace: + + hexedit.overwrite_item(dest_file,char_ind, entry, itemid) + popup(f"Successfully replaced {item_to_replace}", parent_window=win) + inv_lb.delete(0,END) + return + + + + + popupwin.destroy() + win = Toplevel(root) + win.title("Replace Items") + win.resizable(width=True, height=True) + win.geometry("610x540") + x = root.winfo_x() + y = root.winfo_y() + win.geometry("+%d+%d" % (x + 200, y + 200)) + + menubar = Menu(win) + win.config(menu=menubar) + helpmenu = Menu(menubar, tearoff=0) + message = "This feature is experimental and may not work for everything!\n\n-Weapons/Armor is unsupported\n\n-You should try to replace an item with another of the same category ex: crafting materials\n\n-Try not to replace an item you already have, or you will get two stacks of the same item\n\n-Not all items will appear in the inventory box, only detected items that can be overwritten\n\nYou must have Tarnished's Wizened Finger in your inventory (First item you pickup)\n" + helpmenu.add_command(label="Readme", command=lambda:popup(message, parent_window=win)) + menubar.add_cascade(label="Help", menu=helpmenu) + + # MAIN SAVE FILE LISTBOX + lb1 = Listbox(win, borderwidth=3, width=15, height=10, exportselection=0) + lb1.config(font=bolded, width=20) + lb1.grid(row=1, column=0, padx=(10, 0), pady=(10, 10)) + load_listbox(lb1) + + # SELECT LISTBOX ITEM BUTTON + but_select1 = Button( + win, text="Select", command=lambda: get_char_names(lb1, dropdown1, c_vars) + ) + # but_select1.config(bg='grey', fg='white') + but_select1.grid(row=2, column=0, padx=(10, 0), pady=(0, 0)) + + # CHARACTER DROPDOWN MENU + opts = [""] + c_vars = StringVar(win) + c_vars.set("Character") + dropdown1 = OptionMenu(win, c_vars, *opts) + dropdown1.grid(row=3, column=0, padx=(10, 0), pady=(0, 0)) + + + # LABEL REPLACE WITH + repl_lab = Label(win, text="Replace with:") + repl_lab.grid(row=4, column=1) + + # CATEGORY DROPDOWN + opts1 = itemdb.categories + cat_vars = StringVar(win) + cat_vars.set("Category") + dropdown2 = OptionMenu(win, cat_vars, *opts1) + dropdown2.config(width=15) + + cat_vars.trace("w", populate_items) + dropdown2.grid(row=5, column=1, padx=(10, 0), pady=(0, 0)) + + # ITEM DROPDOWN + opts2 = [""] + i_vars = StringVar(win) + i_vars.set("Items") + dropdown3 = OptionMenu(win, i_vars, *opts2) + dropdown3.config(width=15) + dropdown3.grid(row=6, column=1, padx=(10, 0), pady=(0, 0)) + + but_replace = Button(win, text="Replace", command=replace_item) + but_replace.grid(row=7, column=1, padx=(10,0), pady=(50,10)) + + # inventory items listbox + inv_lb = Listbox(win, borderwidth=3, width=15, height=10, exportselection=0) + inv_lb.config(font=bolded, width=25) + inv_lb.grid(row=1, column=2, padx=(10, 10), pady=(10, 10)) + + # get inventory button + but_get_inv = Button(win, text="Get Inventory", command=populate_inventory ) + but_get_inv.grid(row=2, column=2, padx=(10, 0), pady=(10, 10)) + + + + + + + + + @@ -1690,11 +1872,12 @@ def done(): menubar = Menu(popupwin) popupwin.config(menu=menubar) helpmenu = Menu(menubar, tearoff=0) + helpmenu.add_command(label="Replace item", command=replace_menu) helpmenu.add_command(label="Search", command=manual_search) helpmenu.add_command(label="Add item by ID", command=add_custom_id) helpmenu.add_command(label="Remove Custom Item", command=remove_id) helpmenu.add_command(label="View Master Spreadsheet", command=lambda:webbrowser.open_new_tab("https://github.com/Ariescyn/EldenRing-Save-Manager/blob/main/ALL_ITEM_IDS.md")) - menubar.add_cascade(label="Custom Items", menu=helpmenu) + menubar.add_cascade(label="Actions", menu=helpmenu) # MAIN SAVE FILE LISTBOX @@ -2116,6 +2299,8 @@ def done(): popupwin.destroy() + + popupwin = Toplevel(root) popupwin.title("Import") # popupwin.geometry("200x70") @@ -2345,7 +2530,7 @@ def open_notes(): rt_click_menu.add_command(label="Update", command=update_slot) #rt_click_menu.add_command(label="Quick Backup", command=quick_backup) #rt_click_menu.add_command(label="Quick Restore", command=quick_restore) -rt_click_menu.add_command(label="Set Starting Classes", command=set_starting_class_menu) #FULLY FUNCTIONAL, but it doesn't work because game restores playtime to original values after loading..... :( +#rt_click_menu.add_command(label="Set Starting Classes", command=set_starting_class_menu) #FULLY FUNCTIONAL, but it doesn't work because game restores playtime to original values after loading..... :( rt_click_menu.add_command(label="Change SteamID", command=set_steam_id_menu) rt_click_menu.add_command(label="Open File Location", command=open_folder) lb.bind( diff --git a/allitems_dict.py b/allitems_dict.py new file mode 100644 index 0000000..53ec30d --- /dev/null +++ b/allitems_dict.py @@ -0,0 +1,2962 @@ +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], +"Putrid Corpse Ashes +3":[219, 71], +"Warped Axe":[208, 8], +"Vulgar Militia Armor":[4, 105], +"Flask of Cerulean Tears +2":[31, 4], +"Putrid Corpse Ashes +4":[220, 71], +"Great Omenkiller Cleaver":[224, 47], +"Vulgar Militia Gauntlets":[104, 105], +"Flask of Cerulean Tears +3":[32, 4], +"Putrid Corpse Ashes +5":[221, 71], +"Crescent Moon Axe":[240, 86], +"Vulgar Militia Greaves":[204, 105], +"Flask of Cerulean Tears +3":[33, 4], +"Putrid Corpse Ashes +6":[222, 71], +"Axe of Godrick":[0, 126], +"Sage Hood":[176, 143], +"Flask of Cerulean Tears +4":[34, 4], +"Putrid Corpse Ashes +7":[223, 71], +"Longhaft Axe":[16, 165], +"Sage Robe":[20, 144], +"Flask of Cerulean Tears +4":[35, 4], +"Putrid Corpse Ashes +8":[224, 71], +"Rusted Anchor":[32, 204], +"Sage Trousers":[220, 144], +"Flask of Cerulean Tears +5":[36, 4], +"Putrid Corpse Ashes +9":[225, 71], +"Executioners Greataxe":[64, 26], +"Pumpkin Helm":[192, 182], +"Flask of Cerulean Tears +5":[37, 4], +"Putrid Corpse Ashes +10":[226, 71], +"Winged Greathorn":[112, 143], +"Elden Lord Crown":[224, 4], +"Flask of Cerulean Tears +6":[38, 4], +"Depraved Perfumer Carmaan":[192, 75], +"Butchering Knife":[128, 182], +"Elden Lord Armor":[68, 5], +"Flask of Cerulean Tears +6":[39, 4], +"Depraved Perfumer Carmaan +1":[193, 75], +"Gargoyles Great Axe":[144, 221], +"Elden Lord Bracers":[168, 5], +"Flask of Cerulean Tears +7":[40, 4], +"Depraved Perfumer Carmaan +2":[194, 75], +"Gargoyles Black Axe":[160, 4], +"Elden Lord Greaves":[12, 6], +"Flask of Cerulean Tears +7":[41, 4], +"Depraved Perfumer Carmaan +3":[195, 75], +"Short Spear":[0, 36], +"Elden Lord Armor (Altered)":[44, 9], +"Flask of Cerulean Tears +8":[42, 4], +"Depraved Perfumer Carmaan +4":[196, 75], +"Spear":[16, 75], +"Radahns Redmane Helm":[240, 43], +"Flask of Cerulean Tears +8":[43, 4], +"Depraved Perfumer Carmaan +5":[197, 75], +"Bloody Spear":[92, 79], +"Radahns Lion Armor":[84, 44], +"Flask of Cerulean Tears +9":[44, 4], +"Depraved Perfumer Carmaan +6":[198, 75], +"Crystal Spear":[32, 114], +"Radahns Gauntlets":[184, 44], +"Flask of Cerulean Tears +9":[45, 4], +"Depraved Perfumer Carmaan +7":[199, 75], +"Claymans Harpoon":[48, 153], +"Radahns Greaves":[28, 45], +"Flask of Cerulean Tears +10":[46, 4], +"Depraved Perfumer Carmaan +8":[200, 75], +"Cleanrot Spear":[64, 192], +"Radahns Lion Armor (Altered)":[60, 48], +"Flask of Cerulean Tears +10":[47, 4], +"Depraved Perfumer Carmaan +9":[201, 75], +"Partisan":[80, 231], +"Lord of Bloods Robe":[100, 83], +"Flask of Cerulean Tears +11":[48, 4], +"Depraved Perfumer Carmaan +10":[202, 75], +"Celebrants Rib-Rake":[96, 14], +"Lord of Bloods Robe (Altered)":[76, 87], +"Flask of Cerulean Tears +11":[49, 4], +"Perfumer Tricia":[168, 79], +"Pike":[112, 53], +"Queens Crescent Crown":[48, 200], +"Flask of Cerulean Tears +12":[50, 4], +"Perfumer Tricia +1":[169, 79], +"Torchpole":[128, 92], +"Queens Robe":[148, 200], +"Flask of Cerulean Tears +12":[51, 4], +"Perfumer Tricia +2":[170, 79], +"Bolt of Gransax":[144, 131], +"Queens Bracelets":[248, 200], +"Pickled Turtle Neck":[76, 4], +"Perfumer Tricia +3":[171, 79], +"Cross-Naginata":[176, 209], +"Queens Leggings":[92, 201], +"Immunizing Cured Meat":[86, 4], +"Perfumer Tricia +4":[172, 79], +"Death Ritual Spear":[192, 248], +"Godskin Apostle Hood":[64, 239], +"Invigorating Cured Meat":[96, 4], +"Perfumer Tricia +5":[173, 79], +"Inquisitors Girandole":[208, 31], +"Godskin Apostle Robe":[164, 239], +"Clarifying Cured Meat":[106, 4], +"Perfumer Tricia +6":[174, 79], +"Spiked Spear":[224, 70], +"Godskin Apostle Bracelets":[8, 240], +"Dappled Cured Meat":[116, 4], +"Perfumer Tricia +7":[175, 79], +"Iron Spear":[240, 109], +"Godskin Apostle Trousers":[108, 240], +"Spellproof Dried Liver":[126, 4], +"Perfumer Tricia +8":[176, 79], +"Rotten Crystal Spear":[0, 149], +"Godskin Noble Hood":[80, 22], +"Fireproof Dried Liver":[136, 4], +"Perfumer Tricia +9":[177, 79], +"Silurias Tree":[96, 180], +"Godskin Noble Robe":[180, 22], +"Lightningproof Dried Liver":[146, 4], +"Perfumer Tricia +10":[178, 79], +"Serpent-Hunter":[112, 219], +"Godskin Noble Bracelets":[24, 23], +"Holyproof Dried Liver":[156, 4], +"Glintstone Sorcerer Ashes":[144, 83], +"Vykes War Spear":[144, 41], +"Godskin Noble Trousers":[124, 23], +"Silver-Pickled Fowl Foot":[166, 4], +"Glintstone Sorcerer Ashes +1":[145, 83], +"Lance":[160, 80], +"10083D60":[14, 0], +"Depraved Perfumer Headscarf":[96, 61], +"Gold-Pickled Fowl Foot":[176, 4], +"Glintstone Sorcerer Ashes +2":[146, 83], +"Bloody Lance":[236, 84], +"Depraved Perfumer Robe":[196, 61], +"Exalted Flesh":[186, 4], +"Glintstone Sorcerer Ashes +3":[147, 83], +"Treespear":[176, 119], +"Depraved Perfumer Gloves":[40, 62], +"Deathsbane Jerky":[196, 4], +"Glintstone Sorcerer Ashes +4":[148, 83], +"Halberd":[128, 168], +"Depraved Perfumer Trousers":[140, 62], +"Raw Meat Dumpling":[211, 4], +"Glintstone Sorcerer Ashes +5":[149, 83], +"Pests Glaive":[144, 207], +"Depraved Perfumer Robe (Altered)":[172, 65], +"Shabriri Grape":[216, 4], +"Glintstone Sorcerer Ashes +6":[150, 83], +"Lucerne":[160, 246], +"Crucible Axe Helm":[144, 178], +"Starlight Shards":[10, 5], +"Glintstone Sorcerer Ashes +7":[151, 83], +"Banished Knights Halberd":[176, 29], +"Crucible Axe Armor":[244, 178], +"Immunizing White Cured Meat":[30, 5], +"Glintstone Sorcerer Ashes +8":[152, 83], +"Commanders Standard":[192, 68], +"Crucible Gauntlets":[88, 179], +"Invigorating White Cured Meat":[40, 5], +"Glintstone Sorcerer Ashes +9":[153, 83], +"Nightrider Glaive":[208, 107], +"Crucible Greaves":[188, 179], +"Clarifying White Cured Meat":[50, 5], +"Glintstone Sorcerer Ashes +10":[154, 83], +"Ripple Crescent Halberd":[224, 146], +"Crucible Tree Helm":[120, 182], +"Dappled White Cured Meat":[60, 5], +"Twinsage Sorcerer Ashes":[120, 87], +"Vulgar Militia Saw":[240, 185], +"Crucible Tree Armor":[220, 182], +"Deathsbane White Jerky":[70, 5], +"Twinsage Sorcerer Ashes +1":[121, 87], +"Golden Halberd":[0, 225], +"Crucible Axe Armor (Altered)":[196, 186], +"Fire Grease":[120, 5], +"Twinsage Sorcerer Ashes +2":[122, 87], +"Glaive":[16, 8], +"Crucible Tree Armor (Altered)":[172, 190], +"Lightning Grease":[130, 5], +"Twinsage Sorcerer Ashes +3":[123, 87], +"Lorettas War Sickle":[32, 47], +"Lusats Glintstone Crown":[160, 217], +"Magic Grease":[140, 5], +"Twinsage Sorcerer Ashes +4":[124, 87], +"Guardians Swordspear":[48, 86], +"Lusats Robe":[4, 218], +"Holy Grease":[150, 5], +"Twinsage Sorcerer Ashes +5":[125, 87], +"Vulgar Militia Shotel":[80, 164], +"Lusats Manchettes":[104, 218], +"Blood Grease":[160, 5], +"Twinsage Sorcerer Ashes +6":[126, 87], +"Dragon Halberd":[96, 203], +"Old Sorcerers Legwraps":[204, 218], +"Soporific Grease":[170, 5], +"Twinsage Sorcerer Ashes +7":[127, 87], +"Gargoyles Halberd":[112, 242], +"Azurs Glintstone Crown":[136, 221], +"Poison Grease":[180, 5], +"Twinsage Sorcerer Ashes +8":[128, 87], +"Gargoyles Black Halberd":[128, 25], +"Azurs Glintstone Robe":[236, 221], +"Freezing Grease":[190, 5], +"Twinsage Sorcerer Ashes +9":[129, 87], +"Scythe":[192, 234], +"Azurs Manchettes":[80, 222], +"Dragonwound Grease":[200, 5], +"Twinsage Sorcerer Ashes +10":[130, 87], +"Grave Scythe":[208, 17], +"All-Knowing Helm":[176, 0], +"Rot Grease":[210, 5], +"Page Ashes":[96, 91], +"Halo Scythe":[224, 56], +"All-Knowing Armor":[20, 1], +"Drawstring Fire Grease":[220, 5], +"Page Ashes +1":[97, 91], +"Winged Scythe":[32, 213], +"All-Knowing Gauntlets":[120, 1], +"Drawstring Lightning Grease":[230, 5], +"Page Ashes +2":[98, 91], +"Whip":[0, 45], +"All-Knowing Greaves":[220, 1], +"Drawstring Magic Grease":[240, 5], +"Page Ashes +3":[99, 91], +"Thorned Whip":[32, 123], +"All-Knowing Armor (Altered)":[252, 4], +"Drawstring Holy Grease":[250, 5], +"Page Ashes +4":[100, 91], +"Magma Whip Candlestick":[48, 162], +"Twinned Helm":[192, 39], +"Drawstring Blood Grease":[4, 6], +"Page Ashes +5":[101, 91], +"Hoslows Petal Whip":[80, 240], +"Twinned Armor":[36, 40], +"Drawstring Soporific Grease":[14, 6], +"Page Ashes +6":[102, 91], +"Giants Red Braid":[96, 23], +"Twinned Gauntlets":[136, 40], +"Drawstring Poison Grease":[24, 6], +"Page Ashes +7":[103, 91], +"Urumi":[112, 62], +"Twinned Greaves":[236, 40], +"Drawstring Freezing Grease":[34, 6], +"Page Ashes +8":[104, 91], +"Caestus":[64, 111], +"Twinned Armor (Altered)":[12, 44], +"Drawstring Rot Grease":[54, 6], +"Page Ashes +9":[105, 91], +"Spiked Caestus":[80, 150], +"Ragged Hat":[208, 78], +"Shield Grease":[154, 6], +"Page Ashes +10":[106, 91], +"Grafted Dragon":[160, 89], +"Ragged Armor":[52, 79], +"Throwing Dagger":[164, 6], +"Battlemage Hugues":[72, 95], +"Iron Ball":[176, 128], +"Ragged Gloves":[152, 79], +"Bone Dart":[174, 6], +"Battlemage Hugues +1":[73, 95], +"Star Fist":[192, 167], +"Ragged Loincloth":[252, 79], +"Poisonbone Dart":[184, 6], +"Battlemage Hugues +2":[74, 95], +"Katar":[224, 245], +"Ragged Hat (Altered)":[184, 82], +"Kukri":[194, 6], +"Battlemage Hugues +3":[75, 95], +"Clinging Bone":[240, 28], +"Ragged Armor (Altered)":[28, 83], +"Crystal Dart":[204, 6], +"Battlemage Hugues +4":[76, 95], +"Veterans Prosthesis":[0, 68], +"Prophet Blindfold":[224, 117], +"Fan Daggers":[214, 6], +"Battlemage Hugues +5":[77, 95], +"Cipher Pata":[16, 107], +"Corhyns Robe":[68, 118], +"Ruin Fragment":[224, 6], +"Battlemage Hugues +6":[78, 95], +"Hookclaws":[128, 177], +"Prophet Trousers":[12, 119], +"Explosive Stone":[38, 7], +"Battlemage Hugues +7":[79, 95], +"Venomous Fang":[144, 216], +"Prophet Robe (Altered)":[44, 122], +"Explosive Stone Clump":[39, 7], +"Battlemage Hugues +8":[80, 95], +"Bloodhound Claws":[160, 255], +"Prophet Robe":[20, 126], +"Poisoned Stone":[48, 7], +"Battlemage Hugues +9":[81, 95], +"Raptor Talons":[176, 38], +"Astrologer Hood":[240, 156], +"Poisoned Stone Clump":[49, 7], +"Battlemage Hugues +10":[82, 95], +"Prelates Inferno Crozier":[192, 243], +"Astrologer Robe":[84, 157], +"Rainbow Stone":[228, 7], +"Clayman Ashes":[48, 99], +"Watchdogs Staff":[208, 26], +"Astrologer Gloves":[184, 157], +"Glowstone":[238, 7], +"Clayman Ashes +1":[49, 99], +"Great Club":[224, 65], +"Astrologer Trousers":[28, 158], +"Telescope":[248, 7], +"Clayman Ashes +2":[50, 99], +"Envoys Greathorn":[240, 104], +"Astrologer Robe (Altered)":[60, 161], +"Grace Mimic":[2, 8], +"Clayman Ashes +3":[51, 99], +"Duelist Greataxe":[0, 144], +"Lionels Helm":[0, 196], +"Lantern":[22, 8], +"Clayman Ashes +4":[52, 99], +"Axe of Godfrey":[16, 183], +"Lionels Armor":[100, 196], +"Blasphemous Claw":[32, 8], +"Clayman Ashes +5":[53, 99], +"Dragon Greatclaw":[32, 222], +"Lionels Gauntlets":[200, 196], +"Deathroot":[42, 8], +"Clayman Ashes +6":[54, 99], +"Staff of the Avatar":[48, 5], +"Lionels Greaves":[44, 197], +"Soft Cotton":[52, 8], +"Clayman Ashes +7":[55, 99], +"Fallingstar Beast Jaw":[64, 44], +"Lionels Armor (Altered)":[76, 200], +"Soap":[72, 8], +"Clayman Ashes +8":[56, 99], +"Ghizas Wheel":[96, 122], +"Hoslows Helm":[16, 235], +"Celestial Dew":[82, 8], +"Clayman Ashes +9":[57, 99], +"Giant-Crusher":[112, 161], +"Hoslows Armor":[116, 235], +"Margits Shackle":[92, 8], +"Clayman Ashes +10":[58, 99], +"Golems Halberd":[128, 200], +"Hoslows Gauntlets":[216, 235], +"Mohgs Shackle":[102, 8], +"Cleanrot Knight Finlay":[24, 103], +"Trolls Hammer":[144, 239], +"Hoslows Greaves":[60, 236], +"Pureblood Knights Medal":[112, 8], +"Cleanrot Knight Finlay +1":[25, 103], +"Rotten Staff":[160, 22], +"Dialloss Mask":[248, 238], +"Miquellas Needle":[142, 8], +"Cleanrot Knight Finlay +2":[26, 103], +"Rotten Greataxe":[176, 61], +"Hoslows Armor (Altered)":[68, 243], +"Prattling Pate Hello":[152, 8], +"Cleanrot Knight Finlay +3":[27, 103], +"Torch":[0, 54], +"Vagabond Knight Helm":[32, 18], +"Prattling Pate Thank you":[153, 8], +"Cleanrot Knight Finlay +4":[28, 103], +"Steel-Wire Torch":[32, 132], +"Vagabond Knight Armor":[132, 18], +"Prattling Pate Apologies":[154, 8], +"Cleanrot Knight Finlay +5":[29, 103], +"St. Trinas Torch":[64, 210], +"Vagabond Knight Gauntlets":[232, 18], +"Prattling Pate Wonderful":[155, 8], +"Cleanrot Knight Finlay +6":[30, 103], +"Ghostflame Torch":[80, 249], +"Vagabond Knight Greaves":[76, 19], +"Prattling Pate Please help":[156, 8], +"Cleanrot Knight Finlay +7":[31, 103], +"Beast-Repellent Torch":[96, 32], +"Vagabond Knight Armor (Altered)":[108, 22], +"Prattling Pate My beloved":[157, 8], +"Cleanrot Knight Finlay +8":[32, 103], +"Sentrys Torch":[112, 71], +"Blue Cloth Cowl":[48, 57], +"Prattling Pate Lets get to it":[158, 8], +"Cleanrot Knight Finlay +9":[33, 103], +"Buckler":[128, 195], +"Blue Cloth Vest":[148, 57], +"Prattling Pate Youre beautiful":[159, 8], +"Cleanrot Knight Finlay +10":[34, 103], +"Bloody Buckler":[204, 199], +"Warrior Gauntlets":[248, 57], +"Golden Rune :[1]":[84, 11], +"Kindred of Rot Ashes":[0, 107], +"Perfumers Shield":[144, 234], +"Warrior Greaves":[92, 58], +"Golden Rune :[2]":[85, 11], +"Kindred of Rot Ashes +1":[1, 107], +"Man-Serpents Shield":[160, 17], +"White Mask":[64, 96], +"Golden Rune :[3]":[86, 11], +"Kindred of Rot Ashes +2":[2, 107], +"Rickety Shield":[176, 56], +"War Surgeon Gown":[164, 96], +"Golden Rune :[4]":[87, 11], +"Kindred of Rot Ashes +3":[3, 107], +"Bloody Rickety Shield":[252, 60], +"War Surgeon Gloves":[8, 97], +"Golden Rune :[5]":[88, 11], +"Kindred of Rot Ashes +4":[4, 107], +"Pillory Shield":[192, 95], +"War Surgeon Trousers":[108, 97], +"Golden Rune :[6]":[89, 11], +"Kindred of Rot Ashes +5":[5, 107], +"Beastmans Jar-Shield":[224, 173], +"War Surgeon Gown (Altered)":[140, 100], +"Golden Rune :[7]":[90, 11], +"Kindred of Rot Ashes +6":[6, 107], +"Red Thorn Roundshield":[240, 212], +"Royal Remains Helm":[80, 135], +"Golden Rune :[8]":[91, 11], +"Kindred of Rot Ashes +7":[7, 107], +"Bloody Red Thorn Roundshield":[60, 217], +"Royal Remains Armor":[180, 135], +"Golden Rune :[9]":[92, 11], +"Kindred of Rot Ashes +8":[8, 107], +"Scripture Wooden Shield":[0, 252], +"Royal Remains Gauntlets":[24, 136], +"Golden Rune :[10]":[93, 11], +"Kindred of Rot Ashes +9":[9, 107], +"Riveted Wooden Shield":[16, 35], +"Royal Remains Greaves":[124, 136], +"Golden Rune :[11]":[94, 11], +"Kindred of Rot Ashes +10":[10, 107], +"Blue-White Wooden Shield":[32, 74], +"Braves Cord Circlet":[96, 174], +"Golden Rune :[12]":[95, 11], +"Marionette Soldier Ashes":[232, 110], +"Rift Shield":[48, 113], +"Braves Battlewear":[196, 174], +"Golden Rune :[13]":[96, 11], +"Marionette Soldier Ashes +1":[233, 110], +"Iron Roundshield":[64, 152], +"Braves Bracer":[40, 175], +"Numens Rune":[97, 11], +"Marionette Soldier Ashes +2":[234, 110], +"Bloody Iron Roundshield":[140, 156], +"Braves Legwraps":[140, 175], +"Heros Rune :[1]":[98, 11], +"Marionette Soldier Ashes +3":[235, 110], +"Gilded Iron Shield":[80, 191], +"Braves Leather Helm":[72, 178], +"Heros Rune :[2]":[99, 11], +"Marionette Soldier Ashes +4":[236, 110], +"Ice Crest Shield":[96, 230], +"Braves Battlewear (Altered)":[48, 182], +"Heros Rune :[3]":[100, 11], +"Marionette Soldier Ashes +5":[237, 110], +"Smoldering Shield":[112, 13], +"Beast Champion Helm":[128, 252], +"Heros Rune :[4]":[101, 11], +"Marionette Soldier Ashes +6":[238, 110], +"Spiralhorn Shield":[176, 169], +"Beast Champion Armor":[228, 252], +"Heros Rune :[5]":[102, 11], +"Marionette Soldier Ashes +7":[239, 110], +"Coil Shield":[192, 208], +"Beast Champion Gauntlets":[72, 253], +"Lords Rune":[103, 11], +"Marionette Soldier Ashes +8":[240, 110], +"Kite Shield":[192, 5], +"Beast Champion Greaves":[172, 253], +"Remembrance of the Grafted":[134, 11], +"Marionette Soldier Ashes +9":[241, 110], +"Marred Leather Shield":[208, 44], +"Beast Champion Armor (Altered)":[204, 0], +"Remembrance of the Starscourge":[135, 11], +"Marionette Soldier Ashes +10":[242, 110], +"Marred Wooden Shield":[224, 83], +"Champion Headband":[144, 35], +"Remembrance of the Omen King":[136, 11], +"Avionette Soldier Ashes":[208, 114], +"Banished Knights Shield":[240, 122], +"Champion Pauldron":[244, 35], +"Remembrance of the Blasphemous":[137, 11], +"Avionette Soldier Ashes +1":[209, 114], +"Albinauric Shield":[0, 162], +"Champion Bracers":[88, 36], +"Remembrance of the Rot Goddess":[138, 11], +"Avionette Soldier Ashes +2":[210, 114], +"Sun Realm Shield":[16, 201], +"Champion Gaiters":[188, 36], +"Remembrance of the Blood Lord":[139, 11], +"Avionette Soldier Ashes +3":[211, 114], +"Silver Mirrorshield":[32, 240], +"Crimson Hood":[160, 74], +"Remembrance of the Black Blade":[140, 11], +"Avionette Soldier Ashes +4":[212, 114], +"Round Shield":[48, 23], +"Nobles Traveling Garb":[4, 75], +"Remembrance of Hoarah Loux":[141, 11], +"Avionette Soldier Ashes +5":[213, 114], +"Scorpion Kite Shield":[64, 62], +"Nobles Gloves":[104, 75], +"Remembrance of the Dragonlord":[142, 11], +"Avionette Soldier Ashes +6":[214, 114], +"Twinbird Kite Shield":[80, 101], +"Nobles Trousers":[204, 75], +"Remembrance of the Full Moon Queen":[143, 11], +"Avionette Soldier Ashes +7":[215, 114], +"Blue-Gold Kite Shield":[96, 140], +"Navy Hood":[136, 78], +"Remembrance of the Lichdragon":[144, 11], +"Avionette Soldier Ashes +8":[216, 114], +"Brass Shield":[144, 1], +"Malikeths Helm":[192, 152], +"Remembrance of the Fire Giant":[145, 11], +"Avionette Soldier Ashes +9":[217, 114], +"Great Turtle Shell":[160, 40], +"Malikeths Armor":[36, 153], +"Remembrance of the Regal Ancestor":[146, 11], +"Avionette Soldier Ashes +10":[218, 114], +"Shield of the Guilty":[208, 157], +"Malikeths Gauntlets":[136, 153], +"Elden Remembrance":[147, 11], +"Fire Monk Ashes":[184, 118], +"Carian Knights Shield":[240, 235], +"Malikeths Greaves":[236, 153], +"Remembrance of the Naturalborn":[148, 11], +"Fire Monk Ashes +1":[185, 118], +"Carian Knights Bloody Shield":[60, 240], +"Malikeths Armor (Altered)":[12, 157], +"Lands Between Rune":[174, 11], +"Fire Monk Ashes +2":[186, 118], +"Large Leather Shield":[48, 136], +"Malenias Winged Helm":[208, 191], +"Ancestral Infants Head":[184, 11], +"Fire Monk Ashes +3":[187, 118], +"Bloody Large Leather Shield":[124, 140], +"Malenias Armor":[52, 192], +"Omen Bairn":[194, 11], +"Fire Monk Ashes +4":[188, 118], +"Horse Crest Wooden Shield":[64, 175], +"Malenias Gauntlet":[152, 192], +"Regal Omen Bairn":[195, 11], +"Fire Monk Ashes +5":[189, 118], +"Candletree Wooden Shield":[80, 214], +"Malenias Greaves":[252, 192], +"Mirandas Prayer":[204, 11], +"Fire Monk Ashes +6":[190, 118], +"Flame Crest Wooden Shield":[96, 253], +"Malenias Armor (Altered)":[28, 196], +"Cuckoo Glintstone":[214, 11], +"Fire Monk Ashes +7":[191, 118], +"Hawk Crest Wooden Shield":[112, 36], +"Veterans Helm":[224, 230], +"Mimics Veil":[224, 11], +"Fire Monk Ashes +8":[192, 118], +"Beast Crest Heater Shield":[128, 75], +"Veterans Armor":[68, 231], +"Glintstone Scrap":[234, 11], +"Fire Monk Ashes +9":[193, 118], +"Red Crest Heater Shield":[144, 114], +"Veterans Gauntlets":[168, 231], +"Large Glintstone Scrap":[235, 11], +"Fire Monk Ashes +10":[194, 118], +"Blue Crest Heater Shield":[160, 153], +"Veterans Greaves":[12, 232], +"Gravity Stone Fan":[244, 11], +"Blackflame Monk Amon":[160, 122], +"Eclipse Crest Heater Shield":[176, 192], +"Veterans Armor (Altered)":[44, 235], +"Gravity Stone Chunk":[254, 11], +"Blackflame Monk Amon +1":[161, 122], +"Inverted Hawk Heater Shield":[192, 231], +"Bloodhound Knight Helm":[240, 13], +"Wraith Calling Bell":[8, 12], +"Blackflame Monk Amon +2":[162, 122], +"Heater Shield":[208, 14], +"Bloodhound Knight Armor":[84, 14], +"Holy Water Grease":[228, 12], +"Blackflame Monk Amon +3":[163, 122], +"Black Leather Shield":[224, 53], +"Bloodhound Knight Gauntlets":[184, 14], +"Warming Stone":[238, 12], +"Blackflame Monk Amon +4":[164, 122], +"Dragon Towershield":[0, 72], +"Bloodhound Knight Greaves":[28, 15], +"Frenzyflame Stone":[239, 12], +"Blackflame Monk Amon +5":[165, 122], +"Distinguished Greatshield":[32, 150], +"Bloodhound Knight Armor (Altered)":[60, 18], +"Scriptstone":[248, 12], +"Blackflame Monk Amon +6":[166, 122], +"Crucible Hornshield":[48, 189], +"Festive Hood":[0, 53], +"Bewitching Branch":[22, 13], +"Blackflame Monk Amon +7":[167, 122], +"Dragonclaw Shield":[64, 228], +"Festive Garb":[100, 53], +"Baldachins Blessing":[32, 13], +"Blackflame Monk Amon +8":[168, 122], +"Briar Greatshield":[80, 11], +"Festive Hood (Altered)":[232, 56], +"Radiant Baldachins Blessing":[33, 13], +"Blackflame Monk Amon +9":[169, 122], +"Erdtree Greatshield":[128, 128], +"Festive Garb (Altered)":[76, 57], +"Uplifting Aromatic":[172, 13], +"Blackflame Monk Amon +10":[170, 122], +"Golden Beast Crest Shield":[144, 167], +"Blue Festive Hood":[208, 60], +"Spark Aromatic":[182, 13], +"Man-Serpent Ashes":[136, 126], +"Jellyfish Shield":[192, 28], +"Blue Festive Garb":[52, 61], +"Ironjar Aromatic":[192, 13], +"Man-Serpent Ashes +1":[137, 126], +"Fingerprint Stone Shield":[208, 67], +"Commoners Headband":[16, 92], +"Bloodboil Aromatic":[222, 13], +"Man-Serpent Ashes +2":[138, 126], +"Icon Shield":[224, 106], +"Commoners Garb":[116, 92], +"Poison Spraymist":[252, 13], +"Man-Serpent Ashes +3":[139, 126], +"One-Eyed Shield":[240, 145], +"Commoners Shoes":[60, 93], +"Acid Spraymist":[26, 14], +"Man-Serpent Ashes +4":[140, 126], +"Visage Shield":[0, 185], +"Commoners Headband (Altered)":[248, 95], +"Stonesword Key":[64, 31], +"Man-Serpent Ashes +5":[141, 126], +"Spiked Palisade Shield":[16, 224], +"Commoners Garb (Altered)":[92, 96], +"Rusty Key":[74, 31], +"Man-Serpent Ashes +6":[142, 126], +"Manor Towershield":[48, 46], +"Commoners Simple Garb":[224, 99], +"Lucent Baldachins Blessing":[166, 31], +"Man-Serpent Ashes +7":[143, 126], +"Crossed-Tree Towershield":[64, 85], +"Commoners Simple Garb (Altered)":[68, 100], +"Dectus Medallion (Left)":[169, 31], +"Man-Serpent Ashes +8":[144, 126], +"Inverted Hawk Towershield":[80, 124], +"Envoy Crown":[32, 131], +"Dectus Medallion (Right)":[170, 31], +"Man-Serpent Ashes +9":[145, 126], +"Ants Skull Plate":[96, 163], +"Twinsage Glintstone Crown":[48, 170], +"Rold Medallion":[171, 31], +"Man-Serpent Ashes +10":[146, 126], +"Redmane Greatshield":[112, 202], +"Raya Lucarian Robe":[148, 170], +"Academy Glintstone Key":[173, 31], +"Azula Beastman Ashes":[112, 130], +"Eclipse Crest Greatshield":[128, 241], +"Sorcerer Manchettes":[248, 170], +"Carian Inverted Statue":[175, 31], +"Azula Beastman Ashes +1":[113, 130], +"Cuckoo Greatshield":[144, 24], +"Sorcerer Leggings":[92, 171], +"Dark Moon Ring":[185, 31], +"Azula Beastman Ashes +2":[114, 130], +"Golden Greatshield":[160, 63], +"Olivinus Glintstone Crown":[24, 174], +"Fingerprint Grape":[190, 31], +"Azula Beastman Ashes +3":[115, 130], +"Gilded Greatshield":[176, 102], +"Lazuli Glintstone Crown":[0, 178], +"Letter from Volcano Manor":[191, 31], +"Azula Beastman Ashes +4":[116, 130], +"Haligtree Crest Greatshield":[192, 141], +"Karolos Glintstone Crown":[232, 181], +"Tonic of Forgetfulness":[192, 31], +"Azula Beastman Ashes +5":[117, 130], +"Wooden Greatshield":[208, 180], +"Witchs Glintstone Crown":[208, 185], +"Serpents Amnion":[193, 31], +"Azula Beastman Ashes +6":[118, 130], +"Lordsworns Shield":[224, 219], +"Marionette Soldier Helm":[64, 209], +"Ryas Necklace":[194, 31], +"Azula Beastman Ashes +7":[119, 130], +"Glintstone Staff":[64, 138], +"Marionette Soldier Armor":[164, 209], +"Irinas Letter":[195, 31], +"Azula Beastman Ashes +8":[120, 130], +"Crystal Staff":[128, 38], +"Marionette Soldier Birdhelm":[80, 248], +"Letter from Volcano Manor":[196, 31], +"Azula Beastman Ashes +9":[121, 130], +"Gelmir Glintstone Staff":[144, 77], +"Raging Wolf Helm":[96, 31], +"Red Letter":[197, 31], +"Azula Beastman Ashes +10":[122, 130], +"Demi-Human Queens Staff":[160, 116], +"Raging Wolf Armor":[196, 31], +"Drawing-Room Key":[198, 31], +"Kaiden Sellsword Ashes":[88, 134], +"Carian Regal Scepter":[208, 233], +"Raging Wolf Gauntlets":[40, 32], +"Ryas Necklace":[200, 31], +"Kaiden Sellsword Ashes +1":[89, 134], +"Diggers Staff":[0, 95], +"Raging Wolf Greaves":[140, 32], +"Volcano Manor Invitation":[201, 31], +"Kaiden Sellsword Ashes +2":[90, 134], +"Astrologers Staff":[16, 134], +"Raging Wolf Armor (Altered)":[172, 35], +"Amber Starlight":[206, 31], +"Kaiden Sellsword Ashes +3":[91, 134], +"Carian Glintblade Staff":[80, 34], +"Land of Reeds Helm":[112, 70], +"Seluviss Introduction":[207, 31], +"Kaiden Sellsword Ashes +4":[92, 134], +"Prince of Deaths Staff":[96, 73], +"Land of Reeds Armor":[212, 70], +"Sellens Primal Glintstone":[208, 31], +"Kaiden Sellsword Ashes +5":[93, 134], +"Albinauric Staff":[112, 112], +"Land of Reeds Gauntlets":[56, 71], +"Miniature Ranni":[210, 31], +"Kaiden Sellsword Ashes +6":[94, 134], +"Academy Glintstone Staff":[128, 151], +"Land of Reeds Greaves":[156, 71], +"Asimi, Silver Tear":[211, 31], +"Kaiden Sellsword Ashes +7":[95, 134], +"Carian Glintstone Staff":[144, 190], +"Land of Reeds Armor (Altered)":[188, 74], +"Godricks Great Rune":[212, 31], +"Kaiden Sellsword Ashes +8":[96, 134], +"Azurs Glintstone Staff":[176, 12], +"Okina Mask":[64, 78], +"Radahns Great Rune":[213, 31], +"Kaiden Sellsword Ashes +9":[97, 134], +"Lusats Glintstone Staff":[192, 51], +"White Reed Armor":[164, 78], +"Morgotts Great Rune":[214, 31], +"Kaiden Sellsword Ashes +10":[98, 134], +"Meteorite Staff":[208, 90], +"White Reed Gauntlets":[8, 79], +"Rykards Great Rune":[215, 31], +"Lone Wolf Ashes":[64, 138], +"Staff of the Guilty":[224, 129], +"White Reed Greaves":[108, 79], +"Mohgs Great Rune":[216, 31], +"Lone Wolf Ashes +1":[65, 138], +"Rotten Crystal Staff":[240, 168], +"Confessor Hood":[128, 109], +"Malenias Great Rune":[217, 31], +"Lone Wolf Ashes +2":[66, 138], +"Staff of Loss":[0, 208], +"Confessor Armor":[228, 109], +"Lord of Bloods Favor":[218, 31], +"Lone Wolf Ashes +3":[67, 138], +"Finger Seal":[128, 204], +"Confessor Gloves":[72, 110], +"Lord of Bloods Favor":[219, 31], +"Lone Wolf Ashes +4":[68, 138], +"Godslayers Seal":[144, 243], +"Confessor Boots":[172, 110], +"Burial Crows Letter":[220, 31], +"Lone Wolf Ashes +5":[69, 138], +"Giants Seal":[160, 26], +"Confessor Hood (Altered)":[104, 113], +"Spirit Calling Bell":[222, 31], +"Lone Wolf Ashes +6":[70, 138], +"Gravel Stone Seal":[176, 65], +"Confessor Armor (Altered)":[204, 113], +"Fingerslayer Blade":[223, 31], +"Lone Wolf Ashes +7":[71, 138], +"Clawmark Seal":[192, 104], +"Prisoner Iron Mask":[144, 148], +"Sewing Needle":[225, 31], +"Lone Wolf Ashes +8":[72, 138], +"Golden Order Seal":[224, 182], +"Prisoner Clothing":[244, 148], +"Gold Sewing Needle":[226, 31], +"Lone Wolf Ashes +9":[73, 138], +"Erdtree Seal":[240, 221], +"Prisoner Trousers":[188, 149], +"Tailoring Tools":[227, 31], +"Lone Wolf Ashes +10":[74, 138], +"Dragon Communion Seal":[0, 5], +"Blackguards Iron Mask":[120, 152], +"Seluviss Potion":[228, 31], +"Giant Rat Ashes":[40, 142], +"Frenzied Flame Seal":[16, 44], +"Traveling Maiden Hood":[160, 187], +"Giant Rat Ashes +1":[41, 142], +"Shortbow":[0, 90], +"Traveling Maiden Robe":[4, 188], +"Amber Draught":[230, 31], +"Giant Rat Ashes +2":[42, 142], +"Misbegotten Shortbow":[16, 129], +"Traveling Maiden Gloves":[104, 188], +"Letter to Patches":[231, 31], +"Giant Rat Ashes +3":[43, 142], +"Red Branch Shortbow":[32, 168], +"Traveling Maiden Boots":[204, 188], +"Dancers Castanets":[232, 31], +"Giant Rat Ashes +4":[44, 142], +"Harp Bow":[48, 207], +"Traveling Maiden Robe (Altered)":[236, 191], +"Sellian Sealbreaker":[233, 31], +"Giant Rat Ashes +5":[45, 142], +"Composite Bow":[80, 29], +"Finger Maiden Fillet":[112, 195], +"Chrysalids Memento":[235, 31], +"Giant Rat Ashes +6":[46, 142], +"Longbow":[64, 156], +"Finger Maiden Robe":[212, 195], +"Black Knifeprint":[236, 31], +"Giant Rat Ashes +7":[47, 142], +"Albinauric Bow":[80, 195], +"Finger Maiden Shoes":[156, 196], +"Letter to Bernahl":[237, 31], +"Giant Rat Ashes +8":[48, 142], +"Horn Bow":[96, 234], +"Finger Maiden Robe (Altered)":[188, 199], +"Academy Glintstone Key":[238, 31], +"Giant Rat Ashes +9":[49, 142], +"Erdtree Bow":[112, 17], +"Preceptors Big Hat":[176, 226], +"Haligtree Secret Medallion (Left)":[239, 31], +"Giant Rat Ashes +10":[50, 142], +"Serpent Bow":[128, 56], +"Preceptors Long Gown":[20, 227], +"Haligtree Secret Medallion (Right)":[240, 31], +"Demi-Human Ashes":[16, 146], +"Pulley Bow":[160, 134], +"Preceptors Gloves":[120, 227], +"Burial Crows Letter":[245, 31], +"Demi-Human Ashes +1":[17, 146], +"Black Bow":[176, 173], +"Preceptors Trousers":[220, 227], +"Mending Rune of Perfect Order":[246, 31], +"Demi-Human Ashes +2":[18, 146], +"Lion Greatbow":[128, 222], +"Mask of Confidence":[152, 230], +"Mending Rune of the Death-Prince":[247, 31], +"Demi-Human Ashes +3":[19, 146], +"Golem Greatbow":[144, 5], +"Preceptors Long Gown (Altered)":[252, 230], +"Mending Rune of the Fell Curse":[248, 31], +"Demi-Human Ashes +4":[20, 146], +"Erdtree Greatbow":[176, 83], +"Grass Hair Ornament":[192, 9], +"Larval Tear":[249, 31], +"Demi-Human Ashes +5":[21, 146], +"Greatbow":[192, 122], +"Skeletal Mask":[208, 48], +"Imbued Sword Key":[250, 31], +"Demi-Human Ashes +6":[22, 146], +"Soldiers Crossbow":[192, 32], +"Raptors Black Feathers":[52, 49], +"Miniature Ranni":[251, 31], +"Demi-Human Ashes +7":[23, 146], +"Light Crossbow":[224, 110], +"Bandit Manchettes":[152, 49], +"Golden Tailoring Tools":[252, 31], +"Demi-Human Ashes +8":[24, 146], +"Heavy Crossbow":[240, 149], +"Bandit Boots":[252, 49], +"Ijis Confession":[253, 31], +"Demi-Human Ashes +9":[25, 146], +"Pulley Crossbow":[16, 228], +"Bandit Garb":[28, 53], +"Knifeprint Clue":[254, 31], +"Demi-Human Ashes +10":[26, 146], +"Full Moon Crossbow":[32, 11], +"Eccentrics Hood":[224, 87], +"Cursemark of Death":[255, 31], +"Rotten Stray Ashes":[248, 149], +"Arbalest":[64, 89], +"Eccentrics Armor":[68, 88], +"Asimis Husk":[0, 32], +"Rotten Stray Ashes +1":[249, 149], +"Crepuss Black-Key Crossbow":[112, 206], +"Eccentrics Manchettes":[168, 88], +"Seedbed Curse":[1, 32], +"Rotten Stray Ashes +2":[250, 149], +"Hand Ballista":[0, 99], +"Eccentrics Breeches":[12, 89], +"The Stormhawk King":[2, 32], +"Rotten Stray Ashes +3":[251, 149], +"Jar Cannon":[16, 138], +"Eccentrics Hood (Altered)":[200, 91], +"Asimi, Silver Chrysalid":[3, 32], +"Rotten Stray Ashes +4":[252, 149], +"Arrow":[128, 240], +"Fingerprint Helm":[240, 126], +"Unalloyed Gold Needle":[4, 32], +"Rotten Stray Ashes +5":[253, 149], +"Serpent Arrow":[160, 62], +"Fingerprint Armor":[84, 127], +"Sewer-Gaol Key":[5, 32], +"Rotten Stray Ashes +6":[254, 149], +"Bone Arrow (Fletched)":[176, 101], +"Fingerprint Gauntlets":[184, 127], +"Meeting Place Map":[6, 32], +"Rotten Stray Ashes +7":[255, 149], +"St. Trinas Arrow":[192, 140], +"Fingerprint Greaves":[28, 128], +"Discarded Palace Key":[7, 32], +"Rotten Stray Ashes +8":[0, 150], +"Shattershard Arrow (Fletched)":[224, 218], +"Fingerprint Armor (Altered)":[60, 131], +"Homing Instinct Painting":[8, 32], +"Rotten Stray Ashes +9":[1, 150], +"Rainbow Stone Arrow (Fletched)":[0, 41], +"Consorts Mask":[0, 166], +"Resurrection Painting":[9, 32], +"Rotten Stray Ashes +10":[2, 150], +"Golden Arrow":[16, 80], +"Consorts Robe":[100, 166], +"Champions Song Painting":[10, 32], +"Spirit Jellyfish Ashes":[224, 153], +"Dwelling Arrow":[32, 119], +"Consorts Trousers":[44, 167], +"Sorcerer Painting":[11, 32], +"Spirit Jellyfish Ashes +1":[225, 153], +"Bone Arrow":[48, 158], +"Rulers Mask":[232, 169], +"Prophecy Painting":[12, 32], +"Spirit Jellyfish Ashes +2":[226, 153], +"Firebone Arrow (Fletched)":[80, 236], +"Rulers Robe":[76, 170], +"Flightless Bird Painting":[13, 32], +"Spirit Jellyfish Ashes +3":[227, 153], +"Firebone Arrow":[96, 19], +"Upper-Class Robe":[52, 174], +"Redmane Painting":[14, 32], +"Spirit Jellyfish Ashes +4":[228, 153], +"Poisonbone Arrow (Fletched)":[112, 58], +"Marais Mask":[184, 177], +"Zorayass Letter":[29, 32], +"Spirit Jellyfish Ashes +5":[229, 153], +"Poisonbone Arrow":[128, 97], +"Marais Robe":[28, 178], +"Alexanders Innards":[30, 32], +"Spirit Jellyfish Ashes +6":[230, 153], +"Sleepbone Arrow (Fletched)":[144, 136], +"Bloodsoaked Manchettes":[128, 178], +"Rogiers Letter":[31, 32], +"Spirit Jellyfish Ashes +7":[231, 153], +"Sleepbone Arrow":[160, 175], +"Bloodsoaked Mask":[160, 181], +"Crafting Kit":[52, 33], +"Spirit Jellyfish Ashes +8":[232, 153], +"Stormwing Bone Arrow":[176, 214], +"Officials Attire":[4, 182], +"Whetstone Knife":[142, 33], +"Spirit Jellyfish Ashes +9":[233, 153], +"Lightningbone Arrow (Fletched)":[192, 253], +"Omen Helm":[16, 205], +"Map: Limgrave, West":[152, 33], +"Spirit Jellyfish Ashes +10":[234, 153], +"Lightningbone Arrow":[208, 36], +"Omen Armor":[116, 205], +"Map: Weeping Peninsula":[153, 33], +"Warhawk Ashes":[200, 157], +"Rainbow Stone Arrow":[224, 75], +"Omen Gauntlets":[216, 205], +"Map: Limgrave, East":[154, 33], +"Warhawk Ashes +1":[201, 157], +"Shattershard Arrow":[240, 114], +"Omen Greaves":[60, 206], +"Map: Liurnia, East":[155, 33], +"Warhawk Ashes +2":[202, 157], +"Spiritflame Arrow":[0, 154], +"Carian Knight Helm":[32, 244], +"Map: Liurnia, North":[156, 33], +"Warhawk Ashes +3":[203, 157], +"Magicbone Arrow (Fletched)":[32, 232], +"Carian Knight Armor":[132, 244], +"Map: Liurnia, West":[157, 33], +"Warhawk Ashes +4":[204, 157], +"Magicbone Arrow":[48, 15], +"Carian Knight Gauntlets":[232, 244], +"Map: Altus Plateau":[158, 33], +"Warhawk Ashes +5":[205, 157], +"Haligbone Arrow (Fletched)":[64, 54], +"Carian Knight Greaves":[76, 245], +"Map: Leyndell, Royal Capital":[159, 33], +"Warhawk Ashes +6":[206, 157], +"Haligbone Arrow":[80, 93], +"Carian Knight Armor (Altered)":[108, 248], +"Map: Mt. Gelmir":[160, 33], +"Warhawk Ashes +7":[207, 157], +"Bloodbone Arrow (Fletched)":[96, 132], +"Hierodas Glintstone Crown":[48, 27], +"Map: Caelid":[161, 33], +"Warhawk Ashes +8":[208, 157], +"Bloodbone Arrow":[112, 171], +"Errant Sorcerer Robe":[148, 27], +"Map: Dragonbarrow":[162, 33], +"Warhawk Ashes +9":[209, 157], +"Coldbone Arrow (Fletched)":[128, 210], +"Errant Sorcerer Manchettes":[248, 27], +"Map: Mountaintops of the Giants, West":[163, 33], +"Warhawk Ashes +10":[210, 157], +"Coldbone Arrow":[144, 249], +"Errant Sorcerer Boots":[92, 28], +"Map: Mountaintops of the Giants, East":[164, 33], +"Stormhawk Deenh":[176, 161], +"Rotbone Arrow (Fletched)":[160, 32], +"Errant Sorcerer Robe (Altered)":[124, 31], +"Map: Ainsel River":[165, 33], +"Stormhawk Deenh +1":[177, 161], +"Rotbone Arrow":[176, 71], +"Haima Glintstone Crown":[64, 66], +"Map: Lake of Rot":[166, 33], +"Stormhawk Deenh +2":[178, 161], +"Great Arrow":[192, 50], +"Battlemage Robe":[164, 66], +"Map: Siofra River":[167, 33], +"Stormhawk Deenh +3":[179, 161], +"Golems Great Arrow":[125,6], +"Battlemage Manchettes":[8, 67], +"Map: Mohgwyn Palace":[168, 33], +"Stormhawk Deenh +4":[180, 161], +"Golden Great Arrow":[224, 128], +"Battlemage Legwraps":[108, 67], +"Map: Deeproot Depths":[169, 33], +"Stormhawk Deenh +5":[181, 161], +"Radahns Spear":[0, 207], +"Snow Witch Hat":[80, 105], +"Map: Consecrated Snowfield":[170, 33], +"Stormhawk Deenh +6":[182, 161], +"Bone Great Arrow (Fletched)":[16, 246], +"Snow Witch Robe":[180, 105], +"Mirage Riddle":[212, 33], +"Stormhawk Deenh +7":[183, 161], +"Bone Great Arrow":[32, 29], +"Snow Witch Skirt":[124, 106], +"Note: Hidden Cave":[252, 33], +"Stormhawk Deenh +8":[184, 161], +"Bolt":[0, 117], +"Snow Witch Robe (Altered)":[156, 109], +"Note: Imp Shades":[253, 33], +"Stormhawk Deenh +9":[185, 161], +"Perfumers Bolt":[32, 195], +"Travelers Clothes":[196, 144], +"Note: Flask of Wondrous Physick":[254, 33], +"Stormhawk Deenh +10":[186, 161], +"Black-Key Bolt":[48, 234], +"Travelers Manchettes":[40, 145], +"Note: Stonedigger Trolls":[255, 33], +"Bloodhound Knight Floh":[152, 165], +"Burred Bolt":[64, 17], +"Travelers Boots":[140, 145], +"Note: Walking Mausoleum":[0, 34], +"Bloodhound Knight Floh +1":[153, 165], +"Meteor Bolt":[80, 56], +"Juvenile Scholar Cap":[112, 183], +"Note: Unseen Assassins":[1, 34], +"Bloodhound Knight Floh +2":[154, 165], +"Explosive Bolt":[96, 95], +"Juvenile Scholar Robe":[212, 183], +"Note: Great Coffins":[2, 34], +"Bloodhound Knight Floh +3":[155, 165], +"Golden Bolt":[112, 134], +"Radiant Gold Mask":[128, 222], +"Note: Flame Chariots":[3, 34], +"Bloodhound Knight Floh +4":[156, 165], +"Lordsworns Bolt":[128, 173], +"Goldmasks Rags":[228, 222], +"Note: Demi-human Mobs":[4, 34], +"Bloodhound Knight Floh +5":[157, 165], +"Bone Bolt":[144, 212], +"Gold Bracelets":[72, 223], +"Note: Land Squirts":[5, 34], +"Bloodhound Knight Floh +6":[158, 165], +"Firebone Bolt":[160, 251], +"Gold Waistwrap":[172, 223], +"Note: Gravitys Advantage":[6, 34], +"Bloodhound Knight Floh +7":[159, 165], +"Lightningbone Bolt":[176, 34], +"Fell Omen Cloak":[244, 5], +"Note: Revenants":[7, 34], +"Bloodhound Knight Floh +8":[160, 165], +"Magicbone Bolt":[192, 73], +"Albinauric Mask":[160, 44], +"Note: Waypoint Ruins":[8, 34], +"Bloodhound Knight Floh +9":[161, 165], +"Haligbone Bolt":[208, 112], +"Dirty Chainmail":[4, 45], +"Note: Gateway":[9, 34], +"Bloodhound Knight Floh +10":[162, 165], +"Poisonbone Bolt":[224, 151], +"Zamor Mask":[176, 83], +"Note: Miquellas Needle":[10, 34], +"Wandering Noble Ashes":[128, 169], +"Bloodbone Bolt":[240, 190], +"Zamor Armor":[20, 84], +"Note: Frenzied Flame Village":[11, 34], +"Wandering Noble Ashes +1":[129, 169], +"Coldbone Bolt":[0, 230], +"Zamor Bracelets":[120, 84], +"Note: The Lord of Frenzied Flame":[12, 34], +"Wandering Noble Ashes +2":[130, 169], +"Rotbone Bolt":[16, 13], +"Zamor Legwraps":[220, 84], +"Note: Hidden Cave":[46, 34], +"Wandering Noble Ashes +3":[131, 169], +"Sleepbone Bolt":[32, 52], +"Imp Head (Cat)":[192, 122], +"Note: Imp Shades":[47, 34], +"Wandering Noble Ashes +4":[132, 169], +"Flaming Bolt":[48, 91], +"Imp Head (Fanged)":[168, 126], +"Note: Flask of Wondrous Physick":[48, 34], +"Wandering Noble Ashes +5":[133, 169], +"Ballista Bolt":[64, 183], +"Imp Head (Long-Tongued)":[144, 130], +"Note: Stonedigger Trolls":[49, 34], +"Wandering Noble Ashes +6":[134, 169], +"Explosive Greatbolt":[96, 5], +"Imp Head (Corpse)":[120, 134], +"Note: Walking Mausoleum":[50, 34], +"Wandering Noble Ashes +7":[135, 169], +"Bone Ballista Bolt":[112, 44], +"Imp Head (Wolf)":[96, 138], +"Note: Unseen Assassins":[51, 34], +"Wandering Noble Ashes +8":[136, 169], +"Golems Magic Arrow":[240, 167], +"Imp Head (Elder)":[72, 142], +"Note: Great Coffins":[52, 34], +"Wandering Noble Ashes +9":[137, 169], +"Silver Tear Mask":[208, 161], +"Note: Flame Chariots":[53, 34], +"Wandering Noble Ashes +10":[138, 169], +"Chain Coif":[224, 200], +"Note: Demi-human Mobs":[54, 34], +"Noble Sorcerer Ashes":[104, 173], +"Chain Armor":[68, 201], +"Note: Land Squirts":[55, 34], +"Noble Sorcerer Ashes +1":[105, 173], +"Chain Gauntlets":[168, 201], +"Note: Gravitys Advantage":[56, 34], +"Noble Sorcerer Ashes +2":[106, 173], +"Chain Leggings":[12, 202], +"Note: Revenants":[57, 34], +"Noble Sorcerer Ashes +3":[107, 173], +"Greathelm":[200, 204], +"Note: Waypoint Ruins":[58, 34], +"Noble Sorcerer Ashes +4":[108, 173], +"Eye Surcoat":[44, 205], +"Note: Gateway":[59, 34], +"Noble Sorcerer Ashes +5":[109, 173], +"Tree Surcoat":[20, 209], +"Note: Frenzied Flame Village":[61, 34], +"Noble Sorcerer Ashes +6":[110, 173], +"Octopus Head":[240, 239], +"Conspectus Scroll":[146, 34], +"Noble Sorcerer Ashes +7":[111, 173], +"Jar":[0, 23], +"Royal House Scroll":[147, 34], +"Noble Sorcerer Ashes +8":[112, 173], +"Mushroom Head":[16, 62], +"Noble Sorcerer Ashes +9":[113, 173], +"Mushroom Body":[116, 62], +"Noble Sorcerer Ashes +10":[114, 173], +"Mushroom Arms":[216, 62], +"Vulgar Militia Ashes":[80, 177], +"Mushroom Legs":[60, 63], +"Fire Monks Prayerbook":[151, 34], +"Vulgar Militia Ashes +1":[81, 177], +"Nox Mirrorhelm":[32, 214], +"Giants Prayerbook":[152, 34], +"Vulgar Militia Ashes +2":[82, 177], +"Ijis Mirrorhelm":[8, 218], +"Godskin Prayerbook":[153, 34], +"Vulgar Militia Ashes +3":[83, 177], +"Black Hood":[192, 92], +"Two Fingers Prayerbook":[154, 34], +"Vulgar Militia Ashes +4":[84, 177], +"Leather Armor":[36, 93], +"Assassins Prayerbook":[155, 34], +"Vulgar Militia Ashes +5":[85, 177], +"Leather Gloves":[136, 93], +"Erdtree Prayerbook":[156, 34], +"Vulgar Militia Ashes +6":[86, 177], +"Leather Boots":[236, 93], +"Erdtree Codex":[157, 34], +"Vulgar Militia Ashes +7":[87, 177], +"Bandit Mask":[168, 96], +"Golden Order Principia":[158, 34], +"Vulgar Militia Ashes +8":[88, 177], +"Knight Helm":[96, 227], +"Golden Order Principles":[159, 34], +"Vulgar Militia Ashes +9":[89, 177], +"Knight Armor":[196, 227], +"Dragon Cult Prayerbook":[160, 34], +"Vulgar Militia Ashes +10":[90, 177], +"Knight Gauntlets":[40, 228], +"Ancient Dragon Prayerbook":[161, 34], +"Mad Pumpkin Head Ashes":[56, 181], +"Knight Greaves":[140, 228], +"Academy Scroll":[162, 34], +"Mad Pumpkin Head Ashes +1":[57, 181], +"Greathood":[0, 106], +"Pidias Bell Bearing":[206, 34], +"Mad Pumpkin Head Ashes +2":[58, 181], +"Godrick Soldier Helm":[160, 240], +"Seluviss Bell Bearing":[207, 34], +"Mad Pumpkin Head Ashes +3":[59, 181], +"Tree-and-Beast Surcoat":[4, 241], +"Patches Bell Bearing":[208, 34], +"Mad Pumpkin Head Ashes +4":[60, 181], +"Godrick Soldier Gauntlets":[104, 241], +"Sellens Bell Bearing":[209, 34], +"Mad Pumpkin Head Ashes +5":[61, 181], +"Godrick Soldier Greaves":[204, 241], +"Mad Pumpkin Head Ashes +6":[62, 181], +"Raya Lucarian Helm":[176, 23], +"Ds Bell Bearing":[211, 34], +"Mad Pumpkin Head Ashes +7":[63, 181], +"Cuckoo Surcoat":[20, 24], +"Bernahls Bell Bearing":[212, 34], +"Mad Pumpkin Head Ashes +8":[64, 181], +"Raya Lucarian Gauntlets":[120, 24], +"Miriels Bell Bearing":[213, 34], +"Mad Pumpkin Head Ashes +9":[65, 181], +"Raya Lucarian Greaves":[220, 24], +"Gostocs Bell Bearing":[214, 34], +"Mad Pumpkin Head Ashes +10":[66, 181], +"Leyndell Soldier Helm":[192, 62], +"Thopss Bell Bearing":[215, 34], +"Land Squirt Ashes":[32, 185], +"Erdtree Surcoat":[36, 63], +"Kalés Bell Bearing":[216, 34], +"Land Squirt Ashes +1":[33, 185], +"Leyndell Soldier Gauntlets":[136, 63], +"Nomadic Merchants Bell Bearing :[1]":[217, 34], +"Land Squirt Ashes +2":[34, 185], +"Leyndell Soldier Greaves":[236, 63], +"Nomadic Merchants Bell Bearing :[2]":[218, 34], +"Land Squirt Ashes +3":[35, 185], +"Radahn Soldier Helm":[208, 101], +"Nomadic Merchants Bell Bearing :[3]":[219, 34], +"Land Squirt Ashes +4":[36, 185], +"Redmane Surcoat":[52, 102], +"Nomadic Merchants Bell Bearing :[4]":[220, 34], +"Land Squirt Ashes +5":[37, 185], +"Radahn Soldier Gauntlets":[152, 102], +"Nomadic Merchants Bell Bearing :[5]":[221, 34], +"Land Squirt Ashes +6":[38, 185], +"Radahn Soldier Greaves":[252, 102], +"Isolated Merchants Bell Bearing :[1]":[222, 34], +"Land Squirt Ashes +7":[39, 185], +"Mausoleum Surcoat":[68, 141], +"Isolated Merchants Bell Bearing :[2]":[223, 34], +"Land Squirt Ashes +8":[40, 185], +"Mausoleum Gauntlets":[168, 141], +"Nomadic Merchants Bell Bearing :[6]":[224, 34], +"Land Squirt Ashes +9":[41, 185], +"Mausoleum Greaves":[12, 142], +"Hermit Merchants Bell Bearing :[1]":[225, 34], +"Land Squirt Ashes +10":[42, 185], +"Haligtree Helm":[240, 179], +"Nomadic Merchants Bell Bearing :[7]":[226, 34], +"Miranda Sprout Ashes":[8, 189], +"Haligtree Crest Surcoat":[84, 180], +"Nomadic Merchants Bell Bearing :[8]":[227, 34], +"Miranda Sprout Ashes +1":[9, 189], +"Haligtree Gauntlets":[184, 180], +"Nomadic Merchants Bell Bearing :[9]":[228, 34], +"Miranda Sprout Ashes +2":[10, 189], +"Haligtree Greaves":[28, 181], +"Nomadic Merchants Bell Bearing :[10]":[229, 34], +"Miranda Sprout Ashes +3":[11, 189], +"Gelmir Knight Helm":[0, 219], +"Nomadic Merchants Bell Bearing :[11]":[230, 34], +"Miranda Sprout Ashes +4":[12, 189], +"Gelmir Knight Armor":[100, 219], +"Isolated Merchants Bell Bearing :[3]":[231, 34], +"Miranda Sprout Ashes +5":[13, 189], +"Gelmir Knight Gauntlets":[200, 219], +"Hermit Merchants Bell Bearing :[2]":[232, 34], +"Miranda Sprout Ashes +6":[14, 189], +"Gelmir Knight Greaves":[44, 220], +"Abandoned Merchants Bell Bearing":[233, 34], +"Miranda Sprout Ashes +7":[15, 189], +"Gelmir Knight Armor (Altered)":[76, 223], +"Hermit Merchants Bell Bearing :[3]":[234, 34], +"Miranda Sprout Ashes +8":[16, 189], +"Godrick Knight Helm":[16, 2], +"Imprisoned Merchants Bell Bearing":[235, 34], +"Miranda Sprout Ashes +9":[17, 189], +"Godrick Knight Armor":[116, 2], +"Ijis Bell Bearing":[236, 34], +"Miranda Sprout Ashes +10":[18, 189], +"Godrick Knight Gauntlets":[216, 2], +"Rogiers Bell Bearing":[237, 34], +"Soldjars of Fortune Ashes":[240, 192], +"Godrick Knight Greaves":[60, 3], +"Blackguards Bell Bearing":[238, 34], +"Soldjars of Fortune Ashes +1":[241, 192], +"Godrick Knight Armor (Altered)":[92, 6], +"Corhyns Bell Bearing":[239, 34], +"Soldjars of Fortune Ashes +2":[242, 192], +"Cuckoo Knight Helm":[32, 41], +"Gowrys Bell Bearing":[240, 34], +"Soldjars of Fortune Ashes +3":[243, 192], +"Cuckoo Knight Armor":[132, 41], +"Bone Peddlers Bell Bearing":[241, 34], +"Soldjars of Fortune Ashes +4":[244, 192], +"Cuckoo Knight Gauntlets":[232, 41], +"Meat Peddlers Bell Bearing":[242, 34], +"Soldjars of Fortune Ashes +5":[245, 192], +"Cuckoo Knight Greaves":[76, 42], +"Medicine Peddlers Bell Bearing":[243, 34], +"Soldjars of Fortune Ashes +6":[246, 192], +"Cuckoo Knight Armor (Altered)":[108, 45], +"Gravity Stone Peddlers Bell Bearing":[244, 34], +"Soldjars of Fortune Ashes +7":[247, 192], +"Leyndell Knight Helm":[48, 80], +"Soldjars of Fortune Ashes +8":[248, 192], +"Leyndell Knight Armor":[148, 80], +"Soldjars of Fortune Ashes +9":[249, 192], +"Leyndell Knight Gauntlets":[248, 80], +"Smithing-Stone Miners Bell Bearing :[1]":[247, 34], +"Soldjars of Fortune Ashes +10":[250, 192], +"Leyndell Knight Greaves":[92, 81], +"Smithing-Stone Miners Bell Bearing :[2]":[248, 34], +"Omenkiller Rollo":[216, 196], +"Leyndell Knight Armor (Altered)":[124, 84], +"Smithing-Stone Miners Bell Bearing :[3]":[249, 34], +"Omenkiller Rollo +1":[217, 196], +"Redmane Knight Helm":[64, 119], +"Smithing-Stone Miners Bell Bearing :[4]":[250, 34], +"Omenkiller Rollo +2":[218, 196], +"Redmane Knight Armor":[164, 119], +"Somberstone Miners Bell Bearing :[1]":[251, 34], +"Omenkiller Rollo +3":[219, 196], +"Redmane Knight Gauntlets":[8, 120], +"Somberstone Miners Bell Bearing :[2]":[252, 34], +"Omenkiller Rollo +4":[220, 196], +"Redmane Knight Greaves":[108, 120], +"Somberstone Miners Bell Bearing :[3]":[253, 34], +"Omenkiller Rollo +5":[221, 196], +"Redmane Knight Armor (Altered)":[140, 123], +"Somberstone Miners Bell Bearing :[4]":[254, 34], +"Omenkiller Rollo +6":[222, 196], +"Mausoleum Knight Armor":[180, 158], +"Somberstone Miners Bell Bearing :[5]":[255, 34], +"Omenkiller Rollo +7":[223, 196], +"Mausoleum Knight Gauntlets":[24, 159], +"Glovewort Pickers Bell Bearing :[1]":[0, 35], +"Omenkiller Rollo +8":[224, 196], +"Mausoleum Knight Greaves":[124, 159], +"Glovewort Pickers Bell Bearing :[2]":[1, 35], +"Omenkiller Rollo +9":[225, 196], +"Mausoleum Knight Armor (Altered)":[156, 162], +"Glovewort Pickers Bell Bearing :[3]":[2, 35], +"Omenkiller Rollo +10":[226, 196], +"Haligtree Knight Helm":[96, 197], +"Ghost-Glovewort Pickers Bell Bearing :[1]":[3, 35], +"Greatshield Soldier Ashes":[192, 200], +"Haligtree Knight Armor":[196, 197], +"Ghost-Glovewort Pickers Bell Bearing :[2]":[4, 35], +"Greatshield Soldier Ashes +1":[193, 200], +"Haligtree Knight Gauntlets":[40, 198], +"Ghost-Glovewort Pickers Bell Bearing :[3]":[5, 35], +"Greatshield Soldier Ashes +2":[194, 200], +"Haligtree Knight Greaves":[140, 198], +"Iron Whetblade":[10, 35], +"Greatshield Soldier Ashes +3":[195, 200], +"Haligtree Knight Armor (Altered)":[172, 201], +"Red-Hot Whetblade":[11, 35], +"Greatshield Soldier Ashes +4":[196, 200], +"Foot Soldier Cap":[112, 236], +"Sanctified Whetblade":[12, 35], +"Greatshield Soldier Ashes +5":[197, 200], +"Chain-Draped Tabard":[212, 236], +"Glintstone Whetblade":[13, 35], +"Greatshield Soldier Ashes +6":[198, 200], +"Foot Soldier Gauntlets":[56, 237], +"Black Whetblade":[14, 35], +"Greatshield Soldier Ashes +7":[199, 200], +"Foot Soldier Greaves":[156, 237], +"Unalloyed Gold Needle":[15, 35], +"Greatshield Soldier Ashes +8":[200, 200], +"Foot Soldier Helmet":[128, 19], +"Unalloyed Gold Needle":[16, 35], +"Greatshield Soldier Ashes +9":[201, 200], +"Foot Soldier Tabard":[228, 19], +"Valkyries Prosthesis":[17, 35], +"Greatshield Soldier Ashes +10":[202, 200], +"Gilded Foot Soldier Cap":[144, 58], +"Sellias Secret":[18, 35], +"Archer Ashes":[168, 204], +"Leather-Draped Tabard":[244, 58], +"Beast Eye":[19, 35], +"Archer Ashes +1":[169, 204], +"Foot Soldier Helm":[160, 97], +"Weathered Dagger":[20, 35], +"Archer Ashes +2":[170, 204], +"Scarlet Tabard":[4, 98], +"Bow":[40, 35], +"Archer Ashes +3":[171, 204], +"Bloodsoaked Tabard":[20, 137], +"Polite Bow":[41, 35], +"Archer Ashes +4":[172, 204], +"Sacred Crown Helm":[192, 175], +"My Thanks":[42, 35], +"Archer Ashes +5":[173, 204], +"Ivory-Draped Tabard":[36, 176], +"Curtsy":[43, 35], +"Archer Ashes +6":[174, 204], +"Omensmirk Mask":[208, 214], +"Reverential Bow":[44, 35], +"Archer Ashes +7":[175, 204], +"Omenkiller Robe":[52, 215], +"My Lord":[45, 35], +"Archer Ashes +8":[176, 204], +"Omenkiller Long Gloves":[152, 215], +"Warm Welcome":[46, 35], +"Archer Ashes +9":[177, 204], +"Omenkiller Boots":[252, 215], +"Wave":[47, 35], +"Archer Ashes +10":[178, 204], +"Ash-of-War Scarab":[224, 253], +"Casual Greeting":[48, 35], +"Godrick Soldier Ashes":[144, 208], +"Incantation Scarab":[200, 1], +"Strength!":[49, 35], +"Godrick Soldier Ashes +1":[145, 208], +"Glintstone Scarab":[176, 5], +"As You Wish":[50, 35], +"Godrick Soldier Ashes +2":[146, 208], +"Crimson Tear Scarab":[240, 36], +"Point Forwards":[51, 35], +"Godrick Soldier Ashes +3":[147, 208], +"Cerulean Tear Scarab":[0, 76], +"Point Upwards":[52, 35], +"Godrick Soldier Ashes +4":[148, 208], +"Deathbed Dress":[116, 115], +"Point Downwards":[53, 35], +"Godrick Soldier Ashes +5":[149, 208], +"Deathbed Smalls":[60, 116], +"Beckon":[54, 35], +"Godrick Soldier Ashes +6":[150, 208], +"Fias Hood":[32, 154], +"Wait!":[55, 35], +"Godrick Soldier Ashes +7":[151, 208], +"Fias Robe":[132, 154], +"Calm Down!":[56, 35], +"Godrick Soldier Ashes +8":[152, 208], +"Fias Robe (Altered)":[108, 158], +"Nod In Thought":[57, 35], +"Godrick Soldier Ashes +9":[153, 208], +"Millicents Robe":[148, 193], +"Extreme Repentance":[58, 35], +"Godrick Soldier Ashes +10":[154, 208], +"Millicents Gloves":[248, 193], +"Grovel For Mercy":[59, 35], +"Raya Lucaria Soldier Ashes":[120, 212], +"Millicents Boots":[92, 194], +"Rallying Cry":[60, 35], +"Raya Lucaria Soldier Ashes +1":[121, 212], +"Millicents Tunic":[180, 15], +"Heartening Cry":[61, 35], +"Raya Lucaria Soldier Ashes +2":[122, 212], +"Golden Prosthetic":[24, 16], +"By My Sword":[62, 35], +"Raya Lucaria Soldier Ashes +3":[123, 212], +"Highwayman Hood":[96, 54], +"Hoslows Oath":[63, 35], +"Raya Lucaria Soldier Ashes +4":[124, 212], +"Highwayman Cloth Armor":[196, 54], +"Fire Spur Me":[64, 35], +"Raya Lucaria Soldier Ashes +5":[125, 212], +"Highwayman Gauntlets":[40, 55], +"Bravo!":[66, 35], +"Raya Lucaria Soldier Ashes +6":[126, 212], +"High Page Hood":[112, 93], +"Jump for Joy":[67, 35], +"Raya Lucaria Soldier Ashes +7":[127, 212], +"High Page Clothes":[212, 93], +"Triumphant Delight":[68, 35], +"Raya Lucaria Soldier Ashes +8":[128, 212], +"High Page Clothes (Altered)":[188, 97], +"Fancy Spin":[69, 35], +"Raya Lucaria Soldier Ashes +9":[129, 212], +"Rotten Duelist Helm":[128, 132], +"Finger Snap":[70, 35], +"Raya Lucaria Soldier Ashes +10":[130, 212], +"Rotten Gravekeeper Cloak":[228, 132], +"Dejection":[71, 35], +"Leyndell Soldier Ashes":[96, 216], +"Rotten Duelist Greaves":[172, 133], +"Patches Crouch":[72, 35], +"Leyndell Soldier Ashes +1":[97, 216], +"Rotten Gravekeeper Cloak (Altered)":[204, 136], +"Crossed Legs":[73, 35], +"Leyndell Soldier Ashes +2":[98, 216], +"Mushroom Crown":[144, 171], +"Rest":[74, 35], +"Leyndell Soldier Ashes +3":[99, 216], +"Black Dumpling":[160, 210], +"Sitting Sideways":[75, 35], +"Leyndell Soldier Ashes +4":[100, 216], +"Lazuli Robe":[176, 249], +"Dozing Cross-Legged":[76, 35], +"Leyndell Soldier Ashes +5":[101, 216], +"Godrick Knight Armor (Altered)":[92, 6], +"Spread Out":[77, 35], +"Leyndell Soldier Ashes +6":[102, 216], +"Cuckoo Knight Helm":[32, 41], +"Balled Up":[79, 35], +"Leyndell Soldier Ashes +7":[103, 216], +"Cuckoo Knight Armor":[132, 41], +"What Do You Want?":[80, 35], +"Leyndell Soldier Ashes +8":[104, 216], +"Cuckoo Knight Gauntlets":[232, 41], +"Prayer":[81, 35], +"Leyndell Soldier Ashes +9":[105, 216], +"Cuckoo Knight Greaves":[76, 42], +"Desperate Prayer":[82, 35], +"Leyndell Soldier Ashes +10":[106, 216], +"Cuckoo Knight Armor (Altered)":[108, 45], +"Rapture":[83, 35], +"Radahn Soldier Ashes":[72, 220], +"Leyndell Knight Helm":[48, 80], +"Erudition":[85, 35], +"Radahn Soldier Ashes +1":[73, 220], +"Leyndell Knight Armor":[148, 80], +"Outer Order":[86, 35], +"Radahn Soldier Ashes +2":[74, 220], +"Leyndell Knight Gauntlets":[248, 80], +"Inner Order":[87, 35], +"Radahn Soldier Ashes +3":[75, 220], +"Leyndell Knight Greaves":[92, 81], +"Golden Order Totality":[88, 35], +"Radahn Soldier Ashes +4":[76, 220], +"Leyndell Knight Armor (Altered)":[124, 84], +"The Ring":[89, 35], +"Radahn Soldier Ashes +5":[77, 220], +"Redmane Knight Helm":[64, 119], +"The Ring":[90, 35], +"Radahn Soldier Ashes +6":[78, 220], +"Redmane Knight Armor":[164, 119], + +"Radahn Soldier Ashes +7":[79, 220], +"Redmane Knight Gauntlets":[8, 120], + +"Radahn Soldier Ashes +8":[80, 220], +"Redmane Knight Greaves":[108, 120], + +"Radahn Soldier Ashes +9":[81, 220], +"Redmane Knight Armor (Altered)":[140, 123], + +"Radahn Soldier Ashes +10":[82, 220], +"Mausoleum Knight Armor":[180, 158], + +"Mausoleum Soldier Ashes":[48, 224], +"Mausoleum Knight Gauntlets":[24, 159], + +"Mausoleum Soldier Ashes +1":[49, 224], +"Mausoleum Knight Greaves":[124, 159], + +"Mausoleum Soldier Ashes +2":[50, 224], +"Mausoleum Knight Armor (Altered)":[156, 162], + +"Mausoleum Soldier Ashes +3":[51, 224], +"Haligtree Knight Helm":[96, 197], + +"Mausoleum Soldier Ashes +4":[52, 224], +"Haligtree Knight Armor":[196, 197], + +"Mausoleum Soldier Ashes +5":[53, 224], +"Haligtree Knight Gauntlets":[40, 198], + +"Mausoleum Soldier Ashes +6":[54, 224], +"Haligtree Knight Greaves":[140, 198], + +"Mausoleum Soldier Ashes +7":[55, 224], +"Haligtree Knight Armor (Altered)":[172, 201], + +"Mausoleum Soldier Ashes +8":[56, 224], +"Foot Soldier Cap":[112, 236], + +"Mausoleum Soldier Ashes +9":[57, 224], +"Chain-Draped Tabard":[212, 236], + +"Mausoleum Soldier Ashes +10":[58, 224], +"Foot Soldier Gauntlets":[56, 237], + +"Haligtree Soldier Ashes":[24, 228], +"Foot Soldier Greaves":[156, 237], + +"Haligtree Soldier Ashes +1":[25, 228], +"Foot Soldier Helmet":[128, 19], + +"Haligtree Soldier Ashes +2":[26, 228], +"Foot Soldier Tabard":[228, 19], + +"Haligtree Soldier Ashes +3":[27, 228], +"Gilded Foot Soldier Cap":[144, 58], + +"Haligtree Soldier Ashes +4":[28, 228], +"Leather-Draped Tabard":[244, 58], + +"Haligtree Soldier Ashes +5":[29, 228], +"Foot Soldier Helm":[160, 97], + +"Haligtree Soldier Ashes +6":[30, 228], +"Scarlet Tabard":[4, 98], + +"Haligtree Soldier Ashes +7":[31, 228], +"Bloodsoaked Tabard":[20, 137], + +"Haligtree Soldier Ashes +8":[32, 228], +"Sacred Crown Helm":[192, 175], + +"Haligtree Soldier Ashes +9":[33, 228], +"Ivory-Draped Tabard":[36, 176], + +"Haligtree Soldier Ashes +10":[34, 228], +"Omensmirk Mask":[208, 214], + +"Ancient Dragon Knight Kristoff":[0, 232], +"Omenkiller Robe":[52, 215], + +"Ancient Dragon Knight Kristoff +1":[1, 232], +"Omenkiller Long Gloves":[152, 215], + +"Ancient Dragon Knight Kristoff +2":[2, 232], +"Omenkiller Boots":[252, 215], + +"Ancient Dragon Knight Kristoff +3":[3, 232], +"Ash-of-War Scarab":[224, 253], + +"Ancient Dragon Knight Kristoff +4":[4, 232], +"Incantation Scarab":[200, 1], + +"Ancient Dragon Knight Kristoff +5":[5, 232], +"Glintstone Scarab":[176, 5], + +"Ancient Dragon Knight Kristoff +6":[6, 232], +"Crimson Tear Scarab":[240, 36], + +"Ancient Dragon Knight Kristoff +7":[7, 232], +"Cerulean Tear Scarab":[0, 76], + +"Ancient Dragon Knight Kristoff +8":[8, 232], +"Deathbed Dress":[116, 115], + +"Ancient Dragon Knight Kristoff +9":[9, 232], +"Deathbed Smalls":[60, 116], + +"Ancient Dragon Knight Kristoff +10":[10, 232], + +"Redmane Knight Ogha":[232, 235], +"Fias Hood":[32, 154], + +"Redmane Knight Ogha +1":[233, 235], +"Fias Robe":[132, 154], +"Nomadic Warriors Cookbook :[1]":[84, 36], +"Redmane Knight Ogha +2":[234, 235], +"Fias Robe (Altered)":[108, 158], +"Nomadic Warriors Cookbook :[3]":[85, 36], +"Redmane Knight Ogha +3":[235, 235], +"Millicents Robe":[148, 193], +"Nomadic Warriors Cookbook :[6]":[86, 36], +"Redmane Knight Ogha +4":[236, 235], +"Millicents Gloves":[248, 193], +"Nomadic Warriors Cookbook :[10]":[87, 36], +"Redmane Knight Ogha +5":[237, 235], +"Millicents Boots":[92, 194], +"Fugitive Warriors Recipe :[5]":[88, 36], +"Redmane Knight Ogha +6":[238, 235], +"Nomadic Warriors Cookbook :[7]":[89, 36], +"Redmane Knight Ogha +7":[239, 235], +"Nomadic Warriors Cookbook :[12]":[90, 36], +"Redmane Knight Ogha +8":[240, 235], +"Millicents Tunic":[180, 15], +"Nomadic Warriors Cookbook :[19]":[91, 36], +"Redmane Knight Ogha +9":[241, 235], +"Golden Prosthetic":[24, 16], +"Nomadic Warriors Cookbook :[13]":[92, 36], +"Redmane Knight Ogha +10":[242, 235], +"Nomadic Warriors Cookbook :[23]":[93, 36], +"Lhutel the Headless":[208, 239], +"Nomadic Warriors Cookbook :[17]":[94, 36], +"Lhutel the Headless +1":[209, 239], +"Highwayman Hood":[96, 54], +"Nomadic Warriors Cookbook :[2]":[95, 36], +"Lhutel the Headless +2":[210, 239], +"Highwayman Cloth Armor":[196, 54], +"Nomadic Warriors Cookbook :[21]":[96, 36], +"Lhutel the Headless +3":[211, 239], +"Highwayman Gauntlets":[40, 55], +"Missionarys Cookbook :[6]":[97, 36], +"Lhutel the Headless +4":[212, 239], +"High Page Hood":[112, 93], +"Lhutel the Headless +5":[213, 239], +"High Page Clothes":[212, 93], +"Lhutel the Headless +6":[214, 239], +"High Page Clothes (Altered)":[188, 97], +"Lhutel the Headless +7":[215, 239], +"Rotten Duelist Helm":[128, 132], +"Lhutel the Headless +8":[216, 239], +"Rotten Gravekeeper Cloak":[228, 132], +"Lhutel the Headless +9":[217, 239], +"Rotten Duelist Greaves":[172, 133], +"Lhutel the Headless +10":[218, 239], +"Rotten Gravekeeper Cloak (Altered)":[204, 136], +"Armorers Cookbook :[1]":[104, 36], +"Nepheli Loux Puppet":[184, 243], +"Mushroom Crown":[144, 171], +"Armorers Cookbook :[2]":[105, 36], +"Nepheli Loux Puppet +1":[185, 243], +"Black Dumpling":[160, 210], +"Nomadic Warriors Cookbook :[11]":[106, 36], +"Nepheli Loux Puppet +2":[186, 243], +"Lazuli Robe":[176, 249], +"Nomadic Warriors Cookbook :[20]":[107, 36], +"Nepheli Loux Puppet +3":[187, 243], +"Armorers Cookbook (5)":[108, 36], +"Nepheli Loux Puppet +4":[188, 243], +"Armorers Cookbook :[7]":[109, 36], +"Nepheli Loux Puppet +5":[189, 243], +"Armorers Cookbook :[4]":[110, 36], +"Nepheli Loux Puppet +6":[190, 243], +"Nomadic Warriors Cookbook :[18]":[111, 36], +"Nepheli Loux Puppet +7":[191, 243], +"Armorers Cookbook :[3]":[112, 36], +"Nepheli Loux Puppet +8":[192, 243], +"Nomadic Warriors Cookbook :[16]":[113, 36], +"Nepheli Loux Puppet +9":[193, 243], +"Armorers Cookbook :[6]":[114, 36], +"Nepheli Loux Puppet +10":[194, 243], +"Armorers Cookbook :[5]":[115, 36], +"Dung Eater Puppet":[160, 247], +"Dung Eater Puppet +1":[161, 247], +"Dung Eater Puppet +2":[162, 247], +"Dung Eater Puppet +3":[163, 247], +"Dung Eater Puppet +4":[164, 247], +"Dung Eater Puppet +5":[165, 247], +"Dung Eater Puppet +6":[166, 247], +"Dung Eater Puppet +7":[167, 247], +"Dung Eater Puppet +8":[168, 247], +"Glintstone Craftsmans Cookbook :[4]":[124, 36], +"Dung Eater Puppet +9":[169, 247], +"Glintstone Craftsmans Cookbook :[1]":[125, 36], +"Dung Eater Puppet +10":[170, 247], +"Glintstone Craftsmans Cookbook :[5]":[126, 36], +"Finger Maiden Therolina Puppet":[136, 251], +"Nomadic Warriors Cookbook :[9]":[127, 36], +"Finger Maiden Therolina Puppet +1":[137, 251], +"Glintstone Craftsmans Cookbook :[8]":[128, 36], +"Finger Maiden Therolina Puppet +2":[138, 251], +"Glintstone Craftsmans Cookbook :[2]":[129, 36], +"Finger Maiden Therolina Puppet +3":[139, 251], +"Glintstone Craftsmans Cookbook :[6]":[130, 36], +"Finger Maiden Therolina Puppet +4":[140, 251], +"Glintstone Craftsmans Cookbook :[7]":[131, 36], +"Finger Maiden Therolina Puppet +5":[141, 251], +"Glintstone Craftsmans Cookbook :[3]":[132, 36], +"Finger Maiden Therolina Puppet +6":[142, 251], +"Finger Maiden Therolina Puppet +7":[143, 251], +"Finger Maiden Therolina Puppet +8":[144, 251], +"Finger Maiden Therolina Puppet +9":[145, 251], +"Finger Maiden Therolina Puppet +10":[146, 251], +"Dolores the Sleeping Arrow Puppet":[112, 255], +"Dolores the Sleeping Arrow Puppet +1":[113, 255], +"Dolores the Sleeping Arrow Puppet +2":[114, 255], +"Dolores the Sleeping Arrow Puppet +3":[115, 255], +"Dolores the Sleeping Arrow Puppet +4":[116, 255], +"Dolores the Sleeping Arrow Puppet +5":[117, 255], +"Dolores the Sleeping Arrow Puppet +6":[118, 255], +"Missionarys Cookbook :[2]":[144, 36], +"Dolores the Sleeping Arrow Puppet +7":[119, 255], +"Missionarys Cookbook :[1]":[145, 36], +"Dolores the Sleeping Arrow Puppet +8":[120, 255], +"Missionarys Cookbook (3)":[146, 36], +"Dolores the Sleeping Arrow Puppet +9":[121, 255], +"Missionarys Cookbook :[5]":[147, 36], +"Dolores the Sleeping Arrow Puppet +10":[122, 255], +"Missionarys Cookbook :[4]":[148, 36], +"Jarwight Puppet":[88, 3], +"Missionarys Cookbook :[3]":[149, 36], +"Jarwight Puppet +1":[89, 3], +"Jarwight Puppet +2":[90, 3], +"Jarwight Puppet +3":[91, 3], +"Jarwight Puppet +4":[92, 3], +"Jarwight Puppet +5":[93, 3], +"Jarwight Puppet +6":[94, 3], +"Nomadic Warriors Cookbook :[4]":[164, 36], +"Jarwight Puppet +7":[95, 3], +"Perfumers Cookbook (1)":[165, 36], +"Jarwight Puppet +8":[96, 3], +"Perfumers Cookbook (2)":[166, 36], +"Jarwight Puppet +9":[97, 3], +"Nomadic Warriors Cookbook :[5]":[167, 36], +"Jarwight Puppet +10":[98, 3], +"Perfumers Cookbook :[1]":[168, 36], +"Perfumers Cookbook :[2]":[169, 36], +"Perfumers Cookbook :[3]":[170, 36], +"Nomadic Warriors Cookbook :[14]":[171, 36], +"Nomadic Warriors Cookbook :[8]":[172, 36], +"Nomadic Warriors Cookbook :[22]":[173, 36], +"Nomadic Warriors Cookbook :[15]":[174, 36], +"Nomadic Warriors Cookbook :[24]":[175, 36], +"Perfumers Cookbook :[4]":[176, 36], +"Perfumers Cookbook (13)":[177, 36], +"Ancient Dragon Apostles Cookbook :[1]":[184, 36], +"Ancient Dragon Apostles Cookbook :[2]":[185, 36], +"Ancient Dragon Apostles Cookbook :[4]":[186, 36], +"Ancient Dragon Apostles Cookbook :[3]":[187, 36], +"Fevors Cookbook :[1]":[204, 36], +"Fevors Cookbook :[3]":[205, 36], +"Fevors Cookbook :[2]":[206, 36], +"Missionarys Cookbook :[7]":[207, 36], +"Cracked Pot":[28, 37], +"Ritual Pot":[29, 37], +"Perfume Bottle":[38, 37], +"Glass Shard":[16, 39], +"Golden Seed":[26, 39], +"Sacred Tear":[36, 39], +"Memory Stone":[46, 39], +"Talisman Pouch":[56, 39], +"Dragon Heart":[76, 39], +"Lost Ashes of War":[86, 39], +"Great Rune of the Unborn":[96, 39], +"Smithing Stone :[1]":[116, 39], +"Smithing Stone :[2]":[117, 39], +"Smithing Stone :[3]":[118, 39], +"Smithing Stone :[4]":[119, 39], +"Smithing Stone :[5]":[120, 39], +"Smithing Stone :[6]":[121, 39], +"Smithing Stone :[7]":[122, 39], +"Smithing Stone :[8]":[123, 39], +"Ancient Dragon Smithing Stone":[156, 39], +"Somber Smithing Stone :[1]":[176, 39], +"Somber Smithing Stone :[2]":[177, 39], +"Somber Smithing Stone :[3]":[178, 39], +"Somber Smithing Stone :[4]":[179, 39], +"Somber Smithing Stone :[5]":[180, 39], +"Somber Smithing Stone :[6]":[181, 39], +"Somber Smithing Stone :[7]":[182, 39], +"Somber Smithing Stone :[8]":[183, 39], +"Somber Ancient Dragon Smithing Stone":[184, 39], +"Somber Smithing Stone :[9]":[216, 39], +"Grave Glovewort :[1]":[148, 42], +"Grave Glovewort :[2]":[149, 42], +"Grave Glovewort :[3]":[150, 42], +"Grave Glovewort :[4]":[151, 42], +"Grave Glovewort :[5]":[152, 42], +"Grave Glovewort :[6]":[153, 42], +"Grave Glovewort :[7]":[154, 42], +"Grave Glovewort :[8]":[155, 42], +"Grave Glovewort :[9]":[156, 42], +"Great Grave Glovewort":[157, 42], +"Ghost Glovewort :[1]":[158, 42], +"Ghost Glovewort :[2]":[159, 42], +"Ghost Glovewort :[3]":[160, 42], +"Ghost Glovewort :[4]":[161, 42], +"Ghost Glovewort :[5]":[162, 42], +"Ghost Glovewort :[6]":[163, 42], +"Ghost Glovewort :[7]":[164, 42], +"Ghost Glovewort :[8]":[165, 42], +"Ghost Glovewort :[9]":[166, 42], +"Great Ghost Glovewort":[167, 42], +"Crimsonspill Crystal Tear":[248, 42], +"Greenspill Crystal Tear":[249, 42], +"Crimson Crystal Tear":[250, 42], +"Crimson Crystal Tear":[251, 42], +"Cerulean Crystal Tear":[252, 42], +"Cerulean Crystal Tear":[253, 42], +"Speckled Hardtear":[254, 42], +"Crimson Bubbletear":[255, 42], +"Opaline Bubbletear":[0, 43], +"Crimsonburst Crystal Tear":[1, 43], +"Greenburst Crystal Tear":[2, 43], +"Opaline Hardtear":[3, 43], +"Winged Crystal Tear":[4, 43], +"Thorny Cracked Tear":[5, 43], +"Spiked Cracked Tear":[6, 43], +"Windy Crystal Tear":[7, 43], +"Ruptured Crystal Tear":[8, 43], +"Ruptured Crystal Tear":[9, 43], +"Leaden Hardtear":[10, 43], +"Twiggy Cracked Tear":[11, 43], +"Crimsonwhorl Bubbletear":[12, 43], +"Strength-knot Crystal Tear":[13, 43], +"Dexterity-knot Crystal Tear":[14, 43], +"Intelligence-knot Crystal Tear":[15, 43], +"Faith-knot Crystal Tear":[16, 43], +"Cerulean Hidden Tear":[17, 43], +"Stonebarb Cracked Tear":[18, 43], +"Purifying Crystal Tear":[19, 43], +"Flame-Shrouding Cracked Tear":[20, 43], +"Magic-Shrouding Cracked Tear":[21, 43], +"Lightning-Shrouding Cracked Tear":[22, 43], +"Holy-Shrouding Cracked Tear":[23, 43], +"Sliver of Meat":[152, 58], +"Beast Liver":[162, 58], +"Lump of Flesh":[172, 58], +"Beast Blood":[182, 58], +"Old Fang":[192, 58], +"Budding Horn":[202, 58], +"Flight Pinion":[212, 58], +"Four-Toed Fowl Foot":[232, 58], +"Turtle Neck Meat":[242, 58], +"Human Bone Shard":[252, 58], +"Great Dragonfly Head":[6, 59], +"Slumbering Egg":[16, 59], +"Crab Eggs":[26, 59], +"Land Octopus Ovary":[36, 59], +"Miranda Powder":[46, 59], +"Strip of White Flesh":[56, 59], +"Thin Beast Bones":[236, 59], +"Hefty Beast Bone":[237, 59], +"String":[40, 60], +"Living Jar Shard":[50, 60], +"Albinauric Bloodclot":[60, 60], +"Stormhawk Feather":[70, 60], +"Poisonbloom":[170, 80], +"Trinas Lily":[171, 80], +"Fulgurbloom":[172, 80], +"Miquellas Lily":[173, 80], +"Grave Violet":[174, 80], +"Faded Erdleaf Flower":[180, 80], +"Erdleaf Flower":[200, 80], +"Altus Bloom":[201, 80], +"Fire Blossom":[202, 80], +"Golden Sunflower":[203, 80], +"Tarnished Golden Sunflower":[205, 80], +"Herba":[210, 80], +"Arteria Leaf":[211, 80], +"Rowa Fruit":[240, 80], +"Golden Rowa":[241, 80], +"Rimed Rowa":[242, 80], +"Bloodrose":[243, 80], +"Eye of Yelough":[4, 81], +"Crystal Bud":[14, 81], +"Rimed Crystal Bud":[15, 81], +"Sacramental Bud":[17, 81], +"Mushroom":[24, 81], +"Melted Mushroom":[25, 81], +"Toxic Mushroom":[34, 81], +"Root Resin":[39, 81], +"Cracked Crystal":[44, 81], +"Sanctuary Stone":[59, 81], +"Nascent Butterfly":[64, 81], +"Aeonian Butterfly":[65, 81], +"Smoldering Butterfly":[66, 81], +"Silver Firefly":[74, 81], +"Gold Firefly":[75, 81], +"Glintstone Firefly":[76, 81], +"Golden Centipede":[84, 81], +"Silver Tear Husk":[89, 81], +"Gold-Tinged Excrement":[94, 81], +"Blood-Tainted Excrement":[95, 81], +"Cave Moss":[104, 81], +"Budding Cave Moss":[105, 81], +"Crystal Cave Moss":[106, 81], +"Yellow Ember":[109, 81], +"Volcanic Stone":[114, 81], +"Formic Rock":[116, 81], +"Gravel Stone":[119, 81], +} diff --git a/data/changelog.txt b/data/changelog.txt index 5ac93a1..33551bc 100644 --- a/data/changelog.txt +++ b/data/changelog.txt @@ -1,4 +1,3 @@ -Improvements to Custom ID Search tool -Tutorial video added for Custom ID Search tool -Ability to set starting class flag. Right-click a save file and select "Set starting classes" +New replace item tool! Go to Inventory Editor > Actions > Replace item +Removed starting class feature (Broken for now) Minor bug fixes and improvements diff --git a/hexedit.py b/hexedit.py index 86b5a70..8037514 100644 --- a/hexedit.py +++ b/hexedit.py @@ -1,5 +1,5 @@ -import binascii, re, hashlib, random, base64, stat_progression, itemdata, os - +import binascii, re, hashlib, random, base64, stat_progression, itemdata, os, allitems_dict +from allitems_dict import itemdict def l_endian(val): """Takes bytes and returns little endian int32/64""" @@ -108,7 +108,7 @@ def replacer(file, old_name, name): ind1 = 0x1901D0E # Start address of char names in header, 588 bytes apart for i in range(10): nm = dat1[ind1 : ind1 + 32] - name_locations.append(nm) # Name in bytes + name_locations.append(nm) # name in bytes ind1 += 588 x = replacer(file, name_locations[dest_slot - 1], nw_nm) @@ -123,6 +123,9 @@ def replace_id(file, newid): dat = f.read() f.seek(26215348) # start address of steamID steam_id = f.read(8) # Get steamID + if len(str(l_endian(steam_id))) != 17: # Prevent save file corruption if steamid is 0 for example. + return False + id_loc = [] index = 0 @@ -654,20 +657,107 @@ def set_starting_class(file, slot, char_class): classes = {"Vagabond":0, "Warrior":1, "Hero":2, "Bandit":3, "Astrologer":4, "Prophet":5, "Confessor":6, "Samurai":7, "Prisoner":8, "Wretch":9 } +# with open(file, "rb") as f: +# dat = f.read() + + + with open(file, "wb") as fh: + ch = ( + s_start + + cs[:pos] + + classes[char_class].to_bytes(1, "little") + + cs[pos + 1 :] + + s_end + ) + + fh.write(ch) + + recalc_checksum(file) + return True + + + + +def find_inventory(file,slot,ids): + with open(file, 'rb') as f: + dat = f.read() + + c1 = get_slot_ls(file)[slot-1] + + + for ind, i in enumerate(c1): + if ind < 30000: + continue + # Full Matches + if l_endian(c1[ind:ind+1]) > 0 and l_endian(c1[ind:ind+1]) < 1000: # quantity + if ( l_endian(c1[ind - 2 : ind - 1]) == 0 and l_endian(c1[ind -1 : ind]) == 176 ) or ( l_endian(c1[ind - 2 : ind - 1]) == 128 and l_endian(c1[ind-1 : ind]) == 128): + if l_endian(c1[ind-3:ind-2]) == ids[1] and l_endian(c1[ind-4:ind-3]) == ids[0]: + index = ind + break + + return index + + + + +def get_inventory(file, slot): + items = dict([(f"{v[0]}:{v[1]}",k) for k,v in itemdict.items()]) with open(file, "rb") as f: dat = f.read() + ind = find_inventory(file, slot, [106,0]) # Search for Tarnished Wizened Finger ( you get it at beginning of game) + ind -= 4 # go to the uid point + c1 = get_slot_ls(file)[slot-1] + ls = [] + ind -= (12 * 1024) # inventory item entry is 12 bytes long, so decrement index to beginning of inv + + for i in range(2048): + + ids = f"{l_endian(c1[ind:ind+1])}:{l_endian(c1[ind+1:ind+2])}" + try: + name = items[ids] + except KeyError: + name = "?" + + ls.append({ + "name": name, + "item_id": [l_endian(c1[ind:ind+1]), l_endian(c1[ind+1:ind+2])], + "uid": [l_endian(c1[ind+2:ind+3]), l_endian(c1[ind+3:ind+4])], + "quantity": l_endian(c1[ind+4:ind+5]), + "pad1": [l_endian(c1[ind+5:ind+6]),l_endian(c1[ind+6:ind+7]),l_endian(c1[ind+7:ind+8])], + "iter": l_endian(c1[ind+8:ind+9]), + "pad2":[ l_endian(c1[ind+9:ind+10]), l_endian(c1[ind+10:ind+11]),l_endian(c1[ind+11:ind+12])], + "index": ind + }) + ind+= 12 + sorted_ls = sorted(ls, key=lambda d: d['name']) + finished_ls = [] + + for i in sorted_ls: + if i["name"] == "?": + continue + if i["uid"] == [0,176]: # or i["uid"] == [128,128] + finished_ls.append(i) + return finished_ls - with open(file, "wb") as fh: - ch = ( - s_start - + cs[:pos] - + classes[char_class].to_bytes(1, "little") - + cs[pos + 1 :] - + s_end - ) + + + + +def overwrite_item(file,slot, item_dict_entry, newids): + #entry = {'name': 'Smithing Stone :[8]', 'item_id': [123, 39], 'uid': [0, 176], 'quantity': 63, 'pad1': [0, 0, 0], 'iter': 103, 'pad2': [58, 0, 0], 'index': 63987} + + pos = item_dict_entry["index"] + + for id in newids: + cs = get_slot_ls(file)[slot-1] + slices = get_slot_slices(file) + s_start = slices[slot - 1][0] + s_end = slices[slot - 1][1] + ch = ( s_start + cs[:pos] + id.to_bytes(1, "little") + cs[pos + 1 :] + s_end ) + with open(file, "wb") as fh: fh.write(ch) + pos += 1 - recalc_checksum(file) - return True + recalc_checksum(file) diff --git a/os_layer.py b/os_layer.py index 267abab..ab4695e 100644 --- a/os_layer.py +++ b/os_layer.py @@ -13,9 +13,9 @@ update_dir = "./data/updates/" temp_dir = "./data/temp/" post_update_file = "./data/post.update" -version = "v1.64" -v_num = 1.64 # Used for checking version for update -video_url = "https://youtu.be/RZIP0kYjvZM" +version = "v1.65" +v_num = 1.65 # Used for checking version for update +video_url = "https://youtu.be/LQxmFuq3dfg" custom_search_tutorial_url = "https://youtu.be/li-ZiMXBmRk" background_img = "./data/background.png" icon_file = "./data/icon.ico"