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
['fishing_rod'] = {
  ['name'] = 'fishing_rod',
  ['label'] = 'Fishing Rod',
  ['weight'] = 8,
  ['type'] = 'item',
  ['image'] = 'fishing_rod2.png',
  ['unique'] = false,
  ['useable'] = true,
  ['shouldClose'] = true,
  ['combinable'] = nil,
  ['description'] = nil,
    client = {
        export = 'qs-fishing.toggleFishingRod'
    },
},

['fishing_kit'] = {
  ['name'] = 'fishing_kit',
  ['label'] = 'Fishing Kit',
  ['type'] = 'item',
  ['image'] = 'fishing_kit.png',
  ['weight'] = 8,
  ['unique'] = false,
  ['useable'] = true,
  ['shouldClose'] = true,
  ['combinable'] = nil,
  ['description'] = nil,
    client = {
        export = 'qs-fishing.toggleFishingKit'
    },
},

['earthworms'] = {
	['name'] = 'earthworms',
	['label'] = 'Earthworms',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'earthworms.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 1. Price: 1'
},

['crickets'] = {
	['name'] = 'crickets',
	['label'] = 'Crickets',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'crickets.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 1. Price: 2'
},

['grasshopper'] = {
	['name'] = 'grasshopper',
	['label'] = 'Grasshopper',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'grasshopper.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 2. Price: 2'
},

['leech'] = {
	['name'] = 'leech',
	['label'] = 'Leech',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'leech.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 2. Price: 3'
},

['shrimp'] = {
	['name'] = 'shrimp',
	['label'] = 'Shrimp',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'shrimp.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 3. Price: 3'
},

['minnow'] = {
	['name'] = 'minnow',
	['label'] = 'Minnow',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'minnow.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 3. Price: 4'
},

['crab'] = {
	['name'] = 'crab',
	['label'] = 'Crab',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'crab.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 4. Price: 4'
},

['anguile'] = {
	['name'] = 'anguile',
	['label'] = 'Anguile',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'anguile.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 5. Price: 4'
},

['squid'] = {
	['name'] = 'squid',
	['label'] = 'Squid',
	['weight'] = 1,
	['type'] = 'item',
	['image'] = 'squid.png',
	['unique'] = false,
	['useable'] = true,
	['shouldClose'] = true,
	['combinable'] = nil,
	['description'] = 'Bait usable at level 5. Price: 5'
},

['barbed_hook'] = {
    ['name'] = 'barbed_hook',
    ['label'] = 'Barbed Hook',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'barbed_hook.png',
    ['unique'] = true,
    ['useable'] = nil,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A sharp hook designed to secure caught fish.'
},

['float_bobber'] = {
    ['name'] = 'float_bobber',
    ['label'] = 'Float Bobber',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'float_bobber.png',
    ['unique'] = true,
    ['useable'] = nil,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A buoyant device that indicates when a fish bites.'
},

['spinning_reel'] = {
    ['name'] = 'spinning_reel',
    ['label'] = 'Spinning Reel',
    ['weight'] = 200,
    ['type'] = 'item',
    ['image'] = 'spinning_reel.png',
    ['unique'] = true,
    ['useable'] = nil,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A reel that allows smooth casting and retrieving.'
},

['monofilament_reel'] = {
    ['name'] = 'monofilament_reel',
    ['label'] = 'Monofilament Line',
    ['weight'] = 200,
    ['type'] = 'item',
    ['image'] = 'monofilament_reel.png',
    ['unique'] = true,
    ['useable'] = nil,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Strong single-strand line for general fishing use.'
},

['braided_line'] = {
    ['name'] = 'braided_line',
    ['label'] = 'Braided Line',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'braided_line.png',
    ['unique'] = true,
    ['useable'] = nil,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Durable line made of intertwined fibers for strength.'
},

['fluorocarbon_line'] = {
    ['name'] = 'fluorocarbon_line',
    ['label'] = 'Fluorocarbon Line',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'fluorocarbon_line.png',
    ['unique'] = true,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Nearly invisible line ideal for stealthy fishing.'
},

['carp'] = {
    ['name'] = 'carp',
    ['label'] = 'Carp',
    ['weight'] = 40,
    ['type'] = 'item',
    ['image'] = 'carp.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A common, hardy fish found in many waters.'
},

