diff --git a/contrib/items.py b/contrib/items.py index 11aa2b5..91a074b 100644 --- a/contrib/items.py +++ b/contrib/items.py @@ -33,6 +33,8 @@ with open("armor.txt", newline="") as f: "class": "armor", "type": row["type"], "stackable": row["stackable"] == "1", + "width": int(row["invwidth"]), + "height": int(row["invheight"]), } with open("weapons.txt", newline="") as f: @@ -49,6 +51,8 @@ with open("weapons.txt", newline="") as f: "class": "weapon", "type": row["type"], "stackable": row["stackable"] == "1", + "width": int(row["invwidth"]), + "height": int(row["invheight"]), } with open("misc.txt", newline="") as f: @@ -63,6 +67,8 @@ with open("misc.txt", newline="") as f: "class": "misc", "type": row["type"], "stackable": row["stackable"] == "1", + "width": int(row["invwidth"]), + "height": int(row["invheight"]), } for code, patch in item_patches.items(): diff --git a/d2warehouse/data/items.json b/d2warehouse/data/items.json index c161d11..df1ff4b 100644 --- a/d2warehouse/data/items.json +++ b/d2warehouse/data/items.json @@ -3,3954 +3,5272 @@ "name": "Cap", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "skp": { "name": "Skull Cap", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "hlm": { "name": "Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "fhl": { "name": "Full Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ghm": { "name": "Great Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "crn": { "name": "Crown", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "msk": { "name": "Mask", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "qui": { "name": "Quilted Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "lea": { "name": "Leather Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "hla": { "name": "Hard Leather Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "stu": { "name": "Studded Leather ", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "rng": { "name": "Ring Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "scl": { "name": "Scale Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "chn": { "name": "Chain Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "brs": { "name": "Breast Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "spl": { "name": "Splint Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "plt": { "name": "Plate Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "fld": { "name": "Field Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "gth": { "name": "Gothic Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ful": { "name": "Full Plate Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "aar": { "name": "Ancient Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ltp": { "name": "Light Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "buc": { "name": "Buckler", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "sml": { "name": "Small Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "lrg": { "name": "Large Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "kit": { "name": "Kite Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "tow": { "name": "Tower Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "gts": { "name": "Gothic Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "lgl": { "name": "Leather Gloves", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "vgl": { "name": "Heavy Gloves", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "mgl": { "name": "Chain Gloves", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "tgl": { "name": "Light Gauntlets", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "hgl": { "name": "Gauntlets", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "lbt": { "name": "Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "vbt": { "name": "Heavy Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "mbt": { "name": "Chain Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "tbt": { "name": "Light Plated Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "hbt": { "name": "Greaves", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "lbl": { "name": "Sash", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "vbl": { "name": "Light Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "mbl": { "name": "Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "tbl": { "name": "Heavy Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "hbl": { "name": "Plated Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "bhm": { "name": "Bone Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "bsh": { "name": "Bone Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "spk": { "name": "Spiked Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xap": { "name": "War Hat", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xkp": { "name": "Sallet", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xlm": { "name": "Casque", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xhl": { "name": "Basinet", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xhm": { "name": "Winged Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xrn": { "name": "Grand Crown", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xsk": { "name": "Death Mask", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xui": { "name": "Ghost Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xea": { "name": "Serpentskin Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xla": { "name": "Demonhide Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xtu": { "name": "Trellised Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xng": { "name": "Linked Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xcl": { "name": "Tigulated Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xhn": { "name": "Mesh Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xrs": { "name": "Cuirass", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xpl": { "name": "Russet Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xlt": { "name": "Templar Coat", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xld": { "name": "Sharktooth Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xth": { "name": "Embossed Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xul": { "name": "Chaos Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xar": { "name": "Ornate Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xtp": { "name": "Mage Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xuc": { "name": "Defender", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xml": { "name": "Round Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xrg": { "name": "Scutum", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xit": { "name": "Dragon Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xow": { "name": "Pavise", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xts": { "name": "Ancient Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "xlg": { "name": "Demonhide Gloves", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xvg": { "name": "Sharkskin Gloves", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xmg": { "name": "Heavy Bracers", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xtg": { "name": "Battle Gauntlets", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xhg": { "name": "War Gauntlets", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xlb": { "name": "Demonhide Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xvb": { "name": "Sharkskin Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xmb": { "name": "Mesh Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xtb": { "name": "Battle Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xhb": { "name": "War Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "zlb": { "name": "Demonhide Sash", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "zvb": { "name": "Sharkskin Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "zmb": { "name": "Mesh Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "ztb": { "name": "Battle Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "zhb": { "name": "War Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "xh9": { "name": "Grim Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "xsh": { "name": "Grim Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "xpk": { "name": "Barbed Shield", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "dr1": { "name": "Wolf Head", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr2": { "name": "Hawk Helm", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr3": { "name": "Antlers", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr4": { "name": "Falcon Mask", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr5": { "name": "Spirit Mask", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba1": { "name": "Jawbone Cap", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba2": { "name": "Fanged Helm", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba3": { "name": "Horned Helm", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba4": { "name": "Assault Helmet", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba5": { "name": "Avenger Guard", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pa1": { "name": "Targe", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pa2": { "name": "Rondache", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pa3": { "name": "Heraldic Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "pa4": { "name": "Aerin Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "pa5": { "name": "Crown Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne1": { "name": "Preserved Head", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne2": { "name": "Zombie Head", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne3": { "name": "Unraveller Head", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne4": { "name": "Gargoyle Head", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne5": { "name": "Demon Head", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ci0": { "name": "Circlet", "class": "armor", "type": "circ", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ci1": { "name": "Coronet", "class": "armor", "type": "circ", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ci2": { "name": "Tiara", "class": "armor", "type": "circ", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ci3": { "name": "Diadem", "class": "armor", "type": "circ", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uap": { "name": "Shako", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ukp": { "name": "Hydraskull", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ulm": { "name": "Armet", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uhl": { "name": "Giant Conch", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uhm": { "name": "Spired Helm", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "urn": { "name": "Corona", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "usk": { "name": "Demonhead", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uui": { "name": "Dusk Shroud", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uea": { "name": "Wyrmhide", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ula": { "name": "Scarab Husk", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "utu": { "name": "Wire Fleece", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ung": { "name": "Diamond Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ucl": { "name": "Loricated Mail", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uhn": { "name": "Boneweave", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "urs": { "name": "Great Hauberk", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "upl": { "name": "Balrog Skin", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ult": { "name": "Hellforge Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uld": { "name": "Kraken Shell", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uth": { "name": "Lacquered Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uul": { "name": "Shadow Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uar": { "name": "Sacred Armor", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "utp": { "name": "Archon Plate", "class": "armor", "type": "tors", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uuc": { "name": "Heater", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uml": { "name": "Luna", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "urg": { "name": "Hyperion", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uit": { "name": "Monarch", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uow": { "name": "Aegis", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "uts": { "name": "Ward", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "ulg": { "name": "Bramble Mitts", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uvg": { "name": "Vampirebone Gloves", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "umg": { "name": "Vambraces", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "utg": { "name": "Crusader Gauntlets", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uhg": { "name": "Ogre Gauntlets", "class": "armor", "type": "glov", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ulb": { "name": "Wyrmhide Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uvb": { "name": "Scarabshell Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "umb": { "name": "Boneweave Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "utb": { "name": "Mirrored Boots", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "uhb": { "name": "Myrmidon Greaves", "class": "armor", "type": "boot", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ulc": { "name": "Spiderweb Sash", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "uvc": { "name": "Vampirefang Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "umc": { "name": "Mithril Coil", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "utc": { "name": "Troll Belt", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "uhc": { "name": "Colossus Girdle", "class": "armor", "type": "belt", - "stackable": false + "stackable": false, + "width": 2, + "height": 1 }, "uh9": { "name": "Bone Visage", "class": "armor", "type": "helm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ush": { "name": "Troll Nest", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "upk": { "name": "Blade Barrier", "class": "armor", "type": "shie", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "dr6": { "name": "Alpha Helm", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr7": { "name": "Griffon Headress", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr8": { "name": "Hunter's Guise", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dr9": { "name": "Sacred Feathers", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dra": { "name": "Totemic Mask", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba6": { "name": "Jawbone Visor", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba7": { "name": "Lion Helm", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba8": { "name": "Rage Mask", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ba9": { "name": "Savage Helmet", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "baa": { "name": "Slayer Guard", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pa6": { "name": "Akaran Targe", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pa7": { "name": "Akaran Rondache", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pa8": { "name": "Protector Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "pa9": { "name": "Gilded Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "paa": { "name": "Royal Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne6": { "name": "Mummified Trophy", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne7": { "name": "Fetish Trophy", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne8": { "name": "Sexton Trophy", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ne9": { "name": "Cantor Trophy", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "nea": { "name": "Heirophant Trophy", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "drb": { "name": "Blood Spirit", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "drc": { "name": "Sun Spirit", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "drd": { "name": "Earth Spirit", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "dre": { "name": "Sky Spirit", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "drf": { "name": "Dream Spirit", "class": "armor", "type": "pelt", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "bab": { "name": "Carnage Helm", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "bac": { "name": "Fury Visor", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "bad": { "name": "Destroyer Helm", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "bae": { "name": "Conqueror Crown", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "baf": { "name": "Guardian Crown", "class": "armor", "type": "phlm", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pab": { "name": "Sacred Targe", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pac": { "name": "Sacred Rondache", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pad": { "name": "Ancient Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "pae": { "name": "Zakarum Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "paf": { "name": "Vortex Shield", "class": "armor", "type": "ashd", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "neb": { "name": "Minion Skull", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "neg": { "name": "Hellspawn Skull", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "ned": { "name": "Overseer Skull", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "nee": { "name": "Succubus Skull", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "nef": { "name": "Bloodlord Skull", "class": "armor", "type": "head", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "hax": { "name": "Hand Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "axe": { "name": "Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "2ax": { "name": "Double Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "mpi": { "name": "Military Pick", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "wax": { "name": "War Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "lax": { "name": "Large Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "bax": { "name": "Broad Axe ", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "btx": { "name": "Battle Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "gax": { "name": "Great Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "gix": { "name": "Giant Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "wnd": { "name": "Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ywn": { "name": "Yew Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "bwn": { "name": "Bone Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "gwn": { "name": "Grim Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "clb": { "name": "Club", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "scp": { "name": "Scepter", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "gsc": { "name": "Grand Scepter", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "wsp": { "name": "War Scepter", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "spc": { "name": "Spiked Club", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "mac": { "name": "Mace", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "mst": { "name": "Morning Star", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "fla": { "name": "Flail", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "whm": { "name": "War Hammer", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "mau": { "name": "Maul", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "gma": { "name": "Great Maul", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ssd": { "name": "Short Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "scm": { "name": "Scimitar", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "sbr": { "name": "Saber", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "flc": { "name": "Falchion", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "crs": { "name": "Crystal Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "bsd": { "name": "Broad Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "lsd": { "name": "Long Sword ", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "wsd": { "name": "War Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "2hs": { "name": "Two-Handed Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "clm": { "name": "Claymore", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "gis": { "name": "Giant Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "bsw": { "name": "Bastard Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "flb": { "name": "Flamberge", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "gsd": { "name": "Great Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "dgr": { "name": "Dagger", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "dir": { "name": "Dirk", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "kri": { "name": "Kriss", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "bld": { "name": "Blade", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "tkf": { "name": "Throwing Knife", "class": "weapon", "type": "tkni", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "tax": { "name": "Throwing Axe", "class": "weapon", "type": "taxe", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "bkf": { "name": "Balanced Knife", "class": "weapon", "type": "tkni", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "bal": { "name": "Balanced Axe", "class": "weapon", "type": "taxe", - "stackable": true + "stackable": true, + "width": 2, + "height": 3 }, "jav": { "name": "Javelin", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "pil": { "name": "Pilum", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "ssp": { "name": "Short Spear", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "glv": { "name": "Glaive", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 4 }, "tsp": { "name": "Throwing Spear", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 4 }, "spr": { "name": "Spear", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "tri": { "name": "Trident", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "brn": { "name": "Brandistock", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "spt": { "name": "Spetum", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "pik": { "name": "Pike", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "bar": { "name": "Bardiche", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "vou": { "name": "Voulge", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "scy": { "name": "Scythe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "pax": { "name": "Poleaxe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "hal": { "name": "Halberd", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "wsc": { "name": "War Scythe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "sst": { "name": "Short Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "lst": { "name": "Long Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "cst": { "name": "Gnarled Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "bst": { "name": "Battle Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "wst": { "name": "War Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "sbw": { "name": "Short Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "hbw": { "name": "Hunter's Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "lbw": { "name": "Long Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "cbw": { "name": "Composite Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "sbb": { "name": "Short Battle Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "lbb": { "name": "Long Battle Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "swb": { "name": "Short War Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "lwb": { "name": "Long War Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "lxb": { "name": "Light Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "mxb": { "name": "Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "hxb": { "name": "Heavy Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "rxb": { "name": "Repeating Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "gps": { "name": "Rancid Gas Potion", "class": "weapon", "type": "tpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "ops": { "name": "Oil Potion", "class": "weapon", "type": "tpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "gpm": { "name": "Choking Gas Potion", "class": "weapon", "type": "tpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "opm": { "name": "Exploding Potion", "class": "weapon", "type": "tpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "gpl": { "name": "Strangling Gas Potion", "class": "weapon", "type": "tpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "opl": { "name": "Fulminating Potion", "class": "weapon", "type": "tpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "d33": { "name": "Decoy Gidbinn", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "g33": { "name": "The Gidbinn", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "leg": { "name": "Wirt's Leg", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "hdm": { "name": "Horadric Malus", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "hfh": { "name": "Hellforge Hammer", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "hst": { "name": "Horadric Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "msf": { "name": "Staff of Kings", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9ha": { "name": "Hatchet", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9ax": { "name": "Cleaver", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "92a": { "name": "Twin Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9mp": { "name": "Crowbill", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9wa": { "name": "Naga", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9la": { "name": "Military Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9ba": { "name": "Bearded Axe ", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9bt": { "name": "Tabar", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9ga": { "name": "Gothic Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9gi": { "name": "Ancient Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9wn": { "name": "Burnt Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "9yw": { "name": "Petrified Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "9bw": { "name": "Tomb Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "9gw": { "name": "Grave Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "9cl": { "name": "Cudgel", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9sc": { "name": "Rune Scepter", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9qs": { "name": "Holy Water Sprinkler", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9ws": { "name": "Divine Scepter", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9sp": { "name": "Barbed Club", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9ma": { "name": "Flanged Mace", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9mt": { "name": "Jagged Star", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9fl": { "name": "Knout", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9wh": { "name": "Battle Hammer", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9m9": { "name": "War Club", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9gm": { "name": "Martel de Fer", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9ss": { "name": "Gladius", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9sm": { "name": "Cutlass", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9sb": { "name": "Shamshir", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9fc": { "name": "Tulwar", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9cr": { "name": "Dimensional Blade", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9bs": { "name": "Battle Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9ls": { "name": "Rune Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "9wd": { "name": "Ancient Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "92h": { "name": "Espandon", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "9cm": { "name": "Dacian Falx", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "9gs": { "name": "Tusk Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "9b9": { "name": "Gothic Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "9fb": { "name": "Zweihander", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9gd": { "name": "Executioner Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9dg": { "name": "Poignard", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "9di": { "name": "Rondel", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "9kr": { "name": "Cinquedeas", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9bl": { "name": "Stilleto", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9tk": { "name": "Battle Dart", "class": "weapon", "type": "tkni", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "9ta": { "name": "Francisca", "class": "weapon", "type": "taxe", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "9bk": { "name": "War Dart", "class": "weapon", "type": "tkni", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "9b8": { "name": "Hurlbat", "class": "weapon", "type": "taxe", - "stackable": true + "stackable": true, + "width": 2, + "height": 3 }, "9ja": { "name": "War Javelin", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "9pi": { "name": "Great Pilum", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "9s9": { "name": "Simbilan", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "9gl": { "name": "Spiculum", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 4 }, "9ts": { "name": "Harpoon", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 4 }, "9sr": { "name": "War Spear", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9tr": { "name": "Fuscina", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9br": { "name": "War Fork", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9st": { "name": "Yari", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9p9": { "name": "Lance", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9b7": { "name": "Lochaber Axe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9vo": { "name": "Bill", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9s8": { "name": "Battle Scythe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9pa": { "name": "Partizan", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9h9": { "name": "Bec-de-Corbin", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "9wc": { "name": "Grim Scythe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "8ss": { "name": "Jo Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "8ls": { "name": "Quarterstaff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "8cs": { "name": "Cedar Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "8bs": { "name": "Gothic Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "8ws": { "name": "Rune Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "8sb": { "name": "Edge Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8hb": { "name": "Razor Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8lb": { "name": "Cedar Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "8cb": { "name": "Double Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8s8": { "name": "Short Siege Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8l8": { "name": "Long Siege Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "8sw": { "name": "Rune Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8lw": { "name": "Gothic Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "8lx": { "name": "Arbalest", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8mx": { "name": "Siege Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "8hx": { "name": "Ballista", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "8rx": { "name": "Chu-Ko-Nu", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "qf1": { "name": "Khalim's Flail", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "qf2": { "name": "Khalim's Will", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ktr": { "name": "Katar", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "wrb": { "name": "Wrist Blade", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "axf": { "name": "Hatchet Hands", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "ces": { "name": "Cestus", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "clw": { "name": "Claws", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "btl": { "name": "Blade Talons", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "skr": { "name": "Scissors Katar", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9ar": { "name": "Quhab", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9wb": { "name": "Wrist Spike", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9xf": { "name": "Fascia", "class": "weapon", "type": "h2h", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9cs": { "name": "Hand Scythe", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9lw": { "name": "Greater Claws", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9tw": { "name": "Greater Talons", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "9qr": { "name": "Scissors Quhab", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7ar": { "name": "Suwayyah", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7wb": { "name": "Wrist Sword", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7xf": { "name": "War Fist", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7cs": { "name": "Battle Cestus", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7lw": { "name": "Feral Claws", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7tw": { "name": "Runic Talons", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7qr": { "name": "Scissors Suwayyah", "class": "weapon", "type": "h2h2", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7ha": { "name": "Tomahawk", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7ax": { "name": "Small Crescent", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "72a": { "name": "Ettin Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7mp": { "name": "War Spike", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7wa": { "name": "Berserker Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7la": { "name": "Feral Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7ba": { "name": "Silver-edged Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7bt": { "name": "Decapitator", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7ga": { "name": "Champion Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7gi": { "name": "Glorious Axe", "class": "weapon", "type": "axe", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7wn": { "name": "Polished Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "7yw": { "name": "Ghost Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "7bw": { "name": "Lich Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "7gw": { "name": "Unearthed Wand", "class": "weapon", "type": "wand", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "7cl": { "name": "Truncheon", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7sc": { "name": "Mighty Scepter", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7qs": { "name": "Seraph Rod", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7ws": { "name": "Caduceus", "class": "weapon", "type": "scep", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7sp": { "name": "Tyrant Club", "class": "weapon", "type": "club", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7ma": { "name": "Reinforced Mace", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7mt": { "name": "Devil Star", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7fl": { "name": "Scourge", "class": "weapon", "type": "mace", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7wh": { "name": "Legendary Mallet", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7m7": { "name": "Ogre Maul", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7gm": { "name": "Thunder Maul", "class": "weapon", "type": "hamm", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7ss": { "name": "Falcata", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7sm": { "name": "Ataghan", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7sb": { "name": "Elegant Blade", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7fc": { "name": "Hydra Edge", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7cr": { "name": "Phase Blade", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7bs": { "name": "Conquest Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7ls": { "name": "Cryptic Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "7wd": { "name": "Mythical Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "72h": { "name": "Legend Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "7cm": { "name": "Highland Blade", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "7gs": { "name": "Balrog Blade", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "7b7": { "name": "Champion Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "7fb": { "name": "Colossal Sword", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7gd": { "name": "Colossus Blade", "class": "weapon", "type": "swor", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7dg": { "name": "Bone Knife", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "7di": { "name": "Mithral Point", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "7kr": { "name": "Fanged Knife", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7bl": { "name": "Legend Spike", "class": "weapon", "type": "knif", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "7tk": { "name": "Flying Knife", "class": "weapon", "type": "tkni", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "7ta": { "name": "Flying Axe", "class": "weapon", "type": "taxe", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "7bk": { "name": "Winged Knife", "class": "weapon", "type": "tkni", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "7b8": { "name": "Winged Axe", "class": "weapon", "type": "taxe", - "stackable": true + "stackable": true, + "width": 2, + "height": 3 }, "7ja": { "name": "Hyperion Javelin", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "7pi": { "name": "Stygian Pilum", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "7s7": { "name": "Balrog Spear", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "7gl": { "name": "Ghost Glaive", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 4 }, "7ts": { "name": "Winged Harpoon", "class": "weapon", "type": "jave", - "stackable": true + "stackable": true, + "width": 1, + "height": 4 }, "7sr": { "name": "Hyperion Spear", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7tr": { "name": "Stygian Pike", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7br": { "name": "Mancatcher", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7st": { "name": "Ghost Spear", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7p7": { "name": "War Pike", "class": "weapon", "type": "spea", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7o7": { "name": "Ogre Axe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7vo": { "name": "Colossus Voulge", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7s8": { "name": "Thresher", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7pa": { "name": "Cryptic Axe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7h7": { "name": "Great Poleaxe", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "7wc": { "name": "Giant Thresher", "class": "weapon", "type": "pole", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "6ss": { "name": "Walking Stick", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "6ls": { "name": "Stalagmite", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "6cs": { "name": "Elder Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "6bs": { "name": "Shillelagh", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 1, + "height": 4 }, "6ws": { "name": "Archon Staff", "class": "weapon", "type": "staf", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "6sb": { "name": "Spider Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6hb": { "name": "Blade Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6lb": { "name": "Shadow Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "6cb": { "name": "Great Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6s7": { "name": "Diamond Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6l7": { "name": "Crusader Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "6sw": { "name": "Ward Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6lw": { "name": "Hydra Bow", "class": "weapon", "type": "bow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "6lx": { "name": "Pellet Bow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6mx": { "name": "Gorgon Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "6hx": { "name": "Colossus Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "6rx": { "name": "Demon Crossbow", "class": "weapon", "type": "xbow", - "stackable": false + "stackable": false, + "width": 2, + "height": 3 }, "ob1": { "name": "Eagle Orb", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob2": { "name": "Sacred Globe", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob3": { "name": "Smoked Sphere", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob4": { "name": "Clasped Orb", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob5": { "name": "Jared's Stone", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "am1": { "name": "Stag Bow", "class": "weapon", "type": "abow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am2": { "name": "Reflex Bow", "class": "weapon", "type": "abow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am3": { "name": "Maiden Spear", "class": "weapon", "type": "aspe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am4": { "name": "Maiden Pike", "class": "weapon", "type": "aspe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am5": { "name": "Maiden Javelin", "class": "weapon", "type": "ajav", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "ob6": { "name": "Glowing Orb", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob7": { "name": "Crystalline Globe", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob8": { "name": "Cloudy Sphere", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "ob9": { "name": "Sparkling Ball", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "oba": { "name": "Swirling Crystal", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "am6": { "name": "Ashwood Bow", "class": "weapon", "type": "abow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am7": { "name": "Ceremonial Bow", "class": "weapon", "type": "abow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am8": { "name": "Ceremonial Spear", "class": "weapon", "type": "aspe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "am9": { "name": "Ceremonial Pike", "class": "weapon", "type": "aspe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "ama": { "name": "Ceremonial Javelin", "class": "weapon", "type": "ajav", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "obb": { "name": "Heavenly Stone", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "obc": { "name": "Eldritch Orb", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "obd": { "name": "Demon Heart", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "obe": { "name": "Vortex Orb", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "obf": { "name": "Dimensional Shard", "class": "weapon", "type": "orb", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "amb": { "name": "Matriarchal Bow", "class": "weapon", "type": "abow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "amc": { "name": "Grand Matron Bow", "class": "weapon", "type": "abow", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "amd": { "name": "Matriarchal Spear", "class": "weapon", "type": "aspe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "ame": { "name": "Matriarchal Pike", "class": "weapon", "type": "aspe", - "stackable": false + "stackable": false, + "width": 2, + "height": 4 }, "amf": { "name": "Matriarchal Javelin", "class": "weapon", "type": "ajav", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "elx": { "name": "Elixir", "class": "misc", "type": "elix", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hpo": { "name": "Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mpo": { "name": "Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hpf": { "name": "Full Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mpf": { "name": "Full Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "vps": { "name": "Stamina Potion", "class": "misc", "type": "spot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "yps": { "name": "Antidote Potion", "class": "misc", "type": "apot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "rvs": { "name": "Rejuvenation Potion", "class": "misc", "type": "rpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "rvl": { "name": "Full Rejuvenation Potion", "class": "misc", "type": "rpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "wms": { "name": "Thawing Potion", "class": "misc", "type": "wpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "tbk": { "name": "Tome of Town Portal", "class": "tome", "type": "book", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "ibk": { "name": "Tome of Identify", "class": "tome", "type": "book", - "stackable": true + "stackable": true, + "width": 1, + "height": 2 }, "amu": { "name": "Amulet", "class": "misc", "type": "amul", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "vip": { "name": "Amulet of the Viper", "class": "misc", "type": "amul", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "rin": { "name": "Ring", "class": "misc", "type": "ring", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gld": { "name": "Gold", "class": "misc", "type": "gold", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "bks": { "name": "Scroll of Inifuss", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "bkd": { "name": "Key to the Cairn Stones", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "aqv": { "name": "Arrows", "class": "misc", "type": "bowq", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "tch": { "name": "Torch", "class": "misc", "type": "torc", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "cqv": { "name": "Bolts", "class": "misc", "type": "xboq", - "stackable": true + "stackable": true, + "width": 1, + "height": 3 }, "tsc": { "name": "Scroll of Town Portal", "class": "misc", "type": "scro", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "isc": { "name": "Scroll of Identify", "class": "misc", "type": "scro", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hrt": { "name": "Heart", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "brz": { "name": "Brain", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "jaw": { "name": "Jawbone", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "eyz": { "name": "Eye", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hrn": { "name": "Horn", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "tal": { "name": "Tail", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "flg": { "name": "Flag", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "fng": { "name": "Fang", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "qll": { "name": "Quill", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "sol": { "name": "Soul", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "scz": { "name": "Scalp", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "spe": { "name": "Spleen", "class": "misc", "type": "body", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "key": { "name": "Key", "class": "misc", "type": "key", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "luv": { "name": "The Black Tower Key", "class": "misc", "type": "key", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "xyz": { "name": "Potion of Life", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "j34": { "name": "A Jade Figurine", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "g34": { "name": "The Golden Bird", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "bbb": { "name": "Lam Esen's Tome", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "box": { "name": "Horadric Cube", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "tr1": { "name": "Horadric Scroll", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "mss": { "name": "Mephisto's Soulstone", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "ass": { "name": "Book of Skill", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "qey": { "name": "Khalim's Eye", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "qhr": { "name": "Khalim's Heart", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "qbr": { "name": "Khalim's Brain", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "ear": { "name": "Ear", "class": "misc", "type": "play", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gcv": { "name": "Chipped Amethyst", "class": "misc", "type": "gema", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gfv": { "name": "Flawed Amethyst", "class": "misc", "type": "gema", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gsv": { "name": "Amethyst", "class": "misc", "type": "gema", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gzv": { "name": "Flawless Amethyst", "class": "misc", "type": "gema", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gpv": { "name": "Perfect Amethyst", "class": "misc", "type": "gema", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gcy": { "name": "Chipped Topaz", "class": "misc", "type": "gemt", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gfy": { "name": "Flawed Topaz", "class": "misc", "type": "gemt", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gsy": { "name": "Topaz", "class": "misc", "type": "gemt", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gly": { "name": "Flawless Topaz", "class": "misc", "type": "gemt", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gpy": { "name": "Perfect Topaz", "class": "misc", "type": "gemt", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gcb": { "name": "Chipped Sapphire", "class": "misc", "type": "gems", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gfb": { "name": "Flawed Sapphire", "class": "misc", "type": "gems", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gsb": { "name": "Sapphire", "class": "misc", "type": "gems", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "glb": { "name": "Flawless Sapphire", "class": "misc", "type": "gems", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gpb": { "name": "Perfect Sapphire", "class": "misc", "type": "gems", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gcg": { "name": "Chipped Emerald", "class": "misc", "type": "geme", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gfg": { "name": "Flawed Emerald", "class": "misc", "type": "geme", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gsg": { "name": "Emerald", "class": "misc", "type": "geme", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "glg": { "name": "Flawless Emerald", "class": "misc", "type": "geme", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gpg": { "name": "Perfect Emerald", "class": "misc", "type": "geme", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gcr": { "name": "Chipped Ruby", "class": "misc", "type": "gemr", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gfr": { "name": "Flawed Ruby", "class": "misc", "type": "gemr", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gsr": { "name": "Ruby", "class": "misc", "type": "gemr", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "glr": { "name": "Flawless Ruby", "class": "misc", "type": "gemr", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gpr": { "name": "Perfect Ruby", "class": "misc", "type": "gemr", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gcw": { "name": "Chipped Diamond", "class": "misc", "type": "gemd", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gfw": { "name": "Flawed Diamond", "class": "misc", "type": "gemd", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gsw": { "name": "Diamond", "class": "misc", "type": "gemd", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "glw": { "name": "Flawless Diamond", "class": "misc", "type": "gemd", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "gpw": { "name": "Perfect Diamond", "class": "misc", "type": "gemd", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hp1": { "name": "Minor Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hp2": { "name": "Light Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hp3": { "name": "Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hp4": { "name": "Greater Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hp5": { "name": "Super Healing Potion", "class": "misc", "type": "hpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mp1": { "name": "Minor Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mp2": { "name": "Light Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mp3": { "name": "Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mp4": { "name": "Greater Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mp5": { "name": "Super Mana Potion", "class": "misc", "type": "mpot", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "skc": { "name": "Chipped Skull", "class": "misc", "type": "gemz", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "skf": { "name": "Flawed Skull", "class": "misc", "type": "gemz", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "sku": { "name": "Skull", "class": "misc", "type": "gemz", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "skl": { "name": "Flawless Skull", "class": "misc", "type": "gemz", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "skz": { "name": "Perfect Skull", "class": "misc", "type": "gemz", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "hrb": { "name": "Herb", "class": "misc", "type": "herb", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "cm1": { "name": "Small Charm", "class": "misc", "type": "scha", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "cm2": { "name": "Large Charm", "class": "misc", "type": "mcha", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "cm3": { "name": "Grand Charm", "class": "misc", "type": "lcha", - "stackable": false + "stackable": false, + "width": 1, + "height": 3 }, "rps": { "name": "Small Red Potion", "class": "misc", "type": "hpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "rpl": { "name": "Large Red Potion", "class": "misc", "type": "hpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "bps": { "name": "Small Blue Potion", "class": "misc", "type": "mpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "bpl": { "name": "Large Blue Potion", "class": "misc", "type": "mpot", - "stackable": true + "stackable": true, + "width": 1, + "height": 1 }, "r01": { "name": "El Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r02": { "name": "Eld Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r03": { "name": "Tir Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r04": { "name": "Nef Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r05": { "name": "Eth Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r06": { "name": "Ith Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r07": { "name": "Tal Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r08": { "name": "Ral Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r09": { "name": "Ort Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r10": { "name": "Thul Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r11": { "name": "Amn Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r12": { "name": "Sol Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r13": { "name": "Shael Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r14": { "name": "Dol Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r15": { "name": "Hel Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r16": { "name": "Io Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r17": { "name": "Lum Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r18": { "name": "Ko Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r19": { "name": "Fal Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r20": { "name": "Lem Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r21": { "name": "Pul Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r22": { "name": "Um Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r23": { "name": "Mal Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r24": { "name": "Ist Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r25": { "name": "Gul Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r26": { "name": "Vex Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r27": { "name": "Ohm Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r28": { "name": "Lo Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r29": { "name": "Sur Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r30": { "name": "Ber Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r31": { "name": "Jah Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r32": { "name": "Cham Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "r33": { "name": "Zod Rune", "class": "misc", "type": "rune", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "jew": { "name": "Jewel", "class": "misc", "type": "jewl", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "ice": { "name": "Malah's Potion", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "0sc": { "name": "Scroll of Knowledge", "class": "misc", "type": "scro", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "tr2": { "name": "Scroll of Resistance", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 2, + "height": 2 }, "pk1": { "name": "Key of Terror", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "pk2": { "name": "Key of Hate", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "pk3": { "name": "Key of Destruction", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 2 }, "dhn": { "name": "Diablo's Horn", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "bey": { "name": "Baal's Eye", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "mbr": { "name": "Mephisto's Brain", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "toa": { "name": "Token of Absolution", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "tes": { "name": "Twisted Essence of Suffering", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "ceh": { "name": "Charged Essense of Hatred", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "bet": { "name": "Burning Essence of Terror", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "fed": { "name": "Festering Essence of Destruction", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 }, "std": { "name": "Standard of Heroes", "class": "misc", "type": "ques", - "stackable": false + "stackable": false, + "width": 1, + "height": 1 } } \ No newline at end of file