Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Yellow Jack Inn
['crisps'] = { label = 'Crisps', weight = 100, stack = true, close = true, client = { image = 'crisps.png' }, description = 'Salted potato snacks' },
['pieandbeans'] = { label = 'Pie and Beans', weight = 200, stack = true, close = true, client = { image = 'pieandbeans.png' }, description = 'Ohhhhh... a pie!' },
['saltysids'] = { label = 'Salty Sids', weight = 200, stack = true, close = true, client = { image = 'saltysids.png' }, description = 'The saltiest nuts' },
['yellowjackmenu'] = { label = 'Yellowjack Menu', weight = 100, stack = false, close = true, client = { image = 'menu.png' }, description = 'Menu for the Yellowjack bar' },
-- Farming
['beef'] = { label = 'Beef', weight = 500, stack = false, close = false, client = { image = 'beef.png' }, description = 'A slab of raw beef' },
['flour'] = { label = 'Flour', weight = 100, stack = false, close = false, client = { image = 'flour.png' }, description = 'Milled powder from collected grain' },
['lime'] = { label = 'Lime', weight = 100, stack = true, close = true, client = { image = 'lime.png' }, description = 'Goes well with Tequila!' },
['peanut'] = { label = 'Peanut', weight = 100, stack = true, close = true, client = { image = 'peanut.png' }, description = 'Make sure you are not allergic!' },
['potato'] = { label = 'Potato', weight = 100, stack = true, close = true, client = { image = 'potato.png' }, description = 'An Irish staple' },
['soybean'] = { label = 'Soy Bean', weight = 100, stack = false, close = false, client = { image = 'soybean.png' }, description = 'A bean, but a legume' },
['sugar'] = { label = 'Sugar', weight = 100, stack = false, close = false, client = { image = 'sugar.png' }, description = 'Something sweet!' },
-- Soft Drinks
['ecola'] = { label = 'eCola', weight = 100, stack = true, close = true, client = { image = 'ecola.png' }, description = 'Full fat cola beverage' },
['ecolalight'] = { label = 'eCola Light', weight = 100, stack = true, close = true, client = { image = 'ecolalight.png' }, description = 'Sugar free cola beverage' },
['sprunk'] = { label = 'Sprunk', weight = 100, stack = true, close = true, client = { image = 'sprunk.png' }, description = 'Full fat lemonade beverage' },
['sprunklight'] = { label = 'Sprunk Light', weight = 100, stack = true, close = true, client = { image = 'sprunklight.png' }, description = 'Sugar free lemonade beverage' },
['water'] = { label = 'Water', weight = 500, stack = true, close = true, client = { image = 'water.png' }, description = 'The source of all life!' },
-- Alcohol
['beer'] = { label = 'Beer', weight = 200, stack = true, close = true, client = { image = 'beer.png' }, description = 'Nothing like a good cold beer!' },
['rum'] = { label = 'Rum', weight = 200, stack = true, close = false, client = { image = 'rum.png' }, description = 'Liquor distilled from sugar' },
['tequila'] = { label = 'Tequila', weight = 200, stack = true, close = false, client = { image = 'tequila.png' }, description = 'Liquor distilled from blue agave' },
['vodka'] = { label = 'Vodka', weight = 200, stack = true, close = true, client = { image = 'vodka.png' }, description = 'Russian staple drink' },
['whiskey'] = { label = 'Whiskey', weight = 200, stack = true, close = true, client = { image = 'whiskey.png' }, description = 'For all the thirsty out there' },
Last updated