Items - QB
Add these into your items list e.g. qb-core/shared/items.lua
-- Pops Diner
bltsandwich = { name = 'bltsandwich', label = 'BLT Sandwich', weight = 200, type = 'item', image = 'bltsandwich.png', unique = true, useable = true, shouldClose = true, description = 'Juicy tomatoes, smoked bacon and mixed salad served on malted bread' },
blueberrycupcake = { name = 'blueberrycupcake', label = 'Blueberry Cupcake', weight = 200, type = 'item', image = 'blueberrycupcake.png', unique = true, useable = true, shouldClose = true, description = 'Freshly made chocolate cupcake adorned with blueberry icing' },
carrotcake = { name = 'carrotcake', label = 'Carrot Cake', weight = 200, type = 'item', image = 'carrotcake.png', unique = true, useable = true, shouldClose = true, description = 'Cake that contains carrots mixed into the batter' },
cheeseburger = { name = 'cheeseburger', label = 'Cheeseburger', weight = 200, type = 'item', image = 'cheeseburger.png', unique = true, useable = true, shouldClose = true, description = 'Tender Cheese Burger in a toasted bun' },
cheesehamsandwich = { name = 'cheesehamsandwich', label = 'Cheese and Ham Sandwich', weight = 200, type = 'item', image = 'cheesehamsandwich.png', unique = true, useable = true, shouldClose = true, description = 'Cured ham and sliced mature cheddar cheese on malted bread' },
chickenburger = { name = 'chickenburger', label = 'Chicken Burger', weight = 500, type = 'item', image = 'chickenburger.png', unique = true, useable = true, shouldClose = true, description = 'Pops Diner signature chicken burger' },
chickensaladsandwich = { name = 'chickensaladsandwich', label = 'Chicken Salad Sandwich', weight = 200, type = 'item', image = 'chickensaladsandwich.png', unique = true, useable = true, shouldClose = true, description = 'Chicken breast with mayo and mixed salad on malted bread' },
chocolatecupcake = { name = 'chocolatecupcake', label = 'Chocolate Cupcake', weight = 200, type = 'item', image = 'chocolatecupcake.png', unique = true, useable = true, shouldClose = true, description = 'Freshly made chocolate cupcake adorned with chocolate icing' },
eggmayosandwich = { name = 'eggmayosandwich', label = 'Egg Mayo Sandwich', weight = 200, type = 'item', image = 'eggmayosandwich.png', unique = true, useable = true, shouldClose = true, description = 'Free-range egg mayo and fresh cress on malted bread' },
hamburger = { name = 'hamburger', label = 'Hamburger', weight = 500, type = 'item', image = 'hamburger.png', unique = true, useable = true, shouldClose = true, description = 'Pops Diner signature hamburger' },
hamsaladsandwich = { name = 'hamsaladsandwich', label = 'Ham Salad Sandwich', weight = 200, type = 'item', image = 'hamsaladsandwich.png', unique = true, useable = true, shouldClose = true, description = 'Cured ham and mixed salad leaves on malted bread' },
pancake = { name = 'pancake', label = 'Pancakes', weight = 200, type = 'item', image = 'pancake.png', unique = true, useable = true, shouldClose = true, description = 'Pops Diner signature pancakes' },
salmonsandwich = { name = 'salmonsandwich', label = 'Salmon Sandwich', weight = 200, type = 'item', image = 'salmonsandwich.png', unique = true, useable = true, shouldClose = true, description = 'Smoked salmon with a squeeze of lemon juice on malted bread' },
sausageeggs = { name = 'sausageeggs', label = 'Sausage and Eggs', weight = 100, type = 'item', image = 'sausageeggs.png', unique = true, useable = true, shouldClose = true, description = 'Pops Diner signature breakfast meal' },
strawberrycupcake = { name = 'strawberrycupcake', label = 'Strawberry Cupcake', weight = 200, type = 'item', image = 'strawberrycupcake.png', unique = true, useable = true, shouldClose = true, description = 'Freshly made chocolate cupcake adorned with strawberry icing' },
popsdinermenu = { name = 'popsdinermenu', label = 'Pops Diner Menu', weight = 100, type = 'item', image = 'menu.png', unique = false, useable = true, shouldClose = true, description = 'Menu for Pops Diner' },
-- 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' },
chickenbreast = { name = 'chickenbreast', label = 'Chicken Breast', weight = 100, type = 'item', image = 'chickenbreast.png', unique = false, useable = false, shouldClose = false, description = 'A cooked chicken breast' },
egg = { name = 'egg', label = 'Egg', weight = 100, type = 'item', image = 'egg.png', unique = false, useable = false, shouldClose = false, description = 'Free range of course!' },
flour = { name = 'flour', label = 'Flour', weight = 100, type = 'item', image = 'flour.png', unique = false, useable = false, shouldClose = false, description = 'Milled powder from collected grain' },
ham = { name = 'ham', label = 'Ham', weight = 100, type = 'item', image = 'ham.png', unique = false, useable = true, shouldClose = true, description = 'Freshly sliced ham' },
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!' },
mushroom = { name = 'mushroom', label = 'Mushroom', weight = 100, type = 'item', image = 'mushroom.png', unique = false, useable = true, shouldClose = true, description = 'What a fun guy!' },
pepper = { name = 'pepper', label = 'Pepper', weight = 100, type = 'item', image = 'pepper.png', unique = false, useable = true, shouldClose = true, description = 'Surprisingly good raw!' },
sausages = { name = 'sausages', label = 'Sausages', weight = 100, type = 'item', image = 'sausages.png', unique = false, useable = true, shouldClose = true, description = 'Some not-so-spicy sausage!' },
tomato = { name = 'tomato', label = 'Tomato', weight = 100, type = 'item', image = 'tomato.png', unique = false, useable = true, shouldClose = true, description = 'A fruit. Not a vegetable.' },
-- Fishing
salmon = { name = 'salmon', label = 'Salmon', weight = 1000, type = 'item', image = 'salmon.png', unique = true, useable = false, shouldClose = true, description = 'A freshwater river salmon!' },
-- Other 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' },
Last updated