Items - QB

Add these into your items list e.g. qb-core/shared/items.lua

-- Vineyard
cavabrut                = { name = 'cavabrut',                  label = 'Cava Brut',                    weight = 1000,  type = 'item', image = 'cavabrut.png',              unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of cava brut sparkling wine' },
champagne               = { name = 'champagne',                 label = 'Champagne',                    weight = 1000,  type = 'item', image = 'champagne.png',             unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of champagne' },
chardonnay              = { name = 'chardonnay',                label = 'Chardonnay',                   weight = 1000,  type = 'item', image = 'chardonnay.png',            unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of white wine' },
chardonnaygrape         = { name = 'chardonnaygrape',           label = 'Chardonnay Grapes',            weight = 100,   type = 'item', image = 'chardonnaygrape.png',       unique = false, useable = false,    shouldClose = false,    description = 'Grapes used to create Chardonnay wine' },
chubbfast               = { name = 'chubbfast',                 label = 'Chubbfast',                    weight = 1000,  type = 'item', image = 'chubbfast.png',             unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of Chubbfast Tonic Wine' },
grandcru                = { name = 'grandcru',                  label = 'Grand Cru',                    weight = 1000,  type = 'item', image = 'grandcru.png',              unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of Grand Cru Vintage Wine' },
grigiogrape             = { name = 'grigiogrape',               label = 'Pinot Grigio Grapes',          weight = 100,   type = 'item', image = 'pinotgrigiogrape.png',      unique = false, useable = false,    shouldClose = false,    description = 'Grapes used to create Pinot Grigio wine' },
macabeogrape            = { name = 'macabeogrape',              label = 'Macabeo Grapes',               weight = 100,   type = 'item', image = 'macabeogrape.png',          unique = false, useable = false,    shouldClose = false,    description = 'Grapes used to create tonic wine' },
merlot                  = { name = 'merlot',                    label = 'Merlot',                       weight = 1000,  type = 'item', image = 'merlot.png',                unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of red wine' },
merlotgrape             = { name = 'merlotgrape',               label = 'Merlot Grapes',                weight = 100,   type = 'item', image = 'merlotgrape.png',           unique = false, useable = false,    shouldClose = false,    description = 'Grapes used to create Merlot wine' },
noirgrape               = { name = 'noirgrape',                 label = 'Pinot Noir Grapes',            weight = 100,   type = 'item', image = 'pinotnoirgrape.png',        unique = false, useable = false,    shouldClose = false,    description = 'Grapes used to create Pinot Noir wine' },
pinotgrigio             = { name = 'pinotgrigio',               label = 'Pinot Grigio',                 weight = 1000,  type = 'item', image = 'pinotgrigio.png',           unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of white wine' },
pinotnoir               = { name = 'pinotnoir',                 label = 'Pinot Noir',                   weight = 1000,  type = 'item', image = 'pinotnoir.png',             unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of red wine' },
rose                    = { name = 'rose',                      label = 'RosΓ©',                         weight = 1000,  type = 'item', image = 'rose.png',                  unique = false, useable = true,     shouldClose = true,     description = 'A large bottle of rosΓ© wine' },
-- SW-Farming Duplicates
sugar                   = { name = 'sugar',                     label = 'Sugar',                        weight = 100,   type = 'item', image = 'sugar.png',                 unique = false, useable = false,    shouldClose = false,    description = 'Something sweet!' },
-- QBCore Duplicates
water                   = { name = 'water',                     label = 'Water',                        weight = 500,   type = 'item', image = 'water.png',                 unique = false, useable = true,     shouldClose = true,     description = 'For all the thirsty out there' },

Last updated