Items - QB
Add these into your items list e.g. qb-core/shared/items.lua
-- The Hen House
amaretto = { name = 'amaretto', label = 'Amaretto', weight = 200, type = 'item', image = 'amaretto.png', unique = false, useable = true, shouldClose = true, description = 'A bottle of Amaretto' },
amarettosour = { name = 'amarettosour', label = 'Amaretto Sour', weight = 200, type = 'item', image = 'amarettosour.png', unique = false, useable = true, shouldClose = true, description = 'Sweet and sour cocktail, traditionally made from Amaretto liqueur mixed with Lemon juice' },
bakedchicken = { name = 'bakedchicken', label = 'Baked Chicken', weight = 200, type = 'item', image = 'bakedchicken.png', unique = false, useable = true, shouldClose = true, description = 'Some baked chicken' },
bakedpotato = { name = 'bakedpotato', label = 'Baked Potato', weight = 200, type = 'item', image = 'bakedpotato.png', unique = false, useable = true, shouldClose = true, description = 'Locally sourced baked potato' },
bloodymary = { name = 'bloodymary', label = 'Bloody Mary', weight = 200, type = 'item', image = 'bloodymary.png', unique = false, useable = true, shouldClose = true, description = 'Vodka Cocktail with Lemon, Lime, and Tomato juice' },
chickenkebab = { name = 'chickenkebab', label = 'Chicken Kebab', weight = 200, type = 'item', image = 'chickenkebab.png', unique = false, useable = true, shouldClose = true, description = 'Chicken kebabs produced entirely locally' },
chickennugget = { name = 'chickennugget', label = 'Chicken Nuggets', weight = 200, type = 'item', image = 'chickennugget.png', unique = false, useable = true, shouldClose = true, description = 'A childhood favourite!' },
chickensalad = { name = 'chickensalad', label = 'Chicken Salad', weight = 200, type = 'item', image = 'chickensalad.png', unique = false, useable = true, shouldClose = true, description = 'Chicken salad produced entirely locally' },
chickensandwich = { name = 'chickensandwich', label = 'Chicken Sandwich', weight = 200, type = 'item', image = 'chickensandwich.png', unique = false, useable = true, shouldClose = true, description = 'Chicken sandwich produced entirely locally' },
chickentaco = { name = 'chickentaco', label = 'Chicken Taco', weight = 200, type = 'item', image = 'chickentaco.png', unique = false, useable = true, shouldClose = true, description = 'Chicken tacos produced entirely locally' },
chickentenders = { name = 'chickentenders', label = 'Chicken Tenders', weight = 200, type = 'item', image = 'chickentenders.png', unique = false, useable = true, shouldClose = true, description = 'Oven-fried chicken strips' },
chickenwaffles = { name = 'chickenwaffles', label = 'Chicken & Waffles', weight = 200, type = 'item', image = 'chickenwaffles.png', unique = false, useable = true, shouldClose = true, description = 'Special chicken dish with waffles' },
chickenwings = { name = 'chickenwings', label = 'Chicken Wings', weight = 200, type = 'item', image = 'chickenwings.png', unique = false, useable = true, shouldClose = true, description = 'Free range no more...' },
copperbrew = { name = 'copperbrew', label = 'Copper Brew', weight = 200, type = 'item', image = 'copperbrew.png', unique = false, useable = true, shouldClose = true, description = 'Tastes like pennies' },
energydrink = { name = 'energydrink', label = 'Junk Energy', weight = 200, type = 'item', image = 'energydrink.png', unique = false, useable = true, shouldClose = true, description = 'The Quick Fix' },
friedchicken = { name = 'friedchicken', label = 'Fried Chicken', weight = 200, type = 'item', image = 'friedchicken.png', unique = false, useable = true, shouldClose = true, description = 'Some fried chicken' },
gingerbeer = { name = 'gingerbeer', label = 'Ginger Beer', weight = 200, type = 'item', image = 'gingerbeer.png', unique = false, useable = true, shouldClose = true, description = 'Sweetened non-alcoholic beverage' },
grilledeggplant = { name = 'grilledeggplant', label = 'Grilled Eggplant', weight = 200, type = 'item', image = 'grilledeggplant.png', unique = false, useable = true, shouldClose = true, description = 'Locally sourced grilled eggplant' },
grilledmushroomsalad = { name = 'grilledmushroomsalad', label = 'Grilled Mushroom Salad', weight = 200, type = 'item', image = 'grilledmushroomsalad.png', unique = false, useable = true, shouldClose = true, description = 'Locally sourced mushrooms, grilled and presented in a salad' },
jagerbomb = { name = 'jagerbomb', label = 'Jägerbomb', weight = 200, type = 'item', image = 'jagerbomb.png', unique = false, useable = true, shouldClose = true, description = 'Mixed drink made by dropping a shot of Jägermeister into an energy drink' },
jagermeister = { name = 'jagermeister', label = 'Jägermeister', weight = 200, type = 'item', image = 'jagermeister.png', unique = false, useable = true, shouldClose = true, description = 'German digestif made with 56 herbs and spices' },
jalapenosalad = { name = 'jalapenosalad', label = 'Jalapeño Salad', weight = 200, type = 'item', image = 'jalapenosalad.png', unique = false, useable = true, shouldClose = true, description = 'Caution: Hot!' },
lemonicedtea = { name = 'lemonicedtea', label = 'Lemon Iced Tea', weight = 200, type = 'item', image = 'lemonicedtea.png', unique = false, useable = true, shouldClose = true, description = 'Iced tea flavoured with lemon' },
mimosa = { name = 'mimosa', label = 'Mimosa', weight = 200, type = 'item', image = 'mimosa.png', unique = false, useable = true, shouldClose = true, description = 'Champagne flute with citrus orange' },
orangeicedtea = { name = 'orangeicedtea', label = 'Orange Iced Tea', weight = 200, type = 'item', image = 'orangeicedtea.png', unique = false, useable = true, shouldClose = true, description = 'Iced tea flavoured with orange' },
peachicedtea = { name = 'peachicedtea', label = 'Peach Iced Tea', weight = 200, type = 'item', image = 'peachicedtea.png', unique = false, useable = true, shouldClose = true, description = 'Iced tea flavoured with peach' },
prosecco = { name = 'prosecco', label = 'Prosecco', weight = 200, type = 'item', image = 'prosecco.png', unique = false, useable = true, shouldClose = true, description = 'A bottle of sparking champagne-like prosecco' },
theboulder = { name = 'theboulder', label = 'The Boulder', weight = 200, type = 'item', image = 'theboulder.png', unique = false, useable = true, shouldClose = true, description = 'Ginger beer and Rum poured over a Whiskey Stone' },
tofucaesarsalad = { name = 'tofucaesarsalad', label = 'Tofu Caesar Salad', weight = 200, type = 'item', image = 'tofucaesarsalad.png', unique = false, useable = true, shouldClose = true, description = 'Vegan caesar salad entrée' },
veggiekebabs = { name = 'veggiekebabs', label = 'Veggie Kebabs', weight = 200, type = 'item', image = 'veggiekebabs.png', unique = false, useable = true, shouldClose = true, description = 'Vegetables - now on a stick!' },
whiskeycoke = { name = 'whiskeycoke', label = 'Whiskey and Coke', weight = 200, type = 'item', image = 'whiskeycoke.png', unique = false, useable = true, shouldClose = true, description = 'Whiskey mixed with Coke' },
whiterussian = { name = 'whiterussian', label = 'White Russian', weight = 200, type = 'item', image = 'whiterussian.png', unique = false, useable = true, shouldClose = true, description = 'Cocktail made with Vodka, Coffee Liqueur and Cream served with Ice' },
henhousemenu = { name = 'henhousemenu', label = 'Hen House Menu', weight = 100, type = 'item', image = 'menu.png', unique = false, useable = true, shouldClose = true, description = 'Menu for the Hen House bar' },
-- Farming
bread = { name = 'bread', label = 'Bread', weight = 200, type = 'item', image = 'bread.png', unique = false, useable = true, shouldClose = true, description = 'The staple of humanity' },
chicken = { name = 'chicken', label = 'Chicken', weight = 500, type = 'item', image = 'chicken.png', unique = false, useable = false, shouldClose = false, description = 'A raw chicken' },
coffeebean = { name = 'coffeebean', label = 'Coffee Beans', weight = 100, type = 'item', image = 'coffeebean.png', unique = false, useable = false, shouldClose = false, description = 'Signature ingredient of coffee' },
eggplant = { name = 'eggplant', label = 'Eggplant', weight = 100, type = 'item', image = 'eggplant.png', unique = false, useable = true, shouldClose = true, description = 'A favourite of many... for consumption' },
lemon = { name = 'lemon', label = 'Lemon', weight = 100, type = 'item', image = 'lemon.png', unique = false, useable = true, shouldClose = true, description = 'Citrusy delight' },
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' },
lime = { name = 'lime', label = 'Lime', weight = 100, type = 'item', image = 'lime.png', unique = false, useable = true, shouldClose = true, description = 'Goes well with Tequila!' },
mushroom = { name = 'mushroom', label = 'Mushroom', weight = 100, type = 'item', image = 'mushroom.png', unique = false, useable = true, shouldClose = true, description = 'What a fun guy!' },
onion = { name = 'onion', label = 'Onion', weight = 100, type = 'item', image = 'onion.png', unique = false, useable = false, shouldClose = false, description = 'Brings a tear to my eye' },
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?' },
peach = { name = 'peach', label = 'Peach', weight = 100, type = 'item', image = 'peach.png', unique = false, useable = true, shouldClose = true, description = 'Peachy Keen!' },
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 = true, shouldClose = true, description = 'An Irish staple' },
sugar = { name = 'sugar', label = 'Sugar', weight = 100, type = 'item', image = 'sugar.png', unique = false, useable = false, shouldClose = false, description = 'Something sweet!' },
tofu = { name = 'tofu', label = 'Tofu', weight = 100, type = 'item', image = 'tofu.png', unique = false, useable = true, shouldClose = true, description = 'Vegan friendly!' },
tomato = { name = 'tomato', label = 'Tomato', weight = 100, type = 'item', image = 'tomato.png', unique = false, useable = true, shouldClose = true, description = 'A fruit. Not a vegetable.' },
-- 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' },
water = { name = 'water', label = 'Water', weight = 500, type = 'item', image = 'water.png', unique = false, useable = true, shouldClose = true, description = 'The source of all life!' },
ambeer = { name = 'ambeer', label = 'AM Beer', weight = 200, type = 'item', image = 'ambeer.png', unique = false, useable = true, shouldClose = true, description = 'A.M. branded beer' },
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!' },
duschegold = { name = 'duschegold', label = 'Dusche Gold', weight = 200, type = 'item', image = 'duschegold.png', unique = false, useable = true, shouldClose = true, description = 'Dusche Gold branded beer' },
logger = { name = 'logger', label = 'Logger Beer', weight = 200, type = 'item', image = 'logger.png', unique = false, useable = true, shouldClose = true, description = 'Logger branded beer' },
pisswasser = { name = 'pisswasser', label = 'Pißwasser', weight = 200, type = 'item', image = 'pisswasser.png', unique = false, useable = true, shouldClose = true, description = 'Pißwasser branded beer' },
pisswasserpaleale = { name = 'pisswasserpaleale', label = 'Pißwasser Pale Ale', weight = 200, type = 'item', image = 'pisswasserpaleale.png', unique = false, useable = true, shouldClose = true, description = 'Pißwasser branded pale ale' },
pisswasserstout = { name = 'pisswasserstout', label = 'Pißwasser Stout', weight = 200, type = 'item', image = 'pisswasserstout.png', unique = false, useable = true, shouldClose = true, description = 'Pißwasser branded stout beer' },
rum = { name = 'rum', label = 'Rum', weight = 200, type = 'item', image = 'rum.png', unique = false, useable = true, shouldClose = false, description = 'Liquor distilled from sugar' },
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