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