Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Vineyard
['cavabrut'] = { label = 'Cava Brut', weight = 1000, stack = false, close = true, client = { image = 'cavabrut.png' }, description = 'A large bottle of cava brut sparkling wine' },
['champagne'] = { label = 'Champagne', weight = 1000, stack = false, close = true, client = { image = 'champagne.png' }, description = 'A large bottle of champagne' },
['chardonnay'] = { label = 'Chardonnay', weight = 1000, stack = false, close = true, client = { image = 'chardonnay.png' }, description = 'A large bottle of white wine' },
['chardonnaygrape'] = { label = 'Chardonnay Grapes', weight = 100, stack = false, close = false, client = { image = 'chardonnaygrape.png' }, description = 'Grapes used to create Chardonnay wine' },
['chubbfast'] = { label = 'Chubbfast', weight = 1000, stack = false, close = true, client = { image = 'chubbfast.png' }, description = 'A large bottle of Chubbfast Tonic Wine' },
['grandcru'] = { label = 'Grand Cru', weight = 1000, stack = false, close = true, client = { image = 'grandcru.png' }, description = 'A large bottle of Grand Cru Vintage Wine' },
['grigiogrape'] = { label = 'Pinot Grigio Grapes', weight = 100, stack = false, close = false, client = { image = 'pinotgrigiogrape.png' }, description = 'Grapes used to create Pinot Grigio wine' },
['macabeogrape'] = { label = 'Macabeo Grapes', weight = 100, stack = false, close = false, client = { image = 'macabeogrape.png' }, description = 'Grapes used to create tonic wine' },
['merlot'] = { label = 'Merlot', weight = 1000, stack = false, close = true, client = { image = 'merlot.png' }, description = 'A large bottle of red wine' },
['merlotgrape'] = { label = 'Merlot Grapes', weight = 100, stack = false, close = false, client = { image = 'merlotgrape.png' }, description = 'Grapes used to create Merlot wine' },
['noirgrape'] = { label = 'Pinot Noir Grapes', weight = 100, stack = false, close = false, client = { image = 'pinotnoirgrape.png' }, description = 'Grapes used to create Pinot Noir wine' },
['pinotgrigio'] = { label = 'Pinot Grigio', weight = 1000, stack = false, close = true, client = { image = 'pinotgrigio.png' }, description = 'A large bottle of white wine' },
['pinotnoir'] = { label = 'Pinot Noir', weight = 1000, stack = false, close = true, client = { image = 'pinotnoir.png' }, description = 'A large bottle of red wine' },
['rose'] = { label = 'RosΓ©', weight = 1000, stack = false, close = true, client = { image = 'rose.png' }, description = 'A large bottle of rosΓ© wine' },
-- Farming
['sugar'] = { label = 'Sugar', weight = 100, stack = false, close = false, client = { image = 'sugar.png' }, description = 'Something sweet!' },
-- Misc.
['water'] = { label = 'Water', weight = 500, stack = false, close = true, client = { image = 'water.png' }, description = 'For all the thirsty out there' },
Last updated