diff options
author | Haru <haru@dotalux.com> | 2017-08-21 21:19:03 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2017-09-17 17:48:38 +0200 |
commit | 5a0c108e5f43d354a536cdefac45484abaf02e86 (patch) | |
tree | e4020613f9002f486fe5794706b312feae67e536 /db/pre-re | |
parent | f1503f6d856298e013f2f5136b3f853cdd5aac0d (diff) | |
download | hercules-5a0c108e5f43d354a536cdefac45484abaf02e86.tar.gz hercules-5a0c108e5f43d354a536cdefac45484abaf02e86.tar.bz2 hercules-5a0c108e5f43d354a536cdefac45484abaf02e86.tar.xz hercules-5a0c108e5f43d354a536cdefac45484abaf02e86.zip |
Replace the recurring 'Upper: 56' value in the item_db with a bitmask array
Equivalent: `["ITEMUPPER_THIRD", "ITEMUPPER_THIRDUPPER", "ITEMUPPER_THIRDBABY"]`
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'db/pre-re')
-rw-r--r-- | db/pre-re/item_db.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index 87f7a6a1e..bea31f2a3 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -93372,7 +93372,7 @@ item_db: ( Job: { Blacksmith: true } - Upper: 56 + Upper: ["ITEMUPPER_THIRD", "ITEMUPPER_THIRDUPPER", "ITEMUPPER_THIRDBABY"] Loc: 2 WeaponLv: 4 EquipLv: 130 @@ -93390,7 +93390,7 @@ item_db: ( Job: { Blacksmith: true } - Upper: 56 + Upper: ["ITEMUPPER_THIRD", "ITEMUPPER_THIRDUPPER", "ITEMUPPER_THIRDBABY"] Loc: 2 WeaponLv: 4 EquipLv: 130 @@ -93409,7 +93409,7 @@ item_db: ( Job: { Blacksmith: true } - Upper: 56 + Upper: ["ITEMUPPER_THIRD", "ITEMUPPER_THIRDUPPER", "ITEMUPPER_THIRDBABY"] Loc: 2 WeaponLv: 4 EquipLv: 130 |