Items - QB
Add these into your items list e.g. qb-core/shared/items.lua
-- Horny Burger
baconhorn = { name = 'baconhorn', label = 'Bacon Hornburger', weight = 500, type = 'item', image = 'baconhorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature cheeseburger with bacon' },
chickenhorn = { name = 'chickenhorn', label = 'Chicken Hornburger', weight = 500, type = 'item', image = 'chickenhorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature chicken burger' },
chickenfajita = { name = 'chickenfajita', label = 'Chicken Fajita', weight = 200, type = 'item', image = 'chickenfajita.png', unique = false, useable = true, shouldClose = true, description = 'Fajita loaded with chicken' },
doublechickenhorn = { name = 'doublechickenhorn', label = 'Double Chicken Hornburger', weight = 500, type = 'item', image = 'doublechickenhorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature double chicken burger' },
doublehorn = { name = 'doublehorn', label = 'Double Hornburger', weight = 500, type = 'item', image = 'doublehorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature double cheeseburger' },
hornburger = { name = 'hornburger', label = 'Hornburger', weight = 500, type = 'item', image = 'hornburger.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature cheeseburger' },
hornyfries = { name = 'hornyfries', label = 'Horny Fries', weight = 200, type = 'item', image = 'hornyfries.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature fries' },
hornypoppers = { name = 'hornypoppers', label = 'Horny Poppers', weight = 200, type = 'item', image = 'hornypoppers.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature poppers' },
hornysbreakfast = { name = 'hornysbreakfast', label = 'Hornys Breakfast', weight = 500, type = 'item', image = 'hornysbreakfast.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature breakfast' },
hunksohen = { name = 'hunksohen', label = 'Hunk o Hen', weight = 200, type = 'item', image = 'hunksohen.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature chicken nuggets' },
meteorite = { name = 'meteorite', label = 'Meteorite', weight = 200, type = 'item', image = 'meteorite.png', unique = false, useable = true, shouldClose = true, description = 'Meteorite Ice Cream' },
orangotang = { name = 'orangotang', label = 'Orang-O-Tang', weight = 200, type = 'item', image = 'orangotang.png', unique = false, useable = true, shouldClose = true, description = 'Orang-O-Tang Ice Cream' },
picklehorn = { name = 'picklehorn', label = 'Pickle Hornburger', weight = 500, type = 'item', image = 'picklehorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature cheeseburger with pickles' },
triplechickenhorn = { name = 'triplechickenhorn', label = 'Triple Chicken Hornburger', weight = 500, type = 'item', image = 'triplechickenhorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature triple chicken burger' },
triplehorn = { name = 'triplehorn', label = 'Triple Hornburger', weight = 500, type = 'item', image = 'triplehorn.png', unique = false, useable = true, shouldClose = true, description = 'Horny Burger signature triple cheeseburger' },
hornysmenu = { name = 'hornysmenu', label = 'Horny Burger Menu', weight = 100, type = 'item', image = 'menu.png', unique = false, useable = true, shouldClose = true, description = 'Menu for the Horny Burger chain' },
-- Farming
bacon = { name = 'bacon', label = 'Bacon', weight = 100, type = 'item', image = 'bacon.png', unique = false, useable = true, shouldClose = true, description = 'Little slice of Kevin' },
beef = { name = 'beef', label = 'Beef', weight = 500, type = 'item', image = 'beef.png', unique = false, useable = false, shouldClose = false, description = 'A slab of raw beef' },
bread = { name = 'bread', label = 'Bread', weight = 200, type = 'item', image = 'bread.png', unique = false, useable = true, shouldClose = true, description = 'The staple of humanity' },
cheddar = { name = 'cheddar', label = 'Cheddar Slice', weight = 100, type = 'item', image = 'cheddar.png', unique = false, useable = true, shouldClose = true, description = 'Slice of Cheese' },
chicken = { name = 'chicken', label = 'Chicken', weight = 500, type = 'item', image = 'chicken.png', unique = false, useable = false, shouldClose = false, description = 'A raw chicken' },
cocoabean = { name = 'cocoabean', label = 'Cocoa Bean', weight = 100, type = 'item', image = 'cocoabean.png', unique = false, useable = false, shouldClose = false, description = 'Signature ingredient of chocolate' },
cucumber = { name = 'cucumber', label = 'Cucumber', weight = 100, type = 'item', image = 'cucumber.png', unique = false, useable = true, shouldClose = true, description = 'A creeping vine plant common in salads' },
egg = { name = 'egg', label = 'Egg', weight = 100, type = 'item', image = 'egg.png', unique = false, useable = false, shouldClose = false, description = 'Free range of course!' },
lettuce = { name = 'lettuce', label = 'Lettuce', weight = 100, type = 'item', image = 'lettuce.png', unique = false, useable = true, shouldClose = true, description = 'Perfect for burger topping... or Rabbits' },
milk = { name = 'milk', label = 'Milk', weight = 300, type = 'item', image = 'milk.png', unique = false, useable = true, shouldClose = true, description = 'Glass bottle of milk!' },
orange = { name = 'orange', label = 'Orange', weight = 100, type = 'item', image = 'orange.png', unique = false, useable = true, shouldClose = true, description = 'What came first - the fruit or the colour?' },
pepper = { name = 'pepper', label = 'Pepper', weight = 100, type = 'item', image = 'pepper.png', unique = false, useable = true, shouldClose = true, description = 'Surprisingly good raw!' },
potato = { name = 'potato', label = 'Potato', weight = 100, type = 'item', image = 'potato.png', unique = false, useable = false, shouldClose = false, description = 'An Irish staple' },
tomato = { name = 'tomato', label = 'Tomato', weight = 100, type = 'item', image = 'tomato.png', unique = false, useable = true, shouldClose = true, description = 'A fruit. Not a vegetable.' },
-- Soft Drinks
coffee = { name = 'coffee', label = 'Coffee', weight = 200, type = 'item', image = 'coffee.png', unique = false, useable = true, shouldClose = true, description = 'Pump 4 Caffeine' },
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!' },
Last updated