['perch'] = {
    ['name'] = 'perch',
    ['label'] = 'Perch',
    ['weight'] = 30,
    ['type'] = 'item',
    ['image'] = 'perch.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A small, agile fish often caught by anglers.'
},

['mackerel'] = {
    ['name'] = 'mackerel',
    ['label'] = 'Mackerel',
    ['weight'] = 25,
    ['type'] = 'item',
    ['image'] = 'mackerel.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A fast-swimming fish known for its striking pattern.'
},

['snapper'] = {
    ['name'] = 'snapper',
    ['label'] = 'Snapper',
    ['weight'] = 20,
    ['type'] = 'item',
    ['image'] = 'snapper.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A vibrant fish popular among recreational anglers.'
},

['pike'] = {
    ['name'] = 'pike',
    ['label'] = 'Pike',
    ['weight'] = 25,
    ['type'] = 'item',
    ['image'] = 'pike.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A predatory fish known for its sharp teeth and speed.'
},

['grouper'] = {
    ['name'] = 'grouper',
    ['label'] = 'Grouper',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'grouper.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A sturdy fish often found near rocks and reefs.'
},

['trout'] = {
    ['name'] = 'trout',
    ['label'] = 'Trout',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'trout.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A popular game fish with a delicate, flavorful flesh.'
},

['tuna'] = {
    ['name'] = 'tuna',
    ['label'] = 'Tuna',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'tuna.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A large, strong fish prized by anglers worldwide.'
},

['salmon'] = {
    ['name'] = 'salmon',
    ['label'] = 'Salmon',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'salmon.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A sought-after fish known for its rich taste and color.'
},

['marlin'] = {
    ['name'] = 'marlin',
    ['label'] = 'Marlin',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'marlin.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'A large game fish famous for speed and acrobatic jumps.'
},

['boot'] = {
    ['name'] = 'boot',
    ['label'] = 'Boot',
    ['weight'] = 150,
    ['type'] = 'item',
    ['image'] = 'boot.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'An old waterlogged boot. Not exactly the catch you were hoping for.'
},
esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
    ('fishing_rod', 'Fishing Rod', 8, 0, 1),
    ('fishing_kit', 'Fishing Kit', 8, 0, 1),

    ('earthworms', 'Earthworms', 1, 0, 1),
    ('crickets', 'Crickets', 1, 0, 1),
    ('grasshopper', 'Grasshopper', 1, 0, 1),
    ('leech', 'Leech', 1, 0, 1),
    ('shrimp', 'Shrimp', 1, 0, 1),
    ('minnow', 'Minnow', 1, 0, 1),
    ('crab', 'Crab', 1, 0, 1),
    ('anguile', 'Anguile', 1, 0, 1),
    ('squid', 'Squid', 1, 0, 1),

    ('barbed_hook', 'Barbed Hook', 100, 0, 1),
    ('float_bobber', 'Float Bobber', 100, 0, 1),
    ('spinning_reel', 'Spinning Reel', 200, 0, 1),
    ('monofilament_reel', 'Monofilament Line', 200, 0, 1),
    ('braided_line', 'Braided Line', 150, 0, 1),
    ('fluorocarbon_line', 'Fluorocarbon Line', 150, 0, 1),

    ('carp', 'Carp', 40, 0, 1),
    ('perch', 'Perch', 30, 0, 1),
    ('mackerel', 'Mackerel', 25, 0, 1),
    ('snapper', 'Snapper', 20, 0, 1),
    ('pike', 'Pike', 25, 0, 1),

    ('grouper', 'Grouper', 150, 0, 1),
    ('trout', 'Trout', 150, 0, 1),
    ('tuna', 'Tuna', 150, 0, 1),
    ('salmon', 'Salmon', 150, 0, 1),
    ('marlin', 'Marlin', 150, 0, 1),

    ('boot', 'Boot', 150, 0, 1)
