From 72518053327f901db08af05c9d586bfb0b521e48 Mon Sep 17 00:00:00 2001 From: Andreas Date: Fri, 27 Oct 2023 16:53:11 +0200 Subject: [PATCH] Add req lvl, str & dex to items.json --- contrib/items.py | 24 +- d2warehouse/data/items.json | 3297 ++++++++++++++++++++++++++++------- 2 files changed, 2656 insertions(+), 665 deletions(-) diff --git a/contrib/items.py b/contrib/items.py index 91a074b..4fcb4f4 100644 --- a/contrib/items.py +++ b/contrib/items.py @@ -1,5 +1,9 @@ import json import csv +import os +import sys + +path = sys.argv[1] if len(sys.argv) >= 2 else "." items = {} @@ -9,7 +13,7 @@ item_patches = { } # build code -> names map -with open("item-names.json", encoding="utf-8-sig") as f: +with open(os.path.join(path, "item-names.json"), encoding="utf-8-sig") as f: names = json.load(f) names = [] @@ -21,7 +25,7 @@ for entry in names: names[code] = {"name": name} # Extract items -with open("armor.txt", newline="") as f: +with open(os.path.join(path, "armor.txt"), newline="") as f: reader = csv.DictReader(f, delimiter="\t") for row in reader: if row["name"] == "Expansion": @@ -35,9 +39,12 @@ with open("armor.txt", newline="") as f: "stackable": row["stackable"] == "1", "width": int(row["invwidth"]), "height": int(row["invheight"]), + "req_str": int(row["reqstr"]), + "req_dex": int(row["reqdex"]), + "req_lvl": int(row["levelreq"]), } -with open("weapons.txt", newline="") as f: +with open(os.path.join(path, "weapons.txt"), newline="") as f: reader = csv.DictReader(f, delimiter="\t") for row in reader: if row["name"] == "Expansion": @@ -53,9 +60,12 @@ with open("weapons.txt", newline="") as f: "stackable": row["stackable"] == "1", "width": int(row["invwidth"]), "height": int(row["invheight"]), + "req_str": 0 if len(row["reqstr"]) == 0 else int(row["reqstr"]), + "req_dex": 0 if len(row["reqdex"]) == 0 else int(row["reqdex"]), + "req_lvl": int(row["levelreq"]), } -with open("misc.txt", newline="") as f: +with open(os.path.join(path, "misc.txt"), newline="") as f: reader = csv.DictReader(f, delimiter="\t") for row in reader: if row["name"] == "Expansion": @@ -69,10 +79,14 @@ with open("misc.txt", newline="") as f: "stackable": row["stackable"] == "1", "width": int(row["invwidth"]), "height": int(row["invheight"]), + "req_str": 0, + "req_dex": 0, + "req_lvl": int(row["levelreq"]), } for code, patch in item_patches.items(): items[code].update(patch) -with open("items.json", "w") as f: +with open("items.json", "w", newline="\n") as f: json.dump(items, f, indent=4) + f.write("\n") diff --git a/d2warehouse/data/items.json b/d2warehouse/data/items.json index df1ff4b..c903222 100644 --- a/d2warehouse/data/items.json +++ b/d2warehouse/data/items.json @@ -5,7 +5,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "skp": { "name": "Skull Cap", @@ -13,7 +16,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 15, + "req_dex": 0, + "req_lvl": 0 }, "hlm": { "name": "Helm", @@ -21,7 +27,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 26, + "req_dex": 0, + "req_lvl": 0 }, "fhl": { "name": "Full Helm", @@ -29,7 +38,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 41, + "req_dex": 0, + "req_lvl": 0 }, "ghm": { "name": "Great Helm", @@ -37,7 +49,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 63, + "req_dex": 0, + "req_lvl": 0 }, "crn": { "name": "Crown", @@ -45,7 +60,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 55, + "req_dex": 0, + "req_lvl": 0 }, "msk": { "name": "Mask", @@ -53,7 +71,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 23, + "req_dex": 0, + "req_lvl": 0 }, "qui": { "name": "Quilted Armor", @@ -61,7 +82,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 12, + "req_dex": 0, + "req_lvl": 0 }, "lea": { "name": "Leather Armor", @@ -69,7 +93,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 15, + "req_dex": 0, + "req_lvl": 0 }, "hla": { "name": "Hard Leather Armor", @@ -77,7 +104,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 20, + "req_dex": 0, + "req_lvl": 0 }, "stu": { "name": "Studded Leather ", @@ -85,7 +115,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 27, + "req_dex": 0, + "req_lvl": 0 }, "rng": { "name": "Ring Mail", @@ -93,7 +126,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 36, + "req_dex": 0, + "req_lvl": 0 }, "scl": { "name": "Scale Mail", @@ -101,7 +137,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 44, + "req_dex": 0, + "req_lvl": 0 }, "chn": { "name": "Chain Mail", @@ -109,7 +148,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 48, + "req_dex": 0, + "req_lvl": 0 }, "brs": { "name": "Breast Plate", @@ -117,7 +159,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 30, + "req_dex": 0, + "req_lvl": 0 }, "spl": { "name": "Splint Mail", @@ -125,7 +170,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 51, + "req_dex": 0, + "req_lvl": 0 }, "plt": { "name": "Plate Mail", @@ -133,7 +181,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 65, + "req_dex": 0, + "req_lvl": 0 }, "fld": { "name": "Field Plate", @@ -141,7 +192,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 55, + "req_dex": 0, + "req_lvl": 0 }, "gth": { "name": "Gothic Plate", @@ -149,7 +203,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 70, + "req_dex": 0, + "req_lvl": 0 }, "ful": { "name": "Full Plate Mail", @@ -157,7 +214,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 80, + "req_dex": 0, + "req_lvl": 0 }, "aar": { "name": "Ancient Armor", @@ -165,7 +225,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 100, + "req_dex": 0, + "req_lvl": 0 }, "ltp": { "name": "Light Plate", @@ -173,7 +236,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 41, + "req_dex": 0, + "req_lvl": 0 }, "buc": { "name": "Buckler", @@ -181,7 +247,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 12, + "req_dex": 0, + "req_lvl": 0 }, "sml": { "name": "Small Shield", @@ -189,7 +258,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 22, + "req_dex": 0, + "req_lvl": 0 }, "lrg": { "name": "Large Shield", @@ -197,7 +269,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 34, + "req_dex": 0, + "req_lvl": 0 }, "kit": { "name": "Kite Shield", @@ -205,7 +280,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 47, + "req_dex": 0, + "req_lvl": 0 }, "tow": { "name": "Tower Shield", @@ -213,7 +291,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 75, + "req_dex": 0, + "req_lvl": 0 }, "gts": { "name": "Gothic Shield", @@ -221,7 +302,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 60, + "req_dex": 0, + "req_lvl": 0 }, "lgl": { "name": "Leather Gloves", @@ -229,7 +313,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "vgl": { "name": "Heavy Gloves", @@ -237,7 +324,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mgl": { "name": "Chain Gloves", @@ -245,7 +335,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 0 }, "tgl": { "name": "Light Gauntlets", @@ -253,7 +346,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 45, + "req_dex": 0, + "req_lvl": 0 }, "hgl": { "name": "Gauntlets", @@ -261,7 +357,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 60, + "req_dex": 0, + "req_lvl": 0 }, "lbt": { "name": "Boots", @@ -269,7 +368,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "vbt": { "name": "Heavy Boots", @@ -277,7 +379,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 18, + "req_dex": 0, + "req_lvl": 0 }, "mbt": { "name": "Chain Boots", @@ -285,7 +390,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 30, + "req_dex": 0, + "req_lvl": 0 }, "tbt": { "name": "Light Plated Boots", @@ -293,7 +401,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 0 }, "hbt": { "name": "Greaves", @@ -301,7 +412,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 70, + "req_dex": 0, + "req_lvl": 0 }, "lbl": { "name": "Sash", @@ -309,7 +423,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "vbl": { "name": "Light Belt", @@ -317,7 +434,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mbl": { "name": "Belt", @@ -325,7 +445,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 25, + "req_dex": 0, + "req_lvl": 0 }, "tbl": { "name": "Heavy Belt", @@ -333,7 +456,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 45, + "req_dex": 0, + "req_lvl": 0 }, "hbl": { "name": "Plated Belt", @@ -341,7 +467,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 60, + "req_dex": 0, + "req_lvl": 0 }, "bhm": { "name": "Bone Helm", @@ -349,7 +478,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 0 }, "bsh": { "name": "Bone Shield", @@ -357,7 +489,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 0 }, "spk": { "name": "Spiked Shield", @@ -365,7 +500,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 30, + "req_dex": 0, + "req_lvl": 0 }, "xap": { "name": "War Hat", @@ -373,7 +511,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 20, + "req_dex": 0, + "req_lvl": 22 }, "xkp": { "name": "Sallet", @@ -381,7 +522,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 43, + "req_dex": 0, + "req_lvl": 25 }, "xlm": { "name": "Casque", @@ -389,7 +533,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 59, + "req_dex": 0, + "req_lvl": 25 }, "xhl": { "name": "Basinet", @@ -397,7 +544,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 82, + "req_dex": 0, + "req_lvl": 25 }, "xhm": { "name": "Winged Helm", @@ -405,7 +555,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 115, + "req_dex": 0, + "req_lvl": 25 }, "xrn": { "name": "Grand Crown", @@ -413,7 +566,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 103, + "req_dex": 0, + "req_lvl": 25 }, "xsk": { "name": "Death Mask", @@ -421,7 +577,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 55, + "req_dex": 0, + "req_lvl": 25 }, "xui": { "name": "Ghost Armor", @@ -429,7 +588,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 38, + "req_dex": 0, + "req_lvl": 22 }, "xea": { "name": "Serpentskin Armor", @@ -437,7 +599,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 43, + "req_dex": 0, + "req_lvl": 24 }, "xla": { "name": "Demonhide Armor", @@ -445,7 +610,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 50, + "req_dex": 0, + "req_lvl": 25 }, "xtu": { "name": "Trellised Armor", @@ -453,7 +621,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 61, + "req_dex": 0, + "req_lvl": 25 }, "xng": { "name": "Linked Mail", @@ -461,7 +632,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 74, + "req_dex": 0, + "req_lvl": 25 }, "xcl": { "name": "Tigulated Mail", @@ -469,7 +643,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 86, + "req_dex": 0, + "req_lvl": 25 }, "xhn": { "name": "Mesh Armor", @@ -477,7 +654,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 92, + "req_dex": 0, + "req_lvl": 25 }, "xrs": { "name": "Cuirass", @@ -485,7 +665,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 65, + "req_dex": 0, + "req_lvl": 25 }, "xpl": { "name": "Russet Armor", @@ -493,7 +676,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 97, + "req_dex": 0, + "req_lvl": 25 }, "xlt": { "name": "Templar Coat", @@ -501,7 +687,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 118, + "req_dex": 0, + "req_lvl": 25 }, "xld": { "name": "Sharktooth Armor", @@ -509,7 +698,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 103, + "req_dex": 0, + "req_lvl": 25 }, "xth": { "name": "Embossed Plate", @@ -517,7 +709,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 125, + "req_dex": 0, + "req_lvl": 25 }, "xul": { "name": "Chaos Armor", @@ -525,7 +720,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 140, + "req_dex": 0, + "req_lvl": 25 }, "xar": { "name": "Ornate Armor", @@ -533,7 +731,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 170, + "req_dex": 0, + "req_lvl": 25 }, "xtp": { "name": "Mage Plate", @@ -541,7 +742,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 55, + "req_dex": 0, + "req_lvl": 25 }, "xuc": { "name": "Defender", @@ -549,7 +753,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 38, + "req_dex": 0, + "req_lvl": 22 }, "xml": { "name": "Round Shield", @@ -557,7 +764,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 53, + "req_dex": 0, + "req_lvl": 25 }, "xrg": { "name": "Scutum", @@ -565,7 +775,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 71, + "req_dex": 0, + "req_lvl": 25 }, "xit": { "name": "Dragon Shield", @@ -573,7 +786,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 91, + "req_dex": 0, + "req_lvl": 25 }, "xow": { "name": "Pavise", @@ -581,7 +797,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 133, + "req_dex": 0, + "req_lvl": 25 }, "xts": { "name": "Ancient Shield", @@ -589,7 +808,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 110, + "req_dex": 0, + "req_lvl": 25 }, "xlg": { "name": "Demonhide Gloves", @@ -597,7 +819,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 20, + "req_dex": 0, + "req_lvl": 21 }, "xvg": { "name": "Sharkskin Gloves", @@ -605,7 +830,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 20, + "req_dex": 0, + "req_lvl": 25 }, "xmg": { "name": "Heavy Bracers", @@ -613,7 +841,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 58, + "req_dex": 0, + "req_lvl": 25 }, "xtg": { "name": "Battle Gauntlets", @@ -621,7 +852,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 88, + "req_dex": 0, + "req_lvl": 25 }, "xhg": { "name": "War Gauntlets", @@ -629,7 +863,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 110, + "req_dex": 0, + "req_lvl": 25 }, "xlb": { "name": "Demonhide Boots", @@ -637,7 +874,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 20, + "req_dex": 0, + "req_lvl": 24 }, "xvb": { "name": "Sharkskin Boots", @@ -645,7 +885,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 47, + "req_dex": 0, + "req_lvl": 25 }, "xmb": { "name": "Mesh Boots", @@ -653,7 +896,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 65, + "req_dex": 0, + "req_lvl": 25 }, "xtb": { "name": "Battle Boots", @@ -661,7 +907,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 95, + "req_dex": 0, + "req_lvl": 25 }, "xhb": { "name": "War Boots", @@ -669,7 +918,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 125, + "req_dex": 0, + "req_lvl": 25 }, "zlb": { "name": "Demonhide Sash", @@ -677,7 +929,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 20, + "req_dex": 0, + "req_lvl": 24 }, "zvb": { "name": "Sharkskin Belt", @@ -685,7 +940,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 20, + "req_dex": 0, + "req_lvl": 25 }, "zmb": { "name": "Mesh Belt", @@ -693,7 +951,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 58, + "req_dex": 0, + "req_lvl": 25 }, "ztb": { "name": "Battle Belt", @@ -701,7 +962,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 88, + "req_dex": 0, + "req_lvl": 25 }, "zhb": { "name": "War Belt", @@ -709,7 +973,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 110, + "req_dex": 0, + "req_lvl": 25 }, "xh9": { "name": "Grim Helm", @@ -717,7 +984,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 58, + "req_dex": 0, + "req_lvl": 25 }, "xsh": { "name": "Grim Shield", @@ -725,7 +995,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 58, + "req_dex": 0, + "req_lvl": 25 }, "xpk": { "name": "Barbed Shield", @@ -733,7 +1006,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 65, + "req_dex": 0, + "req_lvl": 25 }, "dr1": { "name": "Wolf Head", @@ -741,7 +1017,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 16, + "req_dex": 0, + "req_lvl": 3 }, "dr2": { "name": "Hawk Helm", @@ -749,7 +1028,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 20, + "req_dex": 0, + "req_lvl": 6 }, "dr3": { "name": "Antlers", @@ -757,7 +1039,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 24, + "req_dex": 0, + "req_lvl": 12 }, "dr4": { "name": "Falcon Mask", @@ -765,7 +1050,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 28, + "req_dex": 0, + "req_lvl": 15 }, "dr5": { "name": "Spirit Mask", @@ -773,7 +1061,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 30, + "req_dex": 0, + "req_lvl": 18 }, "ba1": { "name": "Jawbone Cap", @@ -781,7 +1072,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 3 }, "ba2": { "name": "Fanged Helm", @@ -789,7 +1083,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 35, + "req_dex": 0, + "req_lvl": 6 }, "ba3": { "name": "Horned Helm", @@ -797,7 +1094,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 45, + "req_dex": 0, + "req_lvl": 12 }, "ba4": { "name": "Assault Helmet", @@ -805,7 +1105,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 55, + "req_dex": 0, + "req_lvl": 15 }, "ba5": { "name": "Avenger Guard", @@ -813,7 +1116,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 65, + "req_dex": 0, + "req_lvl": 18 }, "pa1": { "name": "Targe", @@ -821,7 +1127,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 16, + "req_dex": 0, + "req_lvl": 3 }, "pa2": { "name": "Rondache", @@ -829,7 +1138,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 26, + "req_dex": 0, + "req_lvl": 6 }, "pa3": { "name": "Heraldic Shield", @@ -837,7 +1149,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 40, + "req_dex": 0, + "req_lvl": 12 }, "pa4": { "name": "Aerin Shield", @@ -845,7 +1160,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 50, + "req_dex": 0, + "req_lvl": 15 }, "pa5": { "name": "Crown Shield", @@ -853,7 +1171,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 65, + "req_dex": 0, + "req_lvl": 18 }, "ne1": { "name": "Preserved Head", @@ -861,7 +1182,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 12, + "req_dex": 0, + "req_lvl": 3 }, "ne2": { "name": "Zombie Head", @@ -869,7 +1193,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 14, + "req_dex": 0, + "req_lvl": 6 }, "ne3": { "name": "Unraveller Head", @@ -877,7 +1204,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 18, + "req_dex": 0, + "req_lvl": 12 }, "ne4": { "name": "Gargoyle Head", @@ -885,7 +1215,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 20, + "req_dex": 0, + "req_lvl": 15 }, "ne5": { "name": "Demon Head", @@ -893,7 +1226,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 18 }, "ci0": { "name": "Circlet", @@ -901,7 +1237,10 @@ "type": "circ", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 16 }, "ci1": { "name": "Coronet", @@ -909,7 +1248,10 @@ "type": "circ", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 39 }, "ci2": { "name": "Tiara", @@ -917,7 +1259,10 @@ "type": "circ", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 52 }, "ci3": { "name": "Diadem", @@ -925,7 +1270,10 @@ "type": "circ", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 64 }, "uap": { "name": "Shako", @@ -933,7 +1281,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 43 }, "ukp": { "name": "Hydraskull", @@ -941,7 +1292,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 84, + "req_dex": 0, + "req_lvl": 47 }, "ulm": { "name": "Armet", @@ -949,7 +1303,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 109, + "req_dex": 0, + "req_lvl": 51 }, "uhl": { "name": "Giant Conch", @@ -957,7 +1314,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 142, + "req_dex": 0, + "req_lvl": 40 }, "uhm": { "name": "Spired Helm", @@ -965,7 +1325,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 192, + "req_dex": 0, + "req_lvl": 59 }, "urn": { "name": "Corona", @@ -973,7 +1336,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 174, + "req_dex": 0, + "req_lvl": 66 }, "usk": { "name": "Demonhead", @@ -981,7 +1347,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 102, + "req_dex": 0, + "req_lvl": 55 }, "uui": { "name": "Dusk Shroud", @@ -989,7 +1358,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 77, + "req_dex": 0, + "req_lvl": 49 }, "uea": { "name": "Wyrmhide", @@ -997,7 +1369,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 84, + "req_dex": 0, + "req_lvl": 50 }, "ula": { "name": "Scarab Husk", @@ -1005,7 +1380,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 95, + "req_dex": 0, + "req_lvl": 51 }, "utu": { "name": "Wire Fleece", @@ -1013,7 +1391,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 111, + "req_dex": 0, + "req_lvl": 53 }, "ung": { "name": "Diamond Mail", @@ -1021,7 +1402,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 131, + "req_dex": 0, + "req_lvl": 54 }, "ucl": { "name": "Loricated Mail", @@ -1029,7 +1413,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 149, + "req_dex": 0, + "req_lvl": 55 }, "uhn": { "name": "Boneweave", @@ -1037,7 +1424,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 158, + "req_dex": 0, + "req_lvl": 47 }, "urs": { "name": "Great Hauberk", @@ -1045,7 +1435,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 118, + "req_dex": 0, + "req_lvl": 56 }, "upl": { "name": "Balrog Skin", @@ -1053,7 +1446,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 165, + "req_dex": 0, + "req_lvl": 57 }, "ult": { "name": "Hellforge Plate", @@ -1061,7 +1457,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 196, + "req_dex": 0, + "req_lvl": 59 }, "uld": { "name": "Kraken Shell", @@ -1069,7 +1468,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 174, + "req_dex": 0, + "req_lvl": 61 }, "uth": { "name": "Lacquered Plate", @@ -1077,7 +1479,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 208, + "req_dex": 0, + "req_lvl": 62 }, "uul": { "name": "Shadow Plate", @@ -1085,7 +1490,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 230, + "req_dex": 0, + "req_lvl": 64 }, "uar": { "name": "Sacred Armor", @@ -1093,7 +1501,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 232, + "req_dex": 0, + "req_lvl": 66 }, "utp": { "name": "Archon Plate", @@ -1101,7 +1512,10 @@ "type": "tors", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 103, + "req_dex": 0, + "req_lvl": 63 }, "uuc": { "name": "Heater", @@ -1109,7 +1523,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 77, + "req_dex": 0, + "req_lvl": 43 }, "uml": { "name": "Luna", @@ -1117,7 +1534,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 100, + "req_dex": 0, + "req_lvl": 45 }, "urg": { "name": "Hyperion", @@ -1125,7 +1545,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 127, + "req_dex": 0, + "req_lvl": 48 }, "uit": { "name": "Monarch", @@ -1133,7 +1556,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 156, + "req_dex": 0, + "req_lvl": 54 }, "uow": { "name": "Aegis", @@ -1141,7 +1567,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 219, + "req_dex": 0, + "req_lvl": 59 }, "uts": { "name": "Ward", @@ -1149,7 +1578,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 185, + "req_dex": 0, + "req_lvl": 63 }, "ulg": { "name": "Bramble Mitts", @@ -1157,7 +1589,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 42 }, "uvg": { "name": "Vampirebone Gloves", @@ -1165,7 +1600,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 47 }, "umg": { "name": "Vambraces", @@ -1173,7 +1611,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 106, + "req_dex": 0, + "req_lvl": 51 }, "utg": { "name": "Crusader Gauntlets", @@ -1181,7 +1622,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 151, + "req_dex": 0, + "req_lvl": 57 }, "uhg": { "name": "Ogre Gauntlets", @@ -1189,7 +1633,10 @@ "type": "glov", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 185, + "req_dex": 0, + "req_lvl": 64 }, "ulb": { "name": "Wyrmhide Boots", @@ -1197,7 +1644,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 45 }, "uvb": { "name": "Scarabshell Boots", @@ -1205,7 +1655,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 91, + "req_dex": 0, + "req_lvl": 49 }, "umb": { "name": "Boneweave Boots", @@ -1213,7 +1666,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 118, + "req_dex": 0, + "req_lvl": 54 }, "utb": { "name": "Mirrored Boots", @@ -1221,7 +1677,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 163, + "req_dex": 0, + "req_lvl": 60 }, "uhb": { "name": "Myrmidon Greaves", @@ -1229,7 +1688,10 @@ "type": "boot", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 208, + "req_dex": 0, + "req_lvl": 65 }, "ulc": { "name": "Spiderweb Sash", @@ -1237,7 +1699,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 50, + "req_dex": 0, + "req_lvl": 46 }, "uvc": { "name": "Vampirefang Belt", @@ -1245,7 +1710,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 50, + "req_dex": 0, + "req_lvl": 51 }, "umc": { "name": "Mithril Coil", @@ -1253,7 +1721,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 106, + "req_dex": 0, + "req_lvl": 56 }, "utc": { "name": "Troll Belt", @@ -1261,7 +1732,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 151, + "req_dex": 0, + "req_lvl": 62 }, "uhc": { "name": "Colossus Girdle", @@ -1269,7 +1743,10 @@ "type": "belt", "stackable": false, "width": 2, - "height": 1 + "height": 1, + "req_str": 185, + "req_dex": 0, + "req_lvl": 67 }, "uh9": { "name": "Bone Visage", @@ -1277,7 +1754,10 @@ "type": "helm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 106, + "req_dex": 0, + "req_lvl": 63 }, "ush": { "name": "Troll Nest", @@ -1285,7 +1765,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 106, + "req_dex": 0, + "req_lvl": 57 }, "upk": { "name": "Blade Barrier", @@ -1293,7 +1776,10 @@ "type": "shie", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 118, + "req_dex": 0, + "req_lvl": 51 }, "dr6": { "name": "Alpha Helm", @@ -1301,7 +1787,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 44, + "req_dex": 0, + "req_lvl": 26 }, "dr7": { "name": "Griffon Headress", @@ -1309,7 +1798,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 30 }, "dr8": { "name": "Hunter's Guise", @@ -1317,7 +1809,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 56, + "req_dex": 0, + "req_lvl": 29 }, "dr9": { "name": "Sacred Feathers", @@ -1325,7 +1820,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 62, + "req_dex": 0, + "req_lvl": 32 }, "dra": { "name": "Totemic Mask", @@ -1333,7 +1831,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 65, + "req_dex": 0, + "req_lvl": 41 }, "ba6": { "name": "Jawbone Visor", @@ -1341,7 +1842,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 58, + "req_dex": 0, + "req_lvl": 25 }, "ba7": { "name": "Lion Helm", @@ -1349,7 +1853,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 73, + "req_dex": 0, + "req_lvl": 29 }, "ba8": { "name": "Rage Mask", @@ -1357,7 +1864,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 88, + "req_dex": 0, + "req_lvl": 29 }, "ba9": { "name": "Savage Helmet", @@ -1365,7 +1875,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 103, + "req_dex": 0, + "req_lvl": 32 }, "baa": { "name": "Slayer Guard", @@ -1373,7 +1886,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 118, + "req_dex": 0, + "req_lvl": 40 }, "pa6": { "name": "Akaran Targe", @@ -1381,7 +1897,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 44, + "req_dex": 0, + "req_lvl": 26 }, "pa7": { "name": "Akaran Rondache", @@ -1389,7 +1908,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 59, + "req_dex": 0, + "req_lvl": 30 }, "pa8": { "name": "Protector Shield", @@ -1397,7 +1919,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 69, + "req_dex": 0, + "req_lvl": 34 }, "pa9": { "name": "Gilded Shield", @@ -1405,7 +1930,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 89, + "req_dex": 0, + "req_lvl": 38 }, "paa": { "name": "Royal Shield", @@ -1413,7 +1941,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 114, + "req_dex": 0, + "req_lvl": 41 }, "ne6": { "name": "Mummified Trophy", @@ -1421,7 +1952,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 38, + "req_dex": 0, + "req_lvl": 24 }, "ne7": { "name": "Fetish Trophy", @@ -1429,7 +1963,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 41, + "req_dex": 0, + "req_lvl": 29 }, "ne8": { "name": "Sexton Trophy", @@ -1437,7 +1974,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 47, + "req_dex": 0, + "req_lvl": 33 }, "ne9": { "name": "Cantor Trophy", @@ -1445,7 +1985,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 50, + "req_dex": 0, + "req_lvl": 36 }, "nea": { "name": "Heirophant Trophy", @@ -1453,7 +1996,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 58, + "req_dex": 0, + "req_lvl": 40 }, "drb": { "name": "Blood Spirit", @@ -1461,7 +2007,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 86, + "req_dex": 0, + "req_lvl": 46 }, "drc": { "name": "Sun Spirit", @@ -1469,7 +2018,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 95, + "req_dex": 0, + "req_lvl": 51 }, "drd": { "name": "Earth Spirit", @@ -1477,7 +2029,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 104, + "req_dex": 0, + "req_lvl": 57 }, "dre": { "name": "Sky Spirit", @@ -1485,7 +2040,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 113, + "req_dex": 0, + "req_lvl": 62 }, "drf": { "name": "Dream Spirit", @@ -1493,7 +2051,10 @@ "type": "pelt", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 118, + "req_dex": 0, + "req_lvl": 66 }, "bab": { "name": "Carnage Helm", @@ -1501,7 +2062,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 106, + "req_dex": 0, + "req_lvl": 45 }, "bac": { "name": "Fury Visor", @@ -1509,7 +2073,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 129, + "req_dex": 0, + "req_lvl": 49 }, "bad": { "name": "Destroyer Helm", @@ -1517,7 +2084,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 151, + "req_dex": 0, + "req_lvl": 54 }, "bae": { "name": "Conqueror Crown", @@ -1525,7 +2095,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 174, + "req_dex": 0, + "req_lvl": 60 }, "baf": { "name": "Guardian Crown", @@ -1533,7 +2106,10 @@ "type": "phlm", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 196, + "req_dex": 0, + "req_lvl": 65 }, "pab": { "name": "Sacred Targe", @@ -1541,7 +2117,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 86, + "req_dex": 0, + "req_lvl": 47 }, "pac": { "name": "Sacred Rondache", @@ -1549,7 +2128,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 109, + "req_dex": 0, + "req_lvl": 52 }, "pad": { "name": "Ancient Shield", @@ -1557,7 +2139,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 124, + "req_dex": 0, + "req_lvl": 55 }, "pae": { "name": "Zakarum Shield", @@ -1565,7 +2150,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 142, + "req_dex": 0, + "req_lvl": 61 }, "paf": { "name": "Vortex Shield", @@ -1573,7 +2161,10 @@ "type": "ashd", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 148, + "req_dex": 0, + "req_lvl": 66 }, "neb": { "name": "Minion Skull", @@ -1581,7 +2172,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 77, + "req_dex": 0, + "req_lvl": 44 }, "neg": { "name": "Hellspawn Skull", @@ -1589,7 +2183,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 82, + "req_dex": 0, + "req_lvl": 50 }, "ned": { "name": "Overseer Skull", @@ -1597,7 +2194,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 91, + "req_dex": 0, + "req_lvl": 49 }, "nee": { "name": "Succubus Skull", @@ -1605,7 +2205,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 95, + "req_dex": 0, + "req_lvl": 60 }, "nef": { "name": "Bloodlord Skull", @@ -1613,7 +2216,10 @@ "type": "head", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 106, + "req_dex": 0, + "req_lvl": 65 }, "hax": { "name": "Hand Axe", @@ -1621,7 +2227,10 @@ "type": "axe", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "axe": { "name": "Axe", @@ -1629,7 +2238,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 32, + "req_dex": 0, + "req_lvl": 0 }, "2ax": { "name": "Double Axe", @@ -1637,7 +2249,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 43, + "req_dex": 0, + "req_lvl": 0 }, "mpi": { "name": "Military Pick", @@ -1645,7 +2260,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 49, + "req_dex": 33, + "req_lvl": 0 }, "wax": { "name": "War Axe", @@ -1653,7 +2271,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 67, + "req_dex": 0, + "req_lvl": 0 }, "lax": { "name": "Large Axe", @@ -1661,7 +2282,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 35, + "req_dex": 0, + "req_lvl": 0 }, "bax": { "name": "Broad Axe ", @@ -1669,7 +2293,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 48, + "req_dex": 0, + "req_lvl": 0 }, "btx": { "name": "Battle Axe", @@ -1677,7 +2304,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 54, + "req_dex": 0, + "req_lvl": 0 }, "gax": { "name": "Great Axe", @@ -1685,7 +2315,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 63, + "req_dex": 39, + "req_lvl": 0 }, "gix": { "name": "Giant Axe", @@ -1693,7 +2326,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 70, + "req_dex": 0, + "req_lvl": 0 }, "wnd": { "name": "Wand", @@ -1701,7 +2337,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ywn": { "name": "Yew Wand", @@ -1709,7 +2348,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bwn": { "name": "Bone Wand", @@ -1717,7 +2359,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "gwn": { "name": "Grim Wand", @@ -1725,7 +2370,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "clb": { "name": "Club", @@ -1733,7 +2381,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "scp": { "name": "Scepter", @@ -1741,7 +2392,10 @@ "type": "scep", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 0 }, "gsc": { "name": "Grand Scepter", @@ -1749,7 +2403,10 @@ "type": "scep", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 37, + "req_dex": 0, + "req_lvl": 0 }, "wsp": { "name": "War Scepter", @@ -1757,7 +2414,10 @@ "type": "scep", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 55, + "req_dex": 0, + "req_lvl": 0 }, "spc": { "name": "Spiked Club", @@ -1765,7 +2425,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mac": { "name": "Mace", @@ -1773,7 +2436,10 @@ "type": "mace", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 27, + "req_dex": 0, + "req_lvl": 0 }, "mst": { "name": "Morning Star", @@ -1781,7 +2447,10 @@ "type": "mace", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 36, + "req_dex": 0, + "req_lvl": 0 }, "fla": { "name": "Flail", @@ -1789,7 +2458,10 @@ "type": "mace", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 41, + "req_dex": 35, + "req_lvl": 0 }, "whm": { "name": "War Hammer", @@ -1797,7 +2469,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 53, + "req_dex": 0, + "req_lvl": 0 }, "mau": { "name": "Maul", @@ -1805,7 +2480,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 69, + "req_dex": 0, + "req_lvl": 0 }, "gma": { "name": "Great Maul", @@ -1813,7 +2491,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 99, + "req_dex": 0, + "req_lvl": 0 }, "ssd": { "name": "Short Sword", @@ -1821,7 +2502,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "scm": { "name": "Scimitar", @@ -1829,7 +2513,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 21, + "req_lvl": 0 }, "sbr": { "name": "Saber", @@ -1837,7 +2524,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 25, + "req_lvl": 0 }, "flc": { "name": "Falchion", @@ -1845,7 +2535,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 33, + "req_dex": 0, + "req_lvl": 0 }, "crs": { "name": "Crystal Sword", @@ -1853,7 +2546,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 43, + "req_dex": 0, + "req_lvl": 0 }, "bsd": { "name": "Broad Sword", @@ -1861,7 +2557,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 48, + "req_dex": 0, + "req_lvl": 0 }, "lsd": { "name": "Long Sword ", @@ -1869,7 +2568,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 55, + "req_dex": 39, + "req_lvl": 0 }, "wsd": { "name": "War Sword", @@ -1877,7 +2579,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 71, + "req_dex": 45, + "req_lvl": 0 }, "2hs": { "name": "Two-Handed Sword", @@ -1885,7 +2590,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 35, + "req_dex": 27, + "req_lvl": 0 }, "clm": { "name": "Claymore", @@ -1893,7 +2601,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 47, + "req_dex": 0, + "req_lvl": 0 }, "gis": { "name": "Giant Sword", @@ -1901,7 +2612,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 56, + "req_dex": 34, + "req_lvl": 0 }, "bsw": { "name": "Bastard Sword", @@ -1909,7 +2623,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 62, + "req_dex": 0, + "req_lvl": 0 }, "flb": { "name": "Flamberge", @@ -1917,7 +2634,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 70, + "req_dex": 49, + "req_lvl": 0 }, "gsd": { "name": "Great Sword", @@ -1925,7 +2645,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 100, + "req_dex": 60, + "req_lvl": 0 }, "dgr": { "name": "Dagger", @@ -1933,7 +2656,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "dir": { "name": "Dirk", @@ -1941,7 +2667,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 25, + "req_lvl": 0 }, "kri": { "name": "Kriss", @@ -1949,7 +2678,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 45, + "req_lvl": 0 }, "bld": { "name": "Blade", @@ -1957,7 +2689,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 35, + "req_dex": 51, + "req_lvl": 0 }, "tkf": { "name": "Throwing Knife", @@ -1965,7 +2700,10 @@ "type": "tkni", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 21, + "req_lvl": 0 }, "tax": { "name": "Throwing Axe", @@ -1973,7 +2711,10 @@ "type": "taxe", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 40, + "req_lvl": 0 }, "bkf": { "name": "Balanced Knife", @@ -1981,7 +2722,10 @@ "type": "tkni", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 51, + "req_lvl": 0 }, "bal": { "name": "Balanced Axe", @@ -1989,7 +2733,10 @@ "type": "taxe", "stackable": true, "width": 2, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 57, + "req_lvl": 0 }, "jav": { "name": "Javelin", @@ -1997,7 +2744,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "pil": { "name": "Pilum", @@ -2005,7 +2755,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 45, + "req_lvl": 0 }, "ssp": { "name": "Short Spear", @@ -2013,7 +2766,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 40, + "req_dex": 40, + "req_lvl": 0 }, "glv": { "name": "Glaive", @@ -2021,7 +2777,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 4 + "height": 4, + "req_str": 52, + "req_dex": 35, + "req_lvl": 0 }, "tsp": { "name": "Throwing Spear", @@ -2029,7 +2788,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 4 + "height": 4, + "req_str": 0, + "req_dex": 65, + "req_lvl": 0 }, "spr": { "name": "Spear", @@ -2037,7 +2799,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 0, + "req_dex": 20, + "req_lvl": 0 }, "tri": { "name": "Trident", @@ -2045,7 +2810,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 38, + "req_dex": 24, + "req_lvl": 0 }, "brn": { "name": "Brandistock", @@ -2053,7 +2821,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 40, + "req_dex": 50, + "req_lvl": 0 }, "spt": { "name": "Spetum", @@ -2061,7 +2832,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 54, + "req_dex": 35, + "req_lvl": 0 }, "pik": { "name": "Pike", @@ -2069,7 +2843,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 60, + "req_dex": 45, + "req_lvl": 0 }, "bar": { "name": "Bardiche", @@ -2077,7 +2854,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 40, + "req_dex": 0, + "req_lvl": 0 }, "vou": { "name": "Voulge", @@ -2085,7 +2865,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 50, + "req_dex": 0, + "req_lvl": 0 }, "scy": { "name": "Scythe", @@ -2093,7 +2876,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 41, + "req_dex": 41, + "req_lvl": 0 }, "pax": { "name": "Poleaxe", @@ -2101,7 +2887,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 62, + "req_dex": 0, + "req_lvl": 0 }, "hal": { "name": "Halberd", @@ -2109,7 +2898,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 75, + "req_dex": 47, + "req_lvl": 0 }, "wsc": { "name": "War Scythe", @@ -2117,7 +2909,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 80, + "req_dex": 80, + "req_lvl": 0 }, "sst": { "name": "Short Staff", @@ -2125,7 +2920,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "lst": { "name": "Long Staff", @@ -2133,7 +2931,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "cst": { "name": "Gnarled Staff", @@ -2141,7 +2942,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bst": { "name": "Battle Staff", @@ -2149,7 +2953,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "wst": { "name": "War Staff", @@ -2157,7 +2964,10 @@ "type": "staf", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "sbw": { "name": "Short Bow", @@ -2165,7 +2975,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 15, + "req_lvl": 0 }, "hbw": { "name": "Hunter's Bow", @@ -2173,7 +2986,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 28, + "req_lvl": 0 }, "lbw": { "name": "Long Bow", @@ -2181,7 +2997,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 22, + "req_dex": 19, + "req_lvl": 0 }, "cbw": { "name": "Composite Bow", @@ -2189,7 +3008,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 35, + "req_lvl": 0 }, "sbb": { "name": "Short Battle Bow", @@ -2197,7 +3019,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 30, + "req_dex": 40, + "req_lvl": 0 }, "lbb": { "name": "Long Battle Bow", @@ -2205,7 +3030,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 40, + "req_dex": 50, + "req_lvl": 0 }, "swb": { "name": "Short War Bow", @@ -2213,7 +3041,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 35, + "req_dex": 55, + "req_lvl": 0 }, "lwb": { "name": "Long War Bow", @@ -2221,7 +3052,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 50, + "req_dex": 65, + "req_lvl": 0 }, "lxb": { "name": "Light Crossbow", @@ -2229,7 +3063,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 21, + "req_dex": 27, + "req_lvl": 0 }, "mxb": { "name": "Crossbow", @@ -2237,7 +3074,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 40, + "req_dex": 33, + "req_lvl": 0 }, "hxb": { "name": "Heavy Crossbow", @@ -2245,7 +3085,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 60, + "req_dex": 40, + "req_lvl": 0 }, "rxb": { "name": "Repeating Crossbow", @@ -2253,7 +3096,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 40, + "req_dex": 50, + "req_lvl": 0 }, "gps": { "name": "Rancid Gas Potion", @@ -2261,7 +3107,10 @@ "type": "tpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 24 }, "ops": { "name": "Oil Potion", @@ -2269,7 +3118,10 @@ "type": "tpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 20 }, "gpm": { "name": "Choking Gas Potion", @@ -2277,7 +3129,10 @@ "type": "tpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 16 }, "opm": { "name": "Exploding Potion", @@ -2285,7 +3140,10 @@ "type": "tpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "gpl": { "name": "Strangling Gas Potion", @@ -2293,7 +3151,10 @@ "type": "tpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 6 }, "opl": { "name": "Fulminating Potion", @@ -2301,7 +3162,10 @@ "type": "tpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "d33": { "name": "Decoy Gidbinn", @@ -2309,7 +3173,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 15, + "req_dex": 20, + "req_lvl": 0 }, "g33": { "name": "The Gidbinn", @@ -2317,7 +3184,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 15, + "req_dex": 25, + "req_lvl": 0 }, "leg": { "name": "Wirt's Leg", @@ -2325,7 +3195,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hdm": { "name": "Horadric Malus", @@ -2333,7 +3206,10 @@ "type": "hamm", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 15, + "req_dex": 15, + "req_lvl": 0 }, "hfh": { "name": "Hellforge Hammer", @@ -2341,7 +3217,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hst": { "name": "Horadric Staff", @@ -2349,7 +3228,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 30, + "req_dex": 0, + "req_lvl": 0 }, "msf": { "name": "Staff of Kings", @@ -2357,7 +3239,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 0 }, "9ha": { "name": "Hatchet", @@ -2365,7 +3250,10 @@ "type": "axe", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 25, + "req_lvl": 19 }, "9ax": { "name": "Cleaver", @@ -2373,7 +3261,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 68, + "req_dex": 0, + "req_lvl": 22 }, "92a": { "name": "Twin Axe", @@ -2381,7 +3272,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 85, + "req_dex": 0, + "req_lvl": 25 }, "9mp": { "name": "Crowbill", @@ -2389,7 +3283,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 94, + "req_dex": 70, + "req_lvl": 25 }, "9wa": { "name": "Naga", @@ -2397,7 +3294,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 121, + "req_dex": 0, + "req_lvl": 25 }, "9la": { "name": "Military Axe", @@ -2405,7 +3305,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 73, + "req_dex": 0, + "req_lvl": 22 }, "9ba": { "name": "Bearded Axe ", @@ -2413,7 +3316,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 92, + "req_dex": 0, + "req_lvl": 25 }, "9bt": { "name": "Tabar", @@ -2421,7 +3327,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 101, + "req_dex": 0, + "req_lvl": 25 }, "9ga": { "name": "Gothic Axe", @@ -2429,7 +3338,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 115, + "req_dex": 79, + "req_lvl": 25 }, "9gi": { "name": "Ancient Axe", @@ -2437,7 +3349,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 125, + "req_dex": 0, + "req_lvl": 25 }, "9wn": { "name": "Burnt Wand", @@ -2445,7 +3360,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 19 }, "9yw": { "name": "Petrified Wand", @@ -2453,7 +3371,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 25 }, "9bw": { "name": "Tomb Wand", @@ -2461,7 +3382,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 25 }, "9gw": { "name": "Grave Wand", @@ -2469,7 +3393,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 25 }, "9cl": { "name": "Cudgel", @@ -2477,7 +3404,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 18 }, "9sc": { "name": "Rune Scepter", @@ -2485,7 +3415,10 @@ "type": "scep", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 58, + "req_dex": 0, + "req_lvl": 19 }, "9qs": { "name": "Holy Water Sprinkler", @@ -2493,7 +3426,10 @@ "type": "scep", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 76, + "req_dex": 0, + "req_lvl": 25 }, "9ws": { "name": "Divine Scepter", @@ -2501,7 +3437,10 @@ "type": "scep", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 103, + "req_dex": 0, + "req_lvl": 25 }, "9sp": { "name": "Barbed Club", @@ -2509,7 +3448,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 30, + "req_dex": 0, + "req_lvl": 20 }, "9ma": { "name": "Flanged Mace", @@ -2517,7 +3459,10 @@ "type": "mace", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 61, + "req_dex": 0, + "req_lvl": 23 }, "9mt": { "name": "Jagged Star", @@ -2525,7 +3470,10 @@ "type": "mace", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 74, + "req_dex": 0, + "req_lvl": 25 }, "9fl": { "name": "Knout", @@ -2533,7 +3481,10 @@ "type": "mace", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 82, + "req_dex": 73, + "req_lvl": 25 }, "9wh": { "name": "Battle Hammer", @@ -2541,7 +3492,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 100, + "req_dex": 0, + "req_lvl": 25 }, "9m9": { "name": "War Club", @@ -2549,7 +3503,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 124, + "req_dex": 0, + "req_lvl": 25 }, "9gm": { "name": "Martel de Fer", @@ -2557,7 +3514,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 169, + "req_dex": 0, + "req_lvl": 25 }, "9ss": { "name": "Gladius", @@ -2565,7 +3525,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 18 }, "9sm": { "name": "Cutlass", @@ -2573,7 +3536,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 52, + "req_lvl": 25 }, "9sb": { "name": "Shamshir", @@ -2581,7 +3547,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 58, + "req_dex": 58, + "req_lvl": 23 }, "9fc": { "name": "Tulwar", @@ -2589,7 +3558,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 70, + "req_dex": 42, + "req_lvl": 25 }, "9cr": { "name": "Dimensional Blade", @@ -2597,7 +3569,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 85, + "req_dex": 60, + "req_lvl": 25 }, "9bs": { "name": "Battle Sword", @@ -2605,7 +3580,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 92, + "req_dex": 43, + "req_lvl": 25 }, "9ls": { "name": "Rune Sword", @@ -2613,7 +3591,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 103, + "req_dex": 79, + "req_lvl": 25 }, "9wd": { "name": "Ancient Sword", @@ -2621,7 +3602,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 127, + "req_dex": 88, + "req_lvl": 25 }, "92h": { "name": "Espandon", @@ -2629,7 +3613,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 73, + "req_dex": 61, + "req_lvl": 25 }, "9cm": { "name": "Dacian Falx", @@ -2637,7 +3624,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 91, + "req_dex": 20, + "req_lvl": 25 }, "9gs": { "name": "Tusk Sword", @@ -2645,7 +3635,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 104, + "req_dex": 71, + "req_lvl": 25 }, "9b9": { "name": "Gothic Sword", @@ -2653,7 +3646,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 113, + "req_dex": 20, + "req_lvl": 25 }, "9fb": { "name": "Zweihander", @@ -2661,7 +3657,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 125, + "req_dex": 94, + "req_lvl": 25 }, "9gd": { "name": "Executioner Sword", @@ -2669,7 +3668,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 170, + "req_dex": 110, + "req_lvl": 25 }, "9dg": { "name": "Poignard", @@ -2677,7 +3679,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 19 }, "9di": { "name": "Rondel", @@ -2685,7 +3690,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 58, + "req_lvl": 24 }, "9kr": { "name": "Cinquedeas", @@ -2693,7 +3701,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 88, + "req_lvl": 25 }, "9bl": { "name": "Stilleto", @@ -2701,7 +3712,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 47, + "req_dex": 97, + "req_lvl": 25 }, "9tk": { "name": "Battle Dart", @@ -2709,7 +3723,10 @@ "type": "tkni", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 52, + "req_lvl": 19 }, "9ta": { "name": "Francisca", @@ -2717,7 +3734,10 @@ "type": "taxe", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 80, + "req_lvl": 22 }, "9bk": { "name": "War Dart", @@ -2725,7 +3745,10 @@ "type": "tkni", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 97, + "req_lvl": 25 }, "9b8": { "name": "Hurlbat", @@ -2733,7 +3756,10 @@ "type": "taxe", "stackable": true, "width": 2, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 106, + "req_lvl": 25 }, "9ja": { "name": "War Javelin", @@ -2741,7 +3767,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 25, + "req_lvl": 18 }, "9pi": { "name": "Great Pilum", @@ -2749,7 +3778,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 88, + "req_lvl": 25 }, "9s9": { "name": "Simbilan", @@ -2757,7 +3789,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 80, + "req_dex": 80, + "req_lvl": 25 }, "9gl": { "name": "Spiculum", @@ -2765,7 +3800,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 4 + "height": 4, + "req_str": 98, + "req_dex": 73, + "req_lvl": 25 }, "9ts": { "name": "Harpoon", @@ -2773,7 +3811,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 4 + "height": 4, + "req_str": 25, + "req_dex": 118, + "req_lvl": 25 }, "9sr": { "name": "War Spear", @@ -2781,7 +3822,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 25, + "req_dex": 25, + "req_lvl": 21 }, "9tr": { "name": "Fuscina", @@ -2789,7 +3833,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 77, + "req_dex": 25, + "req_lvl": 24 }, "9br": { "name": "War Fork", @@ -2797,7 +3844,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 80, + "req_dex": 95, + "req_lvl": 25 }, "9st": { "name": "Yari", @@ -2805,7 +3855,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 101, + "req_dex": 0, + "req_lvl": 25 }, "9p9": { "name": "Lance", @@ -2813,7 +3866,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 110, + "req_dex": 88, + "req_lvl": 25 }, "9b7": { "name": "Lochaber Axe", @@ -2821,7 +3877,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 80, + "req_dex": 0, + "req_lvl": 21 }, "9vo": { "name": "Bill", @@ -2829,7 +3888,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 95, + "req_dex": 0, + "req_lvl": 25 }, "9s8": { "name": "Battle Scythe", @@ -2837,7 +3899,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 82, + "req_dex": 82, + "req_lvl": 25 }, "9pa": { "name": "Partizan", @@ -2845,7 +3910,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 113, + "req_dex": 67, + "req_lvl": 23 }, "9h9": { "name": "Bec-de-Corbin", @@ -2853,7 +3921,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 133, + "req_dex": 91, + "req_lvl": 25 }, "9wc": { "name": "Grim Scythe", @@ -2861,7 +3932,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 140, + "req_dex": 140, + "req_lvl": 25 }, "8ss": { "name": "Jo Staff", @@ -2869,7 +3943,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 18 }, "8ls": { "name": "Quarterstaff", @@ -2877,7 +3954,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 25, + "req_dex": 0, + "req_lvl": 23 }, "8cs": { "name": "Cedar Staff", @@ -2885,7 +3965,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 25, + "req_dex": 0, + "req_lvl": 25 }, "8bs": { "name": "Gothic Staff", @@ -2893,7 +3976,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 25, + "req_dex": 0, + "req_lvl": 25 }, "8ws": { "name": "Rune Staff", @@ -2901,7 +3987,10 @@ "type": "staf", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 25, + "req_dex": 0, + "req_lvl": 25 }, "8sb": { "name": "Edge Bow", @@ -2909,7 +3998,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 43, + "req_lvl": 18 }, "8hb": { "name": "Razor Bow", @@ -2917,7 +4009,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 62, + "req_lvl": 21 }, "8lb": { "name": "Cedar Bow", @@ -2925,7 +4020,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 53, + "req_dex": 49, + "req_lvl": 23 }, "8cb": { "name": "Double Bow", @@ -2933,7 +4031,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 58, + "req_dex": 73, + "req_lvl": 25 }, "8s8": { "name": "Short Siege Bow", @@ -2941,7 +4042,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 65, + "req_dex": 80, + "req_lvl": 25 }, "8l8": { "name": "Long Siege Bow", @@ -2949,7 +4053,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 80, + "req_dex": 95, + "req_lvl": 25 }, "8sw": { "name": "Rune Bow", @@ -2957,7 +4064,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 73, + "req_dex": 103, + "req_lvl": 25 }, "8lw": { "name": "Gothic Bow", @@ -2965,7 +4075,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 95, + "req_dex": 118, + "req_lvl": 25 }, "8lx": { "name": "Arbalest", @@ -2973,7 +4086,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 52, + "req_dex": 61, + "req_lvl": 22 }, "8mx": { "name": "Siege Crossbow", @@ -2981,7 +4097,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 80, + "req_dex": 70, + "req_lvl": 25 }, "8hx": { "name": "Ballista", @@ -2989,7 +4108,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 110, + "req_dex": 80, + "req_lvl": 25 }, "8rx": { "name": "Chu-Ko-Nu", @@ -2997,7 +4119,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 80, + "req_dex": 95, + "req_lvl": 25 }, "qf1": { "name": "Khalim's Flail", @@ -3005,7 +4130,10 @@ "type": "mace", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 41, + "req_dex": 35, + "req_lvl": 0 }, "qf2": { "name": "Khalim's Will", @@ -3013,7 +4141,10 @@ "type": "mace", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ktr": { "name": "Katar", @@ -3021,7 +4152,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 20, + "req_dex": 20, + "req_lvl": 0 }, "wrb": { "name": "Wrist Blade", @@ -3029,7 +4163,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 33, + "req_dex": 33, + "req_lvl": 0 }, "axf": { "name": "Hatchet Hands", @@ -3037,7 +4174,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 37, + "req_dex": 37, + "req_lvl": 0 }, "ces": { "name": "Cestus", @@ -3045,7 +4185,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 42, + "req_dex": 42, + "req_lvl": 0 }, "clw": { "name": "Claws", @@ -3053,7 +4196,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 46, + "req_dex": 46, + "req_lvl": 0 }, "btl": { "name": "Blade Talons", @@ -3061,7 +4207,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 50, + "req_dex": 50, + "req_lvl": 0 }, "skr": { "name": "Scissors Katar", @@ -3069,7 +4218,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 55, + "req_dex": 55, + "req_lvl": 0 }, "9ar": { "name": "Quhab", @@ -3077,7 +4229,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 57, + "req_dex": 57, + "req_lvl": 21 }, "9wb": { "name": "Wrist Spike", @@ -3085,7 +4240,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 66, + "req_dex": 66, + "req_lvl": 24 }, "9xf": { "name": "Fascia", @@ -3093,7 +4251,10 @@ "type": "h2h", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 69, + "req_dex": 69, + "req_lvl": 27 }, "9cs": { "name": "Hand Scythe", @@ -3101,7 +4262,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 73, + "req_dex": 73, + "req_lvl": 30 }, "9lw": { "name": "Greater Claws", @@ -3109,7 +4273,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 76, + "req_dex": 76, + "req_lvl": 33 }, "9tw": { "name": "Greater Talons", @@ -3117,7 +4284,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 79, + "req_dex": 79, + "req_lvl": 37 }, "9qr": { "name": "Scissors Quhab", @@ -3125,7 +4295,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 82, + "req_dex": 82, + "req_lvl": 40 }, "7ar": { "name": "Suwayyah", @@ -3133,7 +4306,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 99, + "req_dex": 99, + "req_lvl": 44 }, "7wb": { "name": "Wrist Sword", @@ -3141,7 +4317,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 105, + "req_dex": 105, + "req_lvl": 46 }, "7xf": { "name": "War Fist", @@ -3149,7 +4328,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 108, + "req_dex": 108, + "req_lvl": 51 }, "7cs": { "name": "Battle Cestus", @@ -3157,7 +4339,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 110, + "req_dex": 110, + "req_lvl": 54 }, "7lw": { "name": "Feral Claws", @@ -3165,7 +4350,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 113, + "req_dex": 113, + "req_lvl": 58 }, "7tw": { "name": "Runic Talons", @@ -3173,7 +4361,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 115, + "req_dex": 115, + "req_lvl": 60 }, "7qr": { "name": "Scissors Suwayyah", @@ -3181,7 +4372,10 @@ "type": "h2h2", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 118, + "req_dex": 118, + "req_lvl": 64 }, "7ha": { "name": "Tomahawk", @@ -3189,7 +4383,10 @@ "type": "axe", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 125, + "req_dex": 67, + "req_lvl": 40 }, "7ax": { "name": "Small Crescent", @@ -3197,7 +4394,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 115, + "req_dex": 83, + "req_lvl": 45 }, "72a": { "name": "Ettin Axe", @@ -3205,7 +4405,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 145, + "req_dex": 45, + "req_lvl": 52 }, "7mp": { "name": "War Spike", @@ -3213,7 +4416,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 133, + "req_dex": 54, + "req_lvl": 59 }, "7wa": { "name": "Berserker Axe", @@ -3221,7 +4427,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 138, + "req_dex": 59, + "req_lvl": 64 }, "7la": { "name": "Feral Axe", @@ -3229,7 +4438,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 196, + "req_dex": 0, + "req_lvl": 42 }, "7ba": { "name": "Silver-edged Axe", @@ -3237,7 +4449,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 166, + "req_dex": 65, + "req_lvl": 48 }, "7bt": { "name": "Decapitator", @@ -3245,7 +4460,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 189, + "req_dex": 33, + "req_lvl": 54 }, "7ga": { "name": "Champion Axe", @@ -3253,7 +4471,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 167, + "req_dex": 59, + "req_lvl": 61 }, "7gi": { "name": "Glorious Axe", @@ -3261,7 +4482,10 @@ "type": "axe", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 164, + "req_dex": 55, + "req_lvl": 66 }, "7wn": { "name": "Polished Wand", @@ -3269,7 +4493,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 41 }, "7yw": { "name": "Ghost Wand", @@ -3277,7 +4504,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 48 }, "7bw": { "name": "Lich Wand", @@ -3285,7 +4515,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 56 }, "7gw": { "name": "Unearthed Wand", @@ -3293,7 +4526,10 @@ "type": "wand", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 25, + "req_dex": 0, + "req_lvl": 64 }, "7cl": { "name": "Truncheon", @@ -3301,7 +4537,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 88, + "req_dex": 43, + "req_lvl": 39 }, "7sc": { "name": "Mighty Scepter", @@ -3309,7 +4548,10 @@ "type": "scep", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 125, + "req_dex": 65, + "req_lvl": 46 }, "7qs": { "name": "Seraph Rod", @@ -3317,7 +4559,10 @@ "type": "scep", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 108, + "req_dex": 69, + "req_lvl": 57 }, "7ws": { "name": "Caduceus", @@ -3325,7 +4570,10 @@ "type": "scep", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 97, + "req_dex": 70, + "req_lvl": 66 }, "7sp": { "name": "Tyrant Club", @@ -3333,7 +4581,10 @@ "type": "club", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 133, + "req_dex": 0, + "req_lvl": 42 }, "7ma": { "name": "Reinforced Mace", @@ -3341,7 +4592,10 @@ "type": "mace", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 145, + "req_dex": 46, + "req_lvl": 47 }, "7mt": { "name": "Devil Star", @@ -3349,7 +4603,10 @@ "type": "mace", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 153, + "req_dex": 44, + "req_lvl": 52 }, "7fl": { "name": "Scourge", @@ -3357,7 +4614,10 @@ "type": "mace", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 125, + "req_dex": 77, + "req_lvl": 57 }, "7wh": { "name": "Legendary Mallet", @@ -3365,7 +4625,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 189, + "req_dex": 0, + "req_lvl": 61 }, "7m7": { "name": "Ogre Maul", @@ -3373,7 +4636,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 225, + "req_dex": 0, + "req_lvl": 51 }, "7gm": { "name": "Thunder Maul", @@ -3381,7 +4647,10 @@ "type": "hamm", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 253, + "req_dex": 0, + "req_lvl": 65 }, "7ss": { "name": "Falcata", @@ -3389,7 +4658,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 150, + "req_dex": 88, + "req_lvl": 42 }, "7sm": { "name": "Ataghan", @@ -3397,7 +4669,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 138, + "req_dex": 95, + "req_lvl": 45 }, "7sb": { "name": "Elegant Blade", @@ -3405,7 +4680,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 109, + "req_dex": 122, + "req_lvl": 47 }, "7fc": { "name": "Hydra Edge", @@ -3413,7 +4691,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 142, + "req_dex": 105, + "req_lvl": 51 }, "7cr": { "name": "Phase Blade", @@ -3421,7 +4702,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 136, + "req_lvl": 54 }, "7bs": { "name": "Conquest Sword", @@ -3429,7 +4713,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 142, + "req_dex": 112, + "req_lvl": 58 }, "7ls": { "name": "Cryptic Sword", @@ -3437,7 +4724,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 99, + "req_dex": 109, + "req_lvl": 61 }, "7wd": { "name": "Mythical Sword", @@ -3445,7 +4735,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 147, + "req_dex": 124, + "req_lvl": 66 }, "72h": { "name": "Legend Sword", @@ -3453,7 +4746,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 175, + "req_dex": 100, + "req_lvl": 44 }, "7cm": { "name": "Highland Blade", @@ -3461,7 +4757,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 171, + "req_dex": 104, + "req_lvl": 49 }, "7gs": { "name": "Balrog Blade", @@ -3469,7 +4768,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 185, + "req_dex": 87, + "req_lvl": 53 }, "7b7": { "name": "Champion Sword", @@ -3477,7 +4779,10 @@ "type": "swor", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 163, + "req_dex": 103, + "req_lvl": 57 }, "7fb": { "name": "Colossal Sword", @@ -3485,7 +4790,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 182, + "req_dex": 95, + "req_lvl": 60 }, "7gd": { "name": "Colossus Blade", @@ -3493,7 +4801,10 @@ "type": "swor", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 189, + "req_dex": 110, + "req_lvl": 63 }, "7dg": { "name": "Bone Knife", @@ -3501,7 +4812,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 38, + "req_dex": 75, + "req_lvl": 43 }, "7di": { "name": "Mithral Point", @@ -3509,7 +4823,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 55, + "req_dex": 98, + "req_lvl": 52 }, "7kr": { "name": "Fanged Knife", @@ -3517,7 +4834,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 42, + "req_dex": 86, + "req_lvl": 62 }, "7bl": { "name": "Legend Spike", @@ -3525,7 +4845,10 @@ "type": "knif", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 65, + "req_dex": 67, + "req_lvl": 66 }, "7tk": { "name": "Flying Knife", @@ -3533,7 +4856,10 @@ "type": "tkni", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 48, + "req_dex": 141, + "req_lvl": 48 }, "7ta": { "name": "Flying Axe", @@ -3541,7 +4867,10 @@ "type": "taxe", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 88, + "req_dex": 108, + "req_lvl": 42 }, "7bk": { "name": "Winged Knife", @@ -3549,7 +4878,10 @@ "type": "tkni", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 45, + "req_dex": 142, + "req_lvl": 57 }, "7b8": { "name": "Winged Axe", @@ -3557,7 +4889,10 @@ "type": "taxe", "stackable": true, "width": 2, - "height": 3 + "height": 3, + "req_str": 96, + "req_dex": 122, + "req_lvl": 60 }, "7ja": { "name": "Hyperion Javelin", @@ -3565,7 +4900,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 98, + "req_dex": 123, + "req_lvl": 40 }, "7pi": { "name": "Stygian Pilum", @@ -3573,7 +4911,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 118, + "req_dex": 112, + "req_lvl": 46 }, "7s7": { "name": "Balrog Spear", @@ -3581,7 +4922,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 127, + "req_dex": 95, + "req_lvl": 53 }, "7gl": { "name": "Ghost Glaive", @@ -3589,7 +4933,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 4 + "height": 4, + "req_str": 89, + "req_dex": 137, + "req_lvl": 59 }, "7ts": { "name": "Winged Harpoon", @@ -3597,7 +4944,10 @@ "type": "jave", "stackable": true, "width": 1, - "height": 4 + "height": 4, + "req_str": 76, + "req_dex": 145, + "req_lvl": 65 }, "7sr": { "name": "Hyperion Spear", @@ -3605,7 +4955,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 155, + "req_dex": 120, + "req_lvl": 43 }, "7tr": { "name": "Stygian Pike", @@ -3613,7 +4966,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 168, + "req_dex": 97, + "req_lvl": 49 }, "7br": { "name": "Mancatcher", @@ -3621,7 +4977,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 132, + "req_dex": 134, + "req_lvl": 55 }, "7st": { "name": "Ghost Spear", @@ -3629,7 +4988,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 122, + "req_dex": 163, + "req_lvl": 62 }, "7p7": { "name": "War Pike", @@ -3637,7 +4999,10 @@ "type": "spea", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 165, + "req_dex": 106, + "req_lvl": 66 }, "7o7": { "name": "Ogre Axe", @@ -3645,7 +5010,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 195, + "req_dex": 75, + "req_lvl": 45 }, "7vo": { "name": "Colossus Voulge", @@ -3653,7 +5021,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 210, + "req_dex": 55, + "req_lvl": 48 }, "7s8": { "name": "Thresher", @@ -3661,7 +5032,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 152, + "req_dex": 118, + "req_lvl": 53 }, "7pa": { "name": "Cryptic Axe", @@ -3669,7 +5043,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 165, + "req_dex": 103, + "req_lvl": 59 }, "7h7": { "name": "Great Poleaxe", @@ -3677,7 +5054,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 179, + "req_dex": 99, + "req_lvl": 63 }, "7wc": { "name": "Giant Thresher", @@ -3685,7 +5065,10 @@ "type": "pole", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 188, + "req_dex": 140, + "req_lvl": 66 }, "6ss": { "name": "Walking Stick", @@ -3693,7 +5076,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 0, + "req_lvl": 43 }, "6ls": { "name": "Stalagmite", @@ -3701,7 +5087,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 63, + "req_dex": 35, + "req_lvl": 49 }, "6cs": { "name": "Elder Staff", @@ -3709,7 +5098,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 44, + "req_dex": 37, + "req_lvl": 55 }, "6bs": { "name": "Shillelagh", @@ -3717,7 +5109,10 @@ "type": "staf", "stackable": false, "width": 1, - "height": 4 + "height": 4, + "req_str": 52, + "req_dex": 27, + "req_lvl": 62 }, "6ws": { "name": "Archon Staff", @@ -3725,7 +5120,10 @@ "type": "staf", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 34, + "req_dex": 0, + "req_lvl": 66 }, "6sb": { "name": "Spider Bow", @@ -3733,7 +5131,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 64, + "req_dex": 143, + "req_lvl": 41 }, "6hb": { "name": "Blade Bow", @@ -3741,7 +5142,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 76, + "req_dex": 119, + "req_lvl": 45 }, "6lb": { "name": "Shadow Bow", @@ -3749,7 +5153,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 52, + "req_dex": 188, + "req_lvl": 47 }, "6cb": { "name": "Great Bow", @@ -3757,7 +5164,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 121, + "req_dex": 107, + "req_lvl": 51 }, "6s7": { "name": "Diamond Bow", @@ -3765,7 +5175,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 89, + "req_dex": 132, + "req_lvl": 54 }, "6l7": { "name": "Crusader Bow", @@ -3773,7 +5186,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 97, + "req_dex": 121, + "req_lvl": 57 }, "6sw": { "name": "Ward Bow", @@ -3781,7 +5197,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 72, + "req_dex": 146, + "req_lvl": 60 }, "6lw": { "name": "Hydra Bow", @@ -3789,7 +5208,10 @@ "type": "bow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 134, + "req_dex": 167, + "req_lvl": 63 }, "6lx": { "name": "Pellet Bow", @@ -3797,7 +5219,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 83, + "req_dex": 155, + "req_lvl": 42 }, "6mx": { "name": "Gorgon Crossbow", @@ -3805,7 +5230,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 117, + "req_dex": 105, + "req_lvl": 50 }, "6hx": { "name": "Colossus Crossbow", @@ -3813,7 +5241,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 163, + "req_dex": 77, + "req_lvl": 56 }, "6rx": { "name": "Demon Crossbow", @@ -3821,7 +5252,10 @@ "type": "xbow", "stackable": false, "width": 2, - "height": 3 + "height": 3, + "req_str": 141, + "req_dex": 98, + "req_lvl": 63 }, "ob1": { "name": "Eagle Orb", @@ -3829,7 +5263,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ob2": { "name": "Sacred Globe", @@ -3837,7 +5274,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ob3": { "name": "Smoked Sphere", @@ -3845,7 +5285,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 8 }, "ob4": { "name": "Clasped Orb", @@ -3853,7 +5296,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 13 }, "ob5": { "name": "Jared's Stone", @@ -3861,7 +5307,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "am1": { "name": "Stag Bow", @@ -3869,7 +5318,10 @@ "type": "abow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 30, + "req_dex": 45, + "req_lvl": 14 }, "am2": { "name": "Reflex Bow", @@ -3877,7 +5329,10 @@ "type": "abow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 35, + "req_dex": 60, + "req_lvl": 20 }, "am3": { "name": "Maiden Spear", @@ -3885,7 +5340,10 @@ "type": "aspe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 54, + "req_dex": 40, + "req_lvl": 14 }, "am4": { "name": "Maiden Pike", @@ -3893,7 +5351,10 @@ "type": "aspe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 63, + "req_dex": 52, + "req_lvl": 20 }, "am5": { "name": "Maiden Javelin", @@ -3901,7 +5362,10 @@ "type": "ajav", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 33, + "req_dex": 47, + "req_lvl": 17 }, "ob6": { "name": "Glowing Orb", @@ -3909,7 +5373,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 24 }, "ob7": { "name": "Crystalline Globe", @@ -3917,7 +5384,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 27 }, "ob8": { "name": "Cloudy Sphere", @@ -3925,7 +5395,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 30 }, "ob9": { "name": "Sparkling Ball", @@ -3933,7 +5406,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 34 }, "oba": { "name": "Swirling Crystal", @@ -3941,7 +5417,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 37 }, "am6": { "name": "Ashwood Bow", @@ -3949,7 +5428,10 @@ "type": "abow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 56, + "req_dex": 77, + "req_lvl": 29 }, "am7": { "name": "Ceremonial Bow", @@ -3957,7 +5439,10 @@ "type": "abow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 73, + "req_dex": 110, + "req_lvl": 35 }, "am8": { "name": "Ceremonial Spear", @@ -3965,7 +5450,10 @@ "type": "aspe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 101, + "req_dex": 80, + "req_lvl": 32 }, "am9": { "name": "Ceremonial Pike", @@ -3973,7 +5461,10 @@ "type": "aspe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 115, + "req_dex": 98, + "req_lvl": 38 }, "ama": { "name": "Ceremonial Javelin", @@ -3981,7 +5472,10 @@ "type": "ajav", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 25, + "req_dex": 109, + "req_lvl": 26 }, "obb": { "name": "Heavenly Stone", @@ -3989,7 +5483,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 44 }, "obc": { "name": "Eldritch Orb", @@ -3997,7 +5494,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 50 }, "obd": { "name": "Demon Heart", @@ -4005,7 +5505,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 56 }, "obe": { "name": "Vortex Orb", @@ -4013,7 +5516,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 63 }, "obf": { "name": "Dimensional Shard", @@ -4021,7 +5527,10 @@ "type": "orb", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 66 }, "amb": { "name": "Matriarchal Bow", @@ -4029,7 +5538,10 @@ "type": "abow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 87, + "req_dex": 187, + "req_lvl": 39 }, "amc": { "name": "Grand Matron Bow", @@ -4037,7 +5549,10 @@ "type": "abow", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 108, + "req_dex": 152, + "req_lvl": 58 }, "amd": { "name": "Matriarchal Spear", @@ -4045,7 +5560,10 @@ "type": "aspe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 114, + "req_dex": 142, + "req_lvl": 45 }, "ame": { "name": "Matriarchal Pike", @@ -4053,7 +5571,10 @@ "type": "aspe", "stackable": false, "width": 2, - "height": 4 + "height": 4, + "req_str": 132, + "req_dex": 149, + "req_lvl": 60 }, "amf": { "name": "Matriarchal Javelin", @@ -4061,7 +5582,10 @@ "type": "ajav", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 107, + "req_dex": 151, + "req_lvl": 48 }, "elx": { "name": "Elixir", @@ -4069,7 +5593,10 @@ "type": "elix", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hpo": { "name": "Healing Potion", @@ -4077,7 +5604,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mpo": { "name": "Mana Potion", @@ -4085,7 +5615,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hpf": { "name": "Full Healing Potion", @@ -4093,7 +5626,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mpf": { "name": "Full Mana Potion", @@ -4101,7 +5637,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "vps": { "name": "Stamina Potion", @@ -4109,7 +5648,10 @@ "type": "spot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "yps": { "name": "Antidote Potion", @@ -4117,7 +5659,10 @@ "type": "apot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "rvs": { "name": "Rejuvenation Potion", @@ -4125,7 +5670,10 @@ "type": "rpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "rvl": { "name": "Full Rejuvenation Potion", @@ -4133,7 +5681,10 @@ "type": "rpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "wms": { "name": "Thawing Potion", @@ -4141,7 +5692,10 @@ "type": "wpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tbk": { "name": "Tome of Town Portal", @@ -4149,7 +5703,10 @@ "type": "book", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ibk": { "name": "Tome of Identify", @@ -4157,7 +5714,10 @@ "type": "book", "stackable": true, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "amu": { "name": "Amulet", @@ -4165,7 +5725,10 @@ "type": "amul", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "vip": { "name": "Amulet of the Viper", @@ -4173,7 +5736,10 @@ "type": "amul", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "rin": { "name": "Ring", @@ -4181,7 +5747,10 @@ "type": "ring", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "gld": { "name": "Gold", @@ -4189,7 +5758,10 @@ "type": "gold", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bks": { "name": "Scroll of Inifuss", @@ -4197,7 +5769,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bkd": { "name": "Key to the Cairn Stones", @@ -4205,7 +5780,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "aqv": { "name": "Arrows", @@ -4213,7 +5791,10 @@ "type": "bowq", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tch": { "name": "Torch", @@ -4221,7 +5802,10 @@ "type": "torc", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "cqv": { "name": "Bolts", @@ -4229,7 +5813,10 @@ "type": "xboq", "stackable": true, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tsc": { "name": "Scroll of Town Portal", @@ -4237,7 +5824,10 @@ "type": "scro", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "isc": { "name": "Scroll of Identify", @@ -4245,7 +5835,10 @@ "type": "scro", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hrt": { "name": "Heart", @@ -4253,7 +5846,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "brz": { "name": "Brain", @@ -4261,7 +5857,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "jaw": { "name": "Jawbone", @@ -4269,7 +5868,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "eyz": { "name": "Eye", @@ -4277,7 +5879,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hrn": { "name": "Horn", @@ -4285,7 +5890,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tal": { "name": "Tail", @@ -4293,7 +5901,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "flg": { "name": "Flag", @@ -4301,7 +5912,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "fng": { "name": "Fang", @@ -4309,7 +5923,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "qll": { "name": "Quill", @@ -4317,7 +5934,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "sol": { "name": "Soul", @@ -4325,7 +5945,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "scz": { "name": "Scalp", @@ -4333,7 +5956,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "spe": { "name": "Spleen", @@ -4341,7 +5967,10 @@ "type": "body", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "key": { "name": "Key", @@ -4349,7 +5978,10 @@ "type": "key", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "luv": { "name": "The Black Tower Key", @@ -4357,7 +5989,10 @@ "type": "key", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "xyz": { "name": "Potion of Life", @@ -4365,7 +6000,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "j34": { "name": "A Jade Figurine", @@ -4373,7 +6011,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "g34": { "name": "The Golden Bird", @@ -4381,7 +6022,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bbb": { "name": "Lam Esen's Tome", @@ -4389,7 +6033,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "box": { "name": "Horadric Cube", @@ -4397,7 +6044,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tr1": { "name": "Horadric Scroll", @@ -4405,7 +6055,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mss": { "name": "Mephisto's Soulstone", @@ -4413,7 +6066,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ass": { "name": "Book of Skill", @@ -4421,7 +6077,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "qey": { "name": "Khalim's Eye", @@ -4429,7 +6088,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "qhr": { "name": "Khalim's Heart", @@ -4437,7 +6099,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "qbr": { "name": "Khalim's Brain", @@ -4445,7 +6110,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ear": { "name": "Ear", @@ -4453,7 +6121,10 @@ "type": "play", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "gcv": { "name": "Chipped Amethyst", @@ -4461,7 +6132,10 @@ "type": "gema", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "gfv": { "name": "Flawed Amethyst", @@ -4469,7 +6143,10 @@ "type": "gema", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "gsv": { "name": "Amethyst", @@ -4477,7 +6154,10 @@ "type": "gema", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "gzv": { "name": "Flawless Amethyst", @@ -4485,7 +6165,10 @@ "type": "gema", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "gpv": { "name": "Perfect Amethyst", @@ -4493,7 +6176,10 @@ "type": "gema", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "gcy": { "name": "Chipped Topaz", @@ -4501,7 +6187,10 @@ "type": "gemt", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "gfy": { "name": "Flawed Topaz", @@ -4509,7 +6198,10 @@ "type": "gemt", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "gsy": { "name": "Topaz", @@ -4517,7 +6209,10 @@ "type": "gemt", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "gly": { "name": "Flawless Topaz", @@ -4525,7 +6220,10 @@ "type": "gemt", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "gpy": { "name": "Perfect Topaz", @@ -4533,7 +6231,10 @@ "type": "gemt", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "gcb": { "name": "Chipped Sapphire", @@ -4541,7 +6242,10 @@ "type": "gems", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "gfb": { "name": "Flawed Sapphire", @@ -4549,7 +6253,10 @@ "type": "gems", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "gsb": { "name": "Sapphire", @@ -4557,7 +6264,10 @@ "type": "gems", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "glb": { "name": "Flawless Sapphire", @@ -4565,7 +6275,10 @@ "type": "gems", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "gpb": { "name": "Perfect Sapphire", @@ -4573,7 +6286,10 @@ "type": "gems", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "gcg": { "name": "Chipped Emerald", @@ -4581,7 +6297,10 @@ "type": "geme", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "gfg": { "name": "Flawed Emerald", @@ -4589,7 +6308,10 @@ "type": "geme", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "gsg": { "name": "Emerald", @@ -4597,7 +6319,10 @@ "type": "geme", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "glg": { "name": "Flawless Emerald", @@ -4605,7 +6330,10 @@ "type": "geme", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "gpg": { "name": "Perfect Emerald", @@ -4613,7 +6341,10 @@ "type": "geme", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "gcr": { "name": "Chipped Ruby", @@ -4621,7 +6352,10 @@ "type": "gemr", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "gfr": { "name": "Flawed Ruby", @@ -4629,7 +6363,10 @@ "type": "gemr", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "gsr": { "name": "Ruby", @@ -4637,7 +6374,10 @@ "type": "gemr", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "glr": { "name": "Flawless Ruby", @@ -4645,7 +6385,10 @@ "type": "gemr", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "gpr": { "name": "Perfect Ruby", @@ -4653,7 +6396,10 @@ "type": "gemr", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "gcw": { "name": "Chipped Diamond", @@ -4661,7 +6407,10 @@ "type": "gemd", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "gfw": { "name": "Flawed Diamond", @@ -4669,7 +6418,10 @@ "type": "gemd", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "gsw": { "name": "Diamond", @@ -4677,7 +6429,10 @@ "type": "gemd", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "glw": { "name": "Flawless Diamond", @@ -4685,7 +6440,10 @@ "type": "gemd", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "gpw": { "name": "Perfect Diamond", @@ -4693,7 +6451,10 @@ "type": "gemd", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "hp1": { "name": "Minor Healing Potion", @@ -4701,7 +6462,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hp2": { "name": "Light Healing Potion", @@ -4709,7 +6473,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hp3": { "name": "Healing Potion", @@ -4717,7 +6484,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hp4": { "name": "Greater Healing Potion", @@ -4725,7 +6495,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "hp5": { "name": "Super Healing Potion", @@ -4733,7 +6506,10 @@ "type": "hpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mp1": { "name": "Minor Mana Potion", @@ -4741,7 +6517,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mp2": { "name": "Light Mana Potion", @@ -4749,7 +6528,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mp3": { "name": "Mana Potion", @@ -4757,7 +6539,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mp4": { "name": "Greater Mana Potion", @@ -4765,7 +6550,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mp5": { "name": "Super Mana Potion", @@ -4773,7 +6561,10 @@ "type": "mpot", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "skc": { "name": "Chipped Skull", @@ -4781,7 +6572,10 @@ "type": "gemz", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 1 }, "skf": { "name": "Flawed Skull", @@ -4789,7 +6583,10 @@ "type": "gemz", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 5 }, "sku": { "name": "Skull", @@ -4797,7 +6594,10 @@ "type": "gemz", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 12 }, "skl": { "name": "Flawless Skull", @@ -4805,7 +6605,10 @@ "type": "gemz", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "skz": { "name": "Perfect Skull", @@ -4813,7 +6616,10 @@ "type": "gemz", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 18 }, "hrb": { "name": "Herb", @@ -4821,7 +6627,10 @@ "type": "herb", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "cm1": { "name": "Small Charm", @@ -4829,7 +6638,10 @@ "type": "scha", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "cm2": { "name": "Large Charm", @@ -4837,7 +6649,10 @@ "type": "mcha", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "cm3": { "name": "Grand Charm", @@ -4845,7 +6660,10 @@ "type": "lcha", "stackable": false, "width": 1, - "height": 3 + "height": 3, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "rps": { "name": "Small Red Potion", @@ -4853,7 +6671,10 @@ "type": "hpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "rpl": { "name": "Large Red Potion", @@ -4861,7 +6682,10 @@ "type": "hpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bps": { "name": "Small Blue Potion", @@ -4869,7 +6693,10 @@ "type": "mpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bpl": { "name": "Large Blue Potion", @@ -4877,7 +6704,10 @@ "type": "mpot", "stackable": true, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "r01": { "name": "El Rune", @@ -4885,7 +6715,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 11 }, "r02": { "name": "Eld Rune", @@ -4893,7 +6726,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 11 }, "r03": { "name": "Tir Rune", @@ -4901,7 +6737,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 13 }, "r04": { "name": "Nef Rune", @@ -4909,7 +6748,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 13 }, "r05": { "name": "Eth Rune", @@ -4917,7 +6759,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "r06": { "name": "Ith Rune", @@ -4925,7 +6770,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 15 }, "r07": { "name": "Tal Rune", @@ -4933,7 +6781,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 17 }, "r08": { "name": "Ral Rune", @@ -4941,7 +6792,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 19 }, "r09": { "name": "Ort Rune", @@ -4949,7 +6803,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 21 }, "r10": { "name": "Thul Rune", @@ -4957,7 +6814,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 23 }, "r11": { "name": "Amn Rune", @@ -4965,7 +6825,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 25 }, "r12": { "name": "Sol Rune", @@ -4973,7 +6836,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 27 }, "r13": { "name": "Shael Rune", @@ -4981,7 +6847,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 29 }, "r14": { "name": "Dol Rune", @@ -4989,7 +6858,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 31 }, "r15": { "name": "Hel Rune", @@ -4997,7 +6869,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "r16": { "name": "Io Rune", @@ -5005,7 +6880,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 35 }, "r17": { "name": "Lum Rune", @@ -5013,7 +6891,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 37 }, "r18": { "name": "Ko Rune", @@ -5021,7 +6902,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 39 }, "r19": { "name": "Fal Rune", @@ -5029,7 +6913,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 41 }, "r20": { "name": "Lem Rune", @@ -5037,7 +6924,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 43 }, "r21": { "name": "Pul Rune", @@ -5045,7 +6935,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 45 }, "r22": { "name": "Um Rune", @@ -5053,7 +6946,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 47 }, "r23": { "name": "Mal Rune", @@ -5061,7 +6957,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 49 }, "r24": { "name": "Ist Rune", @@ -5069,7 +6968,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 51 }, "r25": { "name": "Gul Rune", @@ -5077,7 +6979,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 53 }, "r26": { "name": "Vex Rune", @@ -5085,7 +6990,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 55 }, "r27": { "name": "Ohm Rune", @@ -5093,7 +7001,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 57 }, "r28": { "name": "Lo Rune", @@ -5101,7 +7012,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 59 }, "r29": { "name": "Sur Rune", @@ -5109,7 +7023,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 61 }, "r30": { "name": "Ber Rune", @@ -5117,7 +7034,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 63 }, "r31": { "name": "Jah Rune", @@ -5125,7 +7045,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 65 }, "r32": { "name": "Cham Rune", @@ -5133,7 +7056,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 67 }, "r33": { "name": "Zod Rune", @@ -5141,7 +7067,10 @@ "type": "rune", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 69 }, "jew": { "name": "Jewel", @@ -5149,7 +7078,10 @@ "type": "jewl", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ice": { "name": "Malah's Potion", @@ -5157,7 +7089,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "0sc": { "name": "Scroll of Knowledge", @@ -5165,7 +7100,10 @@ "type": "scro", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tr2": { "name": "Scroll of Resistance", @@ -5173,7 +7111,10 @@ "type": "ques", "stackable": false, "width": 2, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "pk1": { "name": "Key of Terror", @@ -5181,7 +7122,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "pk2": { "name": "Key of Hate", @@ -5189,7 +7133,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "pk3": { "name": "Key of Destruction", @@ -5197,7 +7144,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 2 + "height": 2, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "dhn": { "name": "Diablo's Horn", @@ -5205,7 +7155,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bey": { "name": "Baal's Eye", @@ -5213,7 +7166,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "mbr": { "name": "Mephisto's Brain", @@ -5221,7 +7177,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "toa": { "name": "Token of Absolution", @@ -5229,7 +7188,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "tes": { "name": "Twisted Essence of Suffering", @@ -5237,7 +7199,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "ceh": { "name": "Charged Essense of Hatred", @@ -5245,7 +7210,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "bet": { "name": "Burning Essence of Terror", @@ -5253,7 +7221,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "fed": { "name": "Festering Essence of Destruction", @@ -5261,7 +7232,10 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 0 }, "std": { "name": "Standard of Heroes", @@ -5269,6 +7243,9 @@ "type": "ques", "stackable": false, "width": 1, - "height": 1 + "height": 1, + "req_str": 0, + "req_dex": 0, + "req_lvl": 90 } -} \ No newline at end of file +}