Skip to content

Commit

Permalink
Add all lockboxes, regardless of availability
Browse files Browse the repository at this point in the history
Some thought to be unobtainable are still being found by players,
so just add them all to be safe.

Also sorted the list.

Fixes p3lim-wow/Molinari#47
  • Loading branch information
p3lim committed Oct 21, 2020
1 parent 0ce5a87 commit e36942e
Showing 1 changed file with 27 additions and 19 deletions.
46 changes: 27 additions & 19 deletions LibProcessable.lua
Original file line number Diff line number Diff line change
Expand Up @@ -502,63 +502,71 @@ See [LibProcessable:IsOpenable()](LibProcessable#libprocessableisopenableitem) a
--]]
if(CLASSIC) then
lib.containers = {
-- https://classic.wowhead.com/items?filter=10:161:128;1:1:1;::
[7209] = 1, -- Tazan's Satchel
[6712] = 1, -- Practice Lock
[16882] = 1, -- Battered Junkbox
-- https://classic.wowhead.com/items?filter=10:195;1:2;:0
[4632] = 1, -- Ornate Bronze Lockbox
[6354] = 1, -- Small Locked Chest
[6712] = 1, -- Practice Lock
[7209] = 1, -- Tazan's Satchel
[16882] = 1, -- Battered Junkbox
[4633] = 25, -- Heavy Bronze Lockbox
[4634] = 70, -- Iron Lockbox
[16883] = 70, -- Worn Junkbox
[5046] = 70, -- Locked Gift
[6355] = 70, -- Sturdy Locked Chest
[7869] = 70, -- Lucius's Lockbox
[16883] = 70, -- Worn Junkbox
[4636] = 125, -- Strong Iron Lockbox
[4637] = 175, -- Steel Lockbox
[13875] = 175, -- Ironbound Locked Chest
[16884] = 175, -- Sturdy Junkbox
[4638] = 225, -- Reinforced Steel Lockbox
[13875] = 175, -- Ironbound Locked Chest
[16885] = 250, -- Heavy Junkbox
[5758] = 225, -- Mithril Lockbox
[5759] = 225, -- Thorium Lockbox
[5760] = 225, -- Eternium Lockbox
[13918] = 250, -- Reinforced Locked Chest
[16885] = 250, -- Heavy Junkbox
[12033] = 275, -- Thaurissan Family Jewels
[24282] = 5000, -- Rogue's Diary (lockpick requirement sourced from comments, unverified)
}
else
lib.containers = {
-- https://www.wowhead.com/items?filter=10:161:128;1:1:1;::
[6354] = 15, -- Small Locked Chest
-- https://www.wowhead.com/items?filter=10:195;1:2;:0
[7209] = 0, -- Tazan's Satchel
[4632] = 15, -- Ornate Bronze Lockbox
[16882] = 15, -- Battered Junkbox
[4633] = 15, -- Heavy Bronze Lockbox
[16883] = 15, -- Worn Junkbox
[6355] = 15, -- Sturdy Locked Chest
[4634] = 15, -- Iron Lockbox
[4636] = 15, -- Strong Iron Lockbox
[16884] = 15, -- Sturdy Junkbox
[4637] = 15, -- Steel Lockbox
[4638] = 15, -- Reinforced Steel Lockbox
[13875] = 15, -- Ironbound Locked Chest
[5758] = 15, -- Mithril Lockbox
[16885] = 15, -- Heavy Junkbox
[13918] = 15, -- Reinforced Locked Chest
[12033] = 15, -- Thaurissan Family Jewels
[5759] = 15, -- Thorium Lockbox
[5760] = 15, -- Eternium Lockbox
[6354] = 15, -- Small Locked Chest
[6355] = 15, -- Sturdy Locked Chest
[12033] = 15, -- Thaurissan Family Jewels
[13875] = 15, -- Ironbound Locked Chest
[13918] = 15, -- Reinforced Locked Chest
[16882] = 15, -- Battered Junkbox
[16883] = 15, -- Worn Junkbox
[16884] = 15, -- Sturdy Junkbox
[16885] = 15, -- Heavy Junkbox
[106895] = 15, -- Iron-Bound Junkbox
[29569] = 30, -- Strong Junkbox
[43575] = 30, -- Reinforced Junkbox
[31952] = 30, -- Khorium Lockbox
[43575] = 30, -- Reinforced Junkbox
[43622] = 30, -- Froststeel Lockbox
[43624] = 30, -- Titanium Lockbox
[63349] = 30, -- Flame-Scarred Junkbox
[68729] = 30, -- Elementium Lockbox
[106895] = 30, -- Tiny Titanium Lockbox
[88165] = 35, -- Vine-Cracked Junkbox
[88567] = 35, -- Ghost Iron Lockbox
[116920] = 40, -- True Steel Lockbox
[121331] = 45, -- Leystone Lockbox
[169475] = 50, -- Barnacled Lockbox
[179311] = 50, -- Venthyr Lockbox
[180522] = 50, -- Night Fae Lockbox
[180532] = 50, -- Maldraxxian Lockbox
[169475] = 50, -- Barnacled Lockbox
[180533] = 50, -- Kyrian Lockbox
}
end

Expand Down

0 comments on commit e36942e

Please sign in to comment.