;
qb-inventory
['fishing_rod'] = { ['name'] = 'fishing_rod', ['label'] = 'Fishing Rod', ['weight'] = 8, ['type'] = 'item', ['image'] = 'fishing_rod2.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = nil, client = { export = 'qs-fishing.toggleFishingRod' } },
['fishing_kit'] = { ['name'] = 'fishing_kit', ['label'] = 'Fishing Kit', ['weight'] = 8, ['type'] = 'item', ['image'] = 'fishing_kit.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = nil, client = { export = 'qs-fishing.toggleFishingKit' } },

['earthworms'] = { ['name'] = 'earthworms', ['label'] = 'Earthworms', ['weight'] = 1, ['type'] = 'item', ['image'] = 'earthworms.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 1. Price: 1' },
['crickets'] = { ['name'] = 'crickets', ['label'] = 'Crickets', ['weight'] = 1, ['type'] = 'item', ['image'] = 'crickets.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 1. Price: 2' },
['grasshopper'] = { ['name'] = 'grasshopper', ['label'] = 'Grasshopper', ['weight'] = 1, ['type'] = 'item', ['image'] = 'grasshopper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 2. Price: 2' },
['leech'] = { ['name'] = 'leech', ['label'] = 'Leech', ['weight'] = 1, ['type'] = 'item', ['image'] = 'leech.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 2. Price: 3' },
['shrimp'] = { ['name'] = 'shrimp', ['label'] = 'Shrimp', ['weight'] = 1, ['type'] = 'item', ['image'] = 'shrimp.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 3. Price: 3' },
['minnow'] = { ['name'] = 'minnow', ['label'] = 'Minnow', ['weight'] = 1, ['type'] = 'item', ['image'] = 'minnow.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 3. Price: 4' },
['crab'] = { ['name'] = 'crab', ['label'] = 'Crab', ['weight'] = 1, ['type'] = 'item', ['image'] = 'crab.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 4. Price: 4' },
['anguile'] = { ['name'] = 'anguile', ['label'] = 'Anguile', ['weight'] = 1, ['type'] = 'item', ['image'] = 'anguile.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 5. Price: 4' },
['squid'] = { ['name'] = 'squid', ['label'] = 'Squid', ['weight'] = 1, ['type'] = 'item', ['image'] = 'squid.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bait usable at level 5. Price: 5' },

['barbed_hook'] = { ['name'] = 'barbed_hook', ['label'] = 'Barbed Hook', ['weight'] = 100, ['type'] = 'item', ['image'] = 'barbed_hook.png', ['unique'] = true, ['useable'] = nil, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A sharp hook designed to secure caught fish.' },
['float_bobber'] = { ['name'] = 'float_bobber', ['label'] = 'Float Bobber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'float_bobber.png', ['unique'] = true, ['useable'] = nil, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A buoyant device that indicates when a fish bites.' },
['spinning_reel'] = { ['name'] = 'spinning_reel', ['label'] = 'Spinning Reel', ['weight'] = 200, ['type'] = 'item', ['image'] = 'spinning_reel.png', ['unique'] = true, ['useable'] = nil, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A reel that allows smooth casting and retrieving.' },
['monofilament_reel'] = { ['name'] = 'monofilament_reel', ['label'] = 'Monofilament Line', ['weight'] = 200, ['type'] = 'item', ['image'] = 'monofilament_reel.png', ['unique'] = true, ['useable'] = nil, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Strong single-strand line for general fishing use.' },
['braided_line'] = { ['name'] = 'braided_line', ['label'] = 'Braided Line', ['weight'] = 150, ['type'] = 'item', ['image'] = 'braided_line.png', ['unique'] = true, ['useable'] = nil, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Durable line made of intertwined fibers for strength.' },
['fluorocarbon_line'] = { ['name'] = 'fluorocarbon_line', ['label'] = 'Fluorocarbon Line', ['weight'] = 150, ['type'] = 'item', ['image'] = 'fluorocarbon_line.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Nearly invisible line ideal for stealthy fishing.' },

['carp'] = { ['name'] = 'carp', ['label'] = 'Carp', ['weight'] = 40, ['type'] = 'item', ['image'] = 'carp.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A common, hardy fish found in many waters.' },
['perch'] = { ['name'] = 'perch', ['label'] = 'Perch', ['weight'] = 30, ['type'] = 'item', ['image'] = 'perch.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A small, agile fish often caught by anglers.' },
['mackerel'] = { ['name'] = 'mackerel', ['label'] = 'Mackerel', ['weight'] = 25, ['type'] = 'item', ['image'] = 'mackerel.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fast-swimming fish known for its striking pattern.' },
['snapper'] = { ['name'] = 'snapper', ['label'] = 'Snapper', ['weight'] = 20, ['type'] = 'item', ['image'] = 'snapper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A vibrant fish popular among recreational anglers.' },
['pike'] = { ['name'] = 'pike', ['label'] = 'Pike', ['weight'] = 25, ['type'] = 'item', ['image'] = 'pike.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A predatory fish known for its sharp teeth and speed.' },

['grouper'] = { ['name'] = 'grouper', ['label'] = 'Grouper', ['weight'] = 150, ['type'] = 'item', ['image'] = 'grouper.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A sturdy fish often found near rocks and reefs.' },
['trout'] = { ['name'] = 'trout', ['label'] = 'Trout', ['weight'] = 150, ['type'] = 'item', ['image'] = 'trout.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A popular game fish with a delicate, flavorful flesh.' },
['tuna'] = { ['name'] = 'tuna', ['label'] = 'Tuna', ['weight'] = 150, ['type'] = 'item', ['image'] = 'tuna.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A large, strong fish prized by anglers worldwide.' },
['salmon'] = { ['name'] = 'salmon', ['label'] = 'Salmon', ['weight'] = 150, ['type'] = 'item', ['image'] = 'salmon.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A sought-after fish known for its rich taste and color.' },
['marlin'] = { ['name'] = 'marlin', ['label'] = 'Marlin', ['weight'] = 150, ['type'] = 'item', ['image'] = 'marlin.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A large game fish famous for speed and acrobatic jumps.' },

['boot'] = { ['name'] = 'boot', ['label'] = 'Boot', ['weight'] = 150, ['type'] = 'item', ['image'] = 'boot.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An old waterlogged boot. Not exactly the catch you were hoping for.' },
ox_inventory
["fishing_rod"] = {
    label = "Fishing Rod",
    weight = 8,
    stack = true,
    client = { export = "qs-fishing.toggleFishingRod" },
},

["fishing_kit"] = {
    label = "Fishing Kit",
    weight = 8,
    stack = true,
    client = { export = "qs-fishing.toggleFishingKit" },
},

["earthworms"] = {
    label = "Earthworms",
    weight = 1,
    stack = true,
},

["crickets"] = {
    label = "Crickets",
    weight = 1,
    stack = true,
},

["grasshopper"] = {
    label = "Grasshopper",
    weight = 1,
    stack = true,
},

["leech"] = {
    label = "Leech",
    weight = 1,
    stack = true,
},

["shrimp"] = {
    label = "Shrimp",
    weight = 1,
    stack = true,
},

["minnow"] = {
    label = "Minnow",
    weight = 1,
    stack = true,
},

["crab"] = {
    label = "Crab",
    weight = 1,
    stack = true,
},

["anguile"] = {
    label = "Anguile",
    weight = 1,
    stack = true,
},

["squid"] = {
    label = "Squid",
    weight = 1,
    stack = true,
},

["barbed_hook"] = {
    label = "Barbed Hook",
    weight = 100,
    stack = true,
},

["float_bobber"] = {
    label = "Float Bobber",
    weight = 100,
    stack = true,
},

["spinning_reel"] = {
    label = "Spinning Reel",
    weight = 200,
    stack = true,
},

["monofilament_reel"] = {
    label = "Monofilament Line",
    weight = 200,
    stack = true,
},

["braided_line"] = {
    label = "Braided Line",
    weight = 150,
    stack = true,
},

["fluorocarbon_line"] = {
    label = "Fluorocarbon Line",
    weight = 150,
    stack = true,
},

["carp"] = {
    label = "Carp",
    weight = 40,
    stack = true,
},

["perch"] = {
    label = "Perch",
    weight = 30,
    stack = true,
},

["mackerel"] = {
    label = "Mackerel",
    weight = 25,
    stack = true,
},

["snapper"] = {
    label = "Snapper",
    weight = 20,
    stack = true,
},

["pike"] = {
    label = "Pike",
    weight = 25,
    stack = true,
},

["grouper"] = {
    label = "Grouper",
    weight = 150,
    stack = true,
},

["trout"] = {
    label = "Trout",
    weight = 150,
    stack = true,
},

["tuna"] = {
    label = "Tuna",
    weight = 150,
    stack = true,
},

["salmon"] = {
    label = "Salmon",
    weight = 150,
    stack = true,
},

["marlin"] = {
    label = "Marlin",
    weight = 150,
    stack = true,
},

["boot"] = {
    label = "Boot",
    weight = 150,
    stack = true,
},