better item parsing, displaying in char page, needs more work

This commit is contained in:
Hash Borgir
2023-06-04 23:02:01 -06:00
parent a1f3ca5320
commit beaeb2fd49
4 changed files with 157 additions and 36 deletions

View File

@@ -110,3 +110,14 @@ class D2ItemLocationBody {
const WEAPONL2 = 12;
}
class D2ItemQuality {
const LOW_QUALITY = 1;
const NORMAL = 2;
const HIGH_QUALITY = 3;
const MAGIC = 4;
const SET = 5;
const RARE = 6;
const UNIQUE = 7;
const CRAFTED = 8;
}