Inventory Items
This section includes the complete item list for the script, ready to be integrated into the most popular inventory systems. Each item is properly configured with its name, label, and parameters to ensure full compatibility and seamless functionality within your server’s inventory setup.
qs-inventory
-- PICKAXES
['pickaxe_rusty'] = {
name = 'pickaxe_rusty',
label = 'Rusty Pickaxe',
weight = 8,
type = 'item',
image = 'pickaxe_rusty.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'An old and worn pickaxe. Better than nothing.',
client = { export = 'qs-minerjob.togglePickaxe' },
server = { export = 'qs-minerjob.pickaxe' },
},
['pickaxe_stone'] = {
name = 'pickaxe_stone',
label = 'Stone-Crafted Pickaxe',
weight = 8,
type = 'item',
image = 'pickaxe_stone.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A basic pickaxe crafted from stone.',
client = { export = 'qs-minerjob.togglePickaxe' },
server = { export = 'qs-minerjob.pickaxe' },
},
['pickaxe_iron'] = {
name = 'pickaxe_iron',
label = 'Iron-Edged Pickaxe',
weight = 8,
type = 'item',
image = 'pickaxe_iron.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A reliable iron-edged pickaxe.',
client = { export = 'qs-minerjob.togglePickaxe' },
server = { export = 'qs-minerjob.pickaxe' },
},
['pickaxe_steel'] = {
name = 'pickaxe_steel',
label = 'Steel Pickaxe',
weight = 8,
type = 'item',
image = 'pickaxe_steel.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A durable steel pickaxe.',
client = { export = 'qs-minerjob.togglePickaxe' },
server = { export = 'qs-minerjob.pickaxe' },
},
['pickaxe_diamond'] = {
name = 'pickaxe_diamond',
label = 'Diamond-Encrusted Pickaxe',
weight = 8,
type = 'item',
image = 'pickaxe_diamond.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A high-end pickaxe reinforced with diamonds.',
client = { export = 'qs-minerjob.togglePickaxe' },
server = { export = 'qs-minerjob.pickaxe' },
},
['pickaxe_mythical'] = {
name = 'pickaxe_mythical',
label = 'Mythical Pickaxe',
weight = 8,
type = 'item',
image = 'pickaxe_mythical.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A legendary pickaxe of unknown origin.',
client = { export = 'qs-minerjob.togglePickaxe' },
server = { export = 'qs-minerjob.pickaxe' },
},
-- ORES / MATERIALS
['coal_ore'] = {
name = 'coal_ore',
label = 'Coal Ore',
weight = 250,
type = 'item',
image = 'coal_ore.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A piece of coal ore.',
},
['flint'] = {
name = 'flint',
label = 'Flint',
weight = 150,
type = 'item',
image = 'flint.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A sharp piece of flint.',
},
['sulfur_chunk'] = {
name = 'sulfur_chunk',
label = 'Sulfur Chunk',
weight = 200,
type = 'item',
image = 'sulfur_chunk.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A chunk of sulfur.',
},
-- GOLD
['gold_nugget'] = {
name = 'gold_nugget',
label = 'Gold Nugget',
weight = 250,
type = 'item',
image = 'gold_nugget.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A small nugget of gold.',
},
['gold_dust'] = {
name = 'gold_dust',
label = 'Gold Dust',
weight = 150,
type = 'item',
image = 'gold_dust.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A pinch of gold dust.',
},
['quartz_crystal'] = {
name = 'quartz_crystal',
label = 'Quartz Crystal',
weight = 200,
type = 'item',
image = 'quartz_crystal.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A clear quartz crystal.',
},
-- EMERALD
['emerald_crystal'] = {
name = 'emerald_crystal',
label = 'Emerald Crystal',
weight = 250,
type = 'item',
image = 'emerald_crystal.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A radiant emerald crystal.',
},
['beryl_chunk'] = {
name = 'beryl_chunk',
label = 'Beryl Chunk',
weight = 200,
type = 'item',
image = 'beryl_chunk.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A chunk of beryl.',
},
['green_garnet'] = {
name = 'green_garnet',
label = 'Green Garnet',
weight = 150,
type = 'item',
image = 'green_garnet.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A precious green garnet.',
},
-- RUBY
['ruby_crystal'] = {
name = 'ruby_crystal',
label = 'Ruby Crystal',
weight = 250,
type = 'item',
image = 'ruby_crystal.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A brilliant ruby crystal.',
},
['corundum_chunk'] = {
name = 'corundum_chunk',
label = 'Corundum Chunk',
weight = 200,
type = 'item',
image = 'corundum_chunk.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A chunk of corundum.',
},
['pink_sapphire'] = {
name = 'pink_sapphire',
label = 'Pink Sapphire',
weight = 150,
type = 'item',
image = 'pink_sapphire.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A delicate pink sapphire.',
},
-- AMETHYST
['amethyst_geode'] = {
name = 'amethyst_geode',
label = 'Amethyst Geode',
weight = 250,
type = 'item',
image = 'amethyst_geode.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A beautiful amethyst geode.',
},
['purple_quartz'] = {
name = 'purple_quartz',
label = 'Purple Quartz',
weight = 200,
type = 'item',
image = 'purple_quartz.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A piece of purple quartz.',
},
['clear_crystal'] = {
name = 'clear_crystal',
label = 'Clear Crystal',
weight = 150,
type = 'item',
image = 'clear_crystal.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A clear and pristine crystal.',
},
-- DIAMOND
['diamond_crystal'] = {
name = 'diamond_crystal',
label = 'Diamond Crystal',
weight = 250,
type = 'item',
image = 'diamond_crystal.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'An exquisite diamond crystal.',
},
['graphite_chunk'] = {
name = 'graphite_chunk',
label = 'Graphite Chunk',
weight = 200,
type = 'item',
image = 'graphite_chunk.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A chunk of graphite.',
},
['blue_diamond'] = {
name = 'blue_diamond',
label = 'Blue Diamond',
weight = 150,
type = 'item',
image = 'blue_diamond.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A rare and valuable blue diamond.',
},
-- GOLD JEWELRY
['gold_ring'] = {
name = 'gold_ring',
label = 'Gold Ring',
weight = 1,
type = 'item',
image = 'gold_ring.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A golden ring crafted from refined nuggets — small and valuable.',
},
['gold_earrings'] = {
name = 'gold_earrings',
label = 'Gold Earrings',
weight = 1,
type = 'item',
image = 'gold_earrings.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'Elegant golden earrings made from pure metal and polished dust.',
},
['gold_bracelet'] = {
name = 'gold_bracelet',
label = 'Gold Bracelet',
weight = 1,
type = 'item',
image = 'gold_bracelet.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A handcrafted bracelet forged from high-quality gold.',
},
['gold_necklace'] = {
name = 'gold_necklace',
label = 'Gold Necklace',
weight = 1,
type = 'item',
image = 'gold_necklace.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A shiny gold necklace — valuable and beautifully refined.',
},
-- EMERALD JEWELRY
['emerald_ring'] = {
name = 'emerald_ring',
label = 'Emerald Ring',
weight = 1,
type = 'item',
image = 'emerald_ring.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A ring set with a polished emerald crystal.',
},
['emerald_earrings'] = {
name = 'emerald_earrings',
label = 'Emerald Earrings',
weight = 1,
type = 'item',
image = 'emerald_earrings.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'Shimmering earrings decorated with rare emerald stones.',
},
['emerald_bracelet'] = {
name = 'emerald_bracelet',
label = 'Emerald Bracelet',
weight = 1,
type = 'item',
image = 'emerald_bracelet.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A bracelet strengthened with refined emerald and minerals.',
},
['emerald_necklace'] = {
name = 'emerald_necklace',
label = 'Emerald Necklace',
weight = 1,
type = 'item',
image = 'emerald_necklace.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A beautiful necklace featuring a polished emerald crystal.',
},
-- RUBY JEWELRY
['ruby_ring'] = {
name = 'ruby_ring',
label = 'Ruby Ring',
weight = 1,
type = 'item',
image = 'ruby_ring.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A ring embedded with a bright ruby crystal.',
},
['ruby_earrings'] = {
name = 'ruby_earrings',
label = 'Ruby Earrings',
weight = 1,
type = 'item',
image = 'ruby_earrings.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'Delicate earrings crafted with ruby and sapphire tones.',
},
['ruby_bracelet'] = {
name = 'ruby_bracelet',
label = 'Ruby Bracelet',
weight = 1,
type = 'item',
image = 'ruby_bracelet.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A refined bracelet made from ruby and rare minerals.',
},
['ruby_necklace'] = {
name = 'ruby_necklace',
label = 'Ruby Necklace',
weight = 1,
type = 'item',
image = 'ruby_necklace.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'An elegant necklace with a deep-red ruby centerpiece.',
},
-- AMETHYST JEWELRY
['amethyst_ring'] = {
name = 'amethyst_ring',
label = 'Amethyst Ring',
weight = 1,
type = 'item',
image = 'amethyst_ring.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A ring containing an amethyst geode fragment.',
},
['amethyst_earrings'] = {
name = 'amethyst_earrings',
label = 'Amethyst Earrings',
weight = 1,
type = 'item',
image = 'amethyst_earrings.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'Earrings forged with pure amethyst and refined minerals.',
},
['amethyst_bracelet'] = {
name = 'amethyst_bracelet',
label = 'Amethyst Bracelet',
weight = 1,
type = 'item',
image = 'amethyst_bracelet.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A bracelet decorated with amethyst and crystal fragments.',
},
['amethyst_necklace'] = {
name = 'amethyst_necklace',
label = 'Amethyst Necklace',
weight = 1,
type = 'item',
image = 'amethyst_necklace.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A luxurious necklace made from amethyst and clear crystals.',
},
-- DIAMOND JEWELRY
['diamond_ring'] = {
name = 'diamond_ring',
label = 'Diamond Ring',
weight = 1,
type = 'item',
image = 'diamond_ring.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A ring with a precisely-cut diamond crystal.',
},
['diamond_earrings'] = {
name = 'diamond_earrings',
label = 'Diamond Earrings',
weight = 1,
type = 'item',
image = 'diamond_earrings.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'High-value earrings featuring pure diamonds.',
},
['diamond_bracelet'] = {
name = 'diamond_bracelet',
label = 'Diamond Bracelet',
weight = 1,
type = 'item',
image = 'diamond_bracelet.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A premium bracelet made of diamonds and polished minerals.',
},
['diamond_necklace'] = {
name = 'diamond_necklace',
label = 'Diamond Necklace',
weight = 1,
type = 'item',
image = 'diamond_necklace.png',
unique = false,
useable = false,
shouldClose = true,
combinable = nil,
description = 'A prestigious necklace featuring a flawless diamond.',
},
esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('coal_ore', 'Coal Ore', 1, 0, 1),
('flint', 'Flint', 1, 0, 1),
('sulfur_chunk', 'Sulfur Chunk', 1, 0, 1),
('gold_nugget', 'Gold Nugget', 1, 0, 1),
('gold_dust', 'Gold Dust', 1, 0, 1),
('quartz_crystal', 'Quartz Crystal', 1, 0, 1),
('emerald_crystal', 'Emerald Crystal', 1, 0, 1),
('beryl_chunk', 'Beryl Chunk', 1, 0, 1),
('green_garnet', 'Green Garnet', 1, 0, 1),
('ruby_crystal', 'Ruby Crystal', 1, 0, 1),
('corundum_chunk', 'Corundum Chunk', 1, 0, 1),
('pink_sapphire', 'Pink Sapphire', 1, 0, 1),
('amethyst_geode', 'Amethyst Geode', 1, 0, 1),
('purple_quartz', 'Purple Quartz', 1, 0, 1),
('clear_crystal', 'Clear Crystal', 1, 0, 1),
('diamond_crystal', 'Diamond Crystal', 1, 0, 1),
('graphite_chunk', 'Graphite Chunk', 1, 0, 1),
('blue_diamond', 'Blue Diamond', 1, 0, 1),
('gold_ring', 'Gold Ring', 1, 0, 1),
('gold_earrings', 'Gold Earrings', 1, 0, 1),
('gold_bracelet', 'Gold Bracelet', 1, 0, 1),
('gold_necklace', 'Gold Necklace', 1, 0, 1),
('emerald_ring', 'Emerald Ring', 1, 0, 1),
('emerald_earrings', 'Emerald Earrings', 1, 0, 1),
('emerald_bracelet', 'Emerald Bracelet', 1, 0, 1),
('emerald_necklace', 'Emerald Necklace', 1, 0, 1),
('ruby_ring', 'Ruby Ring', 1, 0, 1),
('ruby_earrings', 'Ruby Earrings', 1, 0, 1),
('ruby_bracelet', 'Ruby Bracelet', 1, 0, 1),
('ruby_necklace', 'Ruby Necklace', 1, 0, 1),
('amethyst_ring', 'Amethyst Ring', 1, 0, 1),
('amethyst_earrings', 'Amethyst Earrings', 1, 0, 1),
('amethyst_bracelet', 'Amethyst Bracelet', 1, 0, 1),
('amethyst_necklace', 'Amethyst Necklace', 1, 0, 1),
('diamond_ring', 'Diamond Ring', 1, 0, 1),
('diamond_earrings', 'Diamond Earrings', 1, 0, 1),
('diamond_bracelet', 'Diamond Bracelet', 1, 0, 1),
('diamond_necklace', 'Diamond Necklace', 1, 0, 1)
;qb-inventory
-- PICKAXES
['pickaxe_rusty'] = { ['name'] = 'pickaxe_rusty', ['label'] = 'Rusty Pickaxe', ['weight'] = 8, ['type'] = 'item', ['image'] = 'pickaxe_rusty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An old and worn pickaxe. Better than nothing.', ['client'] = { ['export'] = 'qs-minerjob.togglePickaxe' }, ['server'] = { ['export'] = 'qs-minerjob.pickaxe' } },
['pickaxe_stone'] = { ['name'] = 'pickaxe_stone', ['label'] = 'Stone-Crafted Pickaxe', ['weight'] = 8, ['type'] = 'item', ['image'] = 'pickaxe_stone.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A basic pickaxe crafted from stone.', ['client'] = { ['export'] = 'qs-minerjob.togglePickaxe' }, ['server'] = { ['export'] = 'qs-minerjob.pickaxe' } },
['pickaxe_iron'] = { ['name'] = 'pickaxe_iron', ['label'] = 'Iron-Edged Pickaxe', ['weight'] = 8, ['type'] = 'item', ['image'] = 'pickaxe_iron.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A reliable iron-edged pickaxe.', ['client'] = { ['export'] = 'qs-minerjob.togglePickaxe' }, ['server'] = { ['export'] = 'qs-minerjob.pickaxe' } },
['pickaxe_steel'] = { ['name'] = 'pickaxe_steel', ['label'] = 'Steel Pickaxe', ['weight'] = 8, ['type'] = 'item', ['image'] = 'pickaxe_steel.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A durable steel pickaxe.', ['client'] = { ['export'] = 'qs-minerjob.togglePickaxe' }, ['server'] = { ['export'] = 'qs-minerjob.pickaxe' } },
['pickaxe_diamond'] = { ['name'] = 'pickaxe_diamond', ['label'] = 'Diamond-Encrusted Pickaxe', ['weight'] = 8, ['type'] = 'item', ['image'] = 'pickaxe_diamond.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A high-end pickaxe reinforced with diamonds.', ['client'] = { ['export'] = 'qs-minerjob.togglePickaxe' }, ['server'] = { ['export'] = 'qs-minerjob.pickaxe' } },
['pickaxe_mythical'] = { ['name'] = 'pickaxe_mythical', ['label'] = 'Mythical Pickaxe', ['weight'] = 8, ['type'] = 'item', ['image'] = 'pickaxe_mythical.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A legendary pickaxe of unknown origin.', ['client'] = { ['export'] = 'qs-minerjob.togglePickaxe' }, ['server'] = { ['export'] = 'qs-minerjob.pickaxe' } },
-- ORES / MATERIALS
['coal_ore'] = { ['name'] = 'coal_ore', ['label'] = 'Coal Ore', ['weight'] = 250, ['type'] = 'item', ['image'] = 'coal_ore.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A piece of coal ore.' },
['flint'] = { ['name'] = 'flint', ['label'] = 'Flint', ['weight'] = 150, ['type'] = 'item', ['image'] = 'flint.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A sharp piece of flint.' },
['sulfur_chunk'] = { ['name'] = 'sulfur_chunk', ['label'] = 'Sulfur Chunk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'sulfur_chunk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A chunk of sulfur.' },
-- GOLD
['gold_nugget'] = { ['name'] = 'gold_nugget', ['label'] = 'Gold Nugget', ['weight'] = 250, ['type'] = 'item', ['image'] = 'gold_nugget.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small nugget of gold.' },
['gold_dust'] = { ['name'] = 'gold_dust', ['label'] = 'Gold Dust', ['weight'] = 150, ['type'] = 'item', ['image'] = 'gold_dust.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A pinch of gold dust.' },
['quartz_crystal'] = { ['name'] = 'quartz_crystal', ['label'] = 'Quartz Crystal', ['weight'] = 200, ['type'] = 'item', ['image'] = 'quartz_crystal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A clear quartz crystal.' },
-- EMERALD
['emerald_crystal'] = { ['name'] = 'emerald_crystal', ['label'] = 'Emerald Crystal', ['weight'] = 250, ['type'] = 'item', ['image'] = 'emerald_crystal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A radiant emerald crystal.' },
['beryl_chunk'] = { ['name'] = 'beryl_chunk', ['label'] = 'Beryl Chunk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'beryl_chunk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A chunk of beryl.' },
['green_garnet'] = { ['name'] = 'green_garnet', ['label'] = 'Green Garnet', ['weight'] = 150, ['type'] = 'item', ['image'] = 'green_garnet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A precious green garnet.' },
-- RUBY
['ruby_crystal'] = { ['name'] = 'ruby_crystal', ['label'] = 'Ruby Crystal', ['weight'] = 250, ['type'] = 'item', ['image'] = 'ruby_crystal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A brilliant ruby crystal.' },
['corundum_chunk'] = { ['name'] = 'corundum_chunk', ['label'] = 'Corundum Chunk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'corundum_chunk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A chunk of corundum.' },
['pink_sapphire'] = { ['name'] = 'pink_sapphire', ['label'] = 'Pink Sapphire', ['weight'] = 150, ['type'] = 'item', ['image'] = 'pink_sapphire.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A delicate pink sapphire.' },
-- AMETHYST
['amethyst_geode'] = { ['name'] = 'amethyst_geode', ['label'] = 'Amethyst Geode', ['weight'] = 250, ['type'] = 'item', ['image'] = 'amethyst_geode.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A beautiful amethyst geode.' },
['purple_quartz'] = { ['name'] = 'purple_quartz', ['label'] = 'Purple Quartz', ['weight'] = 200, ['type'] = 'item', ['image'] = 'purple_quartz.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A piece of purple quartz.' },
['clear_crystal'] = { ['name'] = 'clear_crystal', ['label'] = 'Clear Crystal', ['weight'] = 150, ['type'] = 'item', ['image'] = 'clear_crystal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A clear and pristine crystal.' },
-- DIAMOND
['diamond_crystal'] = { ['name'] = 'diamond_crystal', ['label'] = 'Diamond Crystal', ['weight'] = 250, ['type'] = 'item', ['image'] = 'diamond_crystal.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An exquisite diamond crystal.' },
['graphite_chunk'] = { ['name'] = 'graphite_chunk', ['label'] = 'Graphite Chunk', ['weight'] = 200, ['type'] = 'item', ['image'] = 'graphite_chunk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A chunk of graphite.' },
['blue_diamond'] = { ['name'] = 'blue_diamond', ['label'] = 'Blue Diamond', ['weight'] = 150, ['type'] = 'item', ['image'] = 'blue_diamond.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rare and valuable blue diamond.' },
-- GOLD JEWELRY
['gold_ring'] = { ['name'] = 'gold_ring', ['label'] = 'Gold Ring', ['weight'] = 1, ['type'] = 'item', ['image'] = 'gold_ring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A golden ring crafted from refined nuggets — small and valuable.' },
['gold_earrings'] = { ['name'] = 'gold_earrings', ['label'] = 'Gold Earrings', ['weight'] = 1, ['type'] = 'item', ['image'] = 'gold_earrings.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Elegant golden earrings made from pure metal and polished dust.' },
['gold_bracelet'] = { ['name'] = 'gold_bracelet', ['label'] = 'Gold Bracelet', ['weight'] = 1, ['type'] = 'item', ['image'] = 'gold_bracelet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A handcrafted bracelet forged from high-quality gold.' },
['gold_necklace'] = { ['name'] = 'gold_necklace', ['label'] = 'Gold Necklace', ['weight'] = 1, ['type'] = 'item', ['image'] = 'gold_necklace.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shiny gold necklace — valuable and beautifully refined.' },
-- EMERALD JEWELRY
['emerald_ring'] = { ['name'] = 'emerald_ring', ['label'] = 'Emerald Ring', ['weight'] = 1, ['type'] = 'item', ['image'] = 'emerald_ring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A ring set with a polished emerald crystal.' },
['emerald_earrings'] = { ['name'] = 'emerald_earrings', ['label'] = 'Emerald Earrings', ['weight'] = 1, ['type'] = 'item', ['image'] = 'emerald_earrings.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Shimmering earrings decorated with rare emerald stones.' },
['emerald_bracelet'] = { ['name'] = 'emerald_bracelet', ['label'] = 'Emerald Bracelet', ['weight'] = 1, ['type'] = 'item', ['image'] = 'emerald_bracelet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bracelet strengthened with refined emerald and minerals.' },
['emerald_necklace'] = { ['name'] = 'emerald_necklace', ['label'] = 'Emerald Necklace', ['weight'] = 1, ['type'] = 'item', ['image'] = 'emerald_necklace.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A beautiful necklace featuring a polished emerald crystal.' },
-- RUBY JEWELRY
['ruby_ring'] = { ['name'] = 'ruby_ring', ['label'] = 'Ruby Ring', ['weight'] = 1, ['type'] = 'item', ['image'] = 'ruby_ring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A ring embedded with a bright ruby crystal.' },
['ruby_earrings'] = { ['name'] = 'ruby_earrings', ['label'] = 'Ruby Earrings', ['weight'] = 1, ['type'] = 'item', ['image'] = 'ruby_earrings.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Delicate earrings crafted with ruby and sapphire tones.' },
['ruby_bracelet'] = { ['name'] = 'ruby_bracelet', ['label'] = 'Ruby Bracelet', ['weight'] = 1, ['type'] = 'item', ['image'] = 'ruby_bracelet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refined bracelet made from ruby and rare minerals.' },
['ruby_necklace'] = { ['name'] = 'ruby_necklace', ['label'] = 'Ruby Necklace', ['weight'] = 1, ['type'] = 'item', ['image'] = 'ruby_necklace.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An elegant necklace with a deep-red ruby centerpiece.' },
-- AMETHYST JEWELRY
['amethyst_ring'] = { ['name'] = 'amethyst_ring', ['label'] = 'Amethyst Ring', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amethyst_ring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A ring containing an amethyst geode fragment.' },
['amethyst_earrings'] = { ['name'] = 'amethyst_earrings', ['label'] = 'Amethyst Earrings', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amethyst_earrings.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Earrings forged with pure amethyst and refined minerals.' },
['amethyst_bracelet'] = { ['name'] = 'amethyst_bracelet', ['label'] = 'Amethyst Bracelet', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amethyst_bracelet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bracelet decorated with amethyst and crystal fragments.' },
['amethyst_necklace'] = { ['name'] = 'amethyst_necklace', ['label'] = 'Amethyst Necklace', ['weight'] = 1, ['type'] = 'item', ['image'] = 'amethyst_necklace.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A luxurious necklace made from amethyst and clear crystals.' },
-- DIAMOND JEWELRY
['diamond_ring'] = { ['name'] = 'diamond_ring', ['label'] = 'Diamond Ring', ['weight'] = 1, ['type'] = 'item', ['image'] = 'diamond_ring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A ring with a precisely-cut diamond crystal.' },
['diamond_earrings'] = { ['name'] = 'diamond_earrings', ['label'] = 'Diamond Earrings', ['weight'] = 1, ['type'] = 'item', ['image'] = 'diamond_earrings.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'High-value earrings featuring pure diamonds.' },
['diamond_bracelet'] = { ['name'] = 'diamond_bracelet', ['label'] = 'Diamond Bracelet', ['weight'] = 1, ['type'] = 'item', ['image'] = 'diamond_bracelet.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A premium bracelet made of diamonds and polished minerals.' },
['diamond_necklace'] = { ['name'] = 'diamond_necklace', ['label'] = 'Diamond Necklace', ['weight'] = 1, ['type'] = 'item', ['image'] = 'diamond_necklace.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A prestigious necklace featuring a flawless diamond.' },ox_inventory
['pickaxe_rusty'] = {
label = 'Rusty Pickaxe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-minerjob.togglePickaxe'
},
server = {
export = 'qs-minerjob.pickaxe'
},
},
['pickaxe_stone'] = {
label = 'Stone-Crafted Pickaxe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-minerjob.togglePickaxe'
},
server = {
export = 'qs-minerjob.pickaxe'
},
},
['pickaxe_iron'] = {
label = 'Iron-Edged Pickaxe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-minerjob.togglePickaxe'
},
server = {
export = 'qs-minerjob.pickaxe'
},
},
['pickaxe_steel'] = {
label = 'Steel Pickaxe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-minerjob.togglePickaxe'
},
server = {
export = 'qs-minerjob.pickaxe'
},
},
['pickaxe_diamond'] = {
label = 'Diamond-Encrusted Pickaxe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-minerjob.togglePickaxe'
},
server = {
export = 'qs-minerjob.pickaxe'
},
},
['pickaxe_mythical'] = {
label = 'Mythical Pickaxe',
weight = 8,
stack = false,
close = true,
client = {
export = 'qs-minerjob.togglePickaxe'
},
server = {
export = 'qs-minerjob.pickaxe'
},
},
['coal_ore'] = {
label = 'Coal Ore',
weight = 250,
close = true,
description = 'A piece of coal ore.'
},
['flint'] = {
label = 'Flint',
weight = 150,
close = true,
description = 'A sharp piece of flint.'
},
['sulfur_chunk'] = {
label = 'Sulfur Chunk',
weight = 200,
close = true,
description = 'A chunk of sulfur.'
},
['gold_nugget'] = {
label = 'Gold Nugget',
weight = 250,
close = true,
description = 'A small nugget of gold.'
},
['gold_dust'] = {
label = 'Gold Dust',
weight = 150,
close = true,
description = 'A pinch of gold dust.'
},
['quartz_crystal'] = {
label = 'Quartz Crystal',
weight = 200,
close = true,
description = 'A clear quartz crystal.'
},
['emerald_crystal'] = {
label = 'Emerald Crystal',
weight = 250,
close = true,
description = 'A radiant emerald crystal.'
},
['beryl_chunk'] = {
label = 'Beryl Chunk',
weight = 200,
close = true,
description = 'A chunk of beryl.'
},
['green_garnet'] = {
label = 'Green Garnet',
weight = 150,
close = true,
description = 'A precious green garnet.'
},
['ruby_crystal'] = {
label = 'Ruby Crystal',
weight = 250,
close = true,
description = 'A brilliant ruby crystal.'
},
['corundum_chunk'] = {
label = 'Corundum Chunk',
weight = 200,
close = true,
description = 'A chunk of corundum.'
},
['pink_sapphire'] = {
label = 'Pink Sapphire',
weight = 150,
close = true,
description = 'A delicate pink sapphire.'
},
['amethyst_geode'] = {
label = 'Amethyst Geode',
weight = 250,
close = true,
description = 'A beautiful amethyst geode.'
},
['purple_quartz'] = {
label = 'Purple Quartz',
weight = 200,
close = true,
description = 'A piece of purple quartz.'
},
['clear_crystal'] = {
label = 'Clear Crystal',
weight = 150,
close = true,
description = 'A clear and pristine crystal.'
},
['diamond_crystal'] = {
label = 'Diamond Crystal',
weight = 250,
close = true,
description = 'An exquisite diamond crystal.'
},
['graphite_chunk'] = {
label = 'Graphite Chunk',
weight = 200,
close = true,
description = 'A chunk of graphite.'
},
['blue_diamond'] = {
label = 'Blue Diamond',
weight = 150,
close = true,
description = 'A rare and valuable blue diamond.'
},
['gold_ring'] = {
label = 'Gold Ring',
weight = 1,
close = true,
description = 'A golden ring crafted from refined nuggets — small and valuable.'
},
['gold_earrings'] = {
label = 'Gold Earrings',
weight = 1,
close = true,
description = 'Elegant golden earrings made from pure metal and polished dust.'
},
['gold_bracelet'] = {
label = 'Gold Bracelet',
weight = 1,
close = true,
description = 'A handcrafted bracelet forged from high-quality gold.'
},
['gold_necklace'] = {
label = 'Gold Necklace',
weight = 1,
close = true,
description = 'A shiny gold necklace — valuable and beautifully refined.'
},
['emerald_ring'] = {
label = 'Emerald Ring',
weight = 1,
close = true,
description = 'A ring set with a polished emerald crystal.'
},
['emerald_earrings'] = {
label = 'Emerald Earrings',
weight = 1,
close = true,
description = 'Shimmering earrings decorated with rare emerald stones.'
},
['emerald_bracelet'] = {
label = 'Emerald Bracelet',
weight = 1,
close = true,
description = 'A bracelet strengthened with refined emerald and minerals.'
},
['emerald_necklace'] = {
label = 'Emerald Necklace',
weight = 1,
close = true,
description = 'A beautiful necklace featuring a polished emerald crystal.'
},
['ruby_ring'] = {
label = 'Ruby Ring',
weight = 1,
close = true,
description = 'A ring embedded with a bright ruby crystal.'
},
['ruby_earrings'] = {
label = 'Ruby Earrings',
weight = 1,
close = true,
description = 'Delicate earrings crafted with ruby and sapphire tones.'
},
['ruby_bracelet'] = {
label = 'Ruby Bracelet',
weight = 1,
close = true,
description = 'A refined bracelet made from ruby and rare minerals.'
},
['ruby_necklace'] = {
label = 'Ruby Necklace',
weight = 1,
close = true,
description = 'An elegant necklace with a deep-red ruby centerpiece.'
},
['amethyst_ring'] = {
label = 'Amethyst Ring',
weight = 1,
close = true,
description = 'A ring containing an amethyst geode fragment.'
},
['amethyst_earrings'] = {
label = 'Amethyst Earrings',
weight = 1,
close = true,
description = 'Earrings forged with pure amethyst and refined minerals.'
},
['amethyst_bracelet'] = {
label = 'Amethyst Bracelet',
weight = 1,
close = true,
description = 'A bracelet decorated with amethyst and crystal fragments.'
},
['amethyst_necklace'] = {
label = 'Amethyst Necklace',
weight = 1,
close = true,
description = 'A luxurious necklace made from amethyst and clear crystals.'
},
['diamond_ring'] = {
label = 'Diamond Ring',
weight = 1,
close = true,
description = 'A ring with a precisely-cut diamond crystal.'
},
['diamond_earrings'] = {
label = 'Diamond Earrings',
weight = 1,
close = true,
description = 'High-value earrings featuring pure diamonds.'
},
['diamond_bracelet'] = {
label = 'Diamond Bracelet',
weight = 1,
close = true,
description = 'A premium bracelet made of diamonds and polished minerals.'
},
['diamond_necklace'] = {
label = 'Diamond Necklace',
weight = 1,
close = true,
description = 'A prestigious necklace featuring a flawless diamond.'
},