Items - QB
Add these into your items list e.g. qb-core/shared/items.lua
-- Cat Cafe
bluebubbletea = { name = 'bluebubbletea', label = 'Blueberry Bubble Tea', weight = 200, type = 'item', image = 'bluebubbletea.png', unique = false, useable = true, shouldClose = true, description = 'Bubble tea with chewy tapicoa pearls flavoured with blueberries' },
cakepawp = { name = 'cakepawp', label = 'Cake Pawp', weight = 200, type = 'item', image = 'cakepawp.png', unique = false, useable = true, shouldClose = true, description = 'Iced cake on a holdable stick, themed as a cat' },
catpawcookie = { name = 'catpawcookie', label = 'Cat Paw Cookie', weight = 200, type = 'item', image = 'catpawcookie.png', unique = false, useable = true, shouldClose = true, description = 'Cookie in the shape of a cat pawprint with strawberry icing' },
catpuccino = { name = 'catpuccino', label = 'Catpuccino', weight = 200, type = 'item', image = 'catpuccino.png', unique = false, useable = true, shouldClose = true, description = 'Cappuccino coffee drink with a cats face designed on top' },
greenbubbletea = { name = 'greenbubbletea', label = 'Mint Bubble Tea', weight = 200, type = 'item', image = 'greenbubbletea.png', unique = false, useable = true, shouldClose = true, description = 'Bubble tea with chewy tapicoa pearls flavoured with mint leaves' },
meowcaron = { name = 'meowcaron', label = 'Meowcaron', weight = 200, type = 'item', image = 'meowcaron.png', unique = false, useable = true, shouldClose = true, description = 'Sweet macaron designed with a cats face' },
mochiball = { name = 'mochiball', label = 'Mochi Ball', weight = 200, type = 'item', image = 'mochiball.png', unique = false, useable = true, shouldClose = true, description = 'Japanese rice cake designed with a cats face' },
orangebubbletea = { name = 'orangebubbletea', label = 'Orange Bubble Tea', weight = 200, type = 'item', image = 'orangebubbletea.png', unique = false, useable = true, shouldClose = true, description = 'Bubble tea with chewy tapicoa pearls flavoured with oranges' },
pawsagna = { name = 'pawsagna', label = 'Pawsagna', weight = 500, type = 'item', image = 'pawsagna.png', unique = false, useable = true, shouldClose = true, description = 'Beef lasagna dish served with a cats face and ears on top' },
pinkbubbletea = { name = 'pinkbubbletea', label = 'Strawberry Bubble Tea', weight = 200, type = 'item', image = 'pinkbubbletea.png', unique = false, useable = true, shouldClose = true, description = 'Bubble tea with chewy tapicoa pearls flavoured with strawberries' },
purrito = { name = 'purrito', label = 'Purrito', weight = 500, type = 'item', image = 'purrito.png', unique = false, useable = true, shouldClose = true, description = 'Beef burrito wrap tied together with a cat cafe sleeve' },
catcafemenu = { name = 'catcafemenu', label = 'UwU Cat Cafe Menu', weight = 100, type = 'item', image = 'menu.png', unique = false, useable = true, shouldClose = true, description = 'Menu for UwU Cat Cafe' },
-- Duplicates
beef = { name = 'beef', label = 'Beef', weight = 500, type = 'item', image = 'beef.png', unique = false, useable = false, shouldClose = false, description = 'A slab of raw beef' },
blueberry = { name = 'blueberry', label = 'Blueberry', weight = 100, type = 'item', image = 'blueberry.png', unique = false, useable = true, shouldClose = true, description = 'Technically not a berry' },
boba = { name = 'boba', label = 'Boba', weight = 100, type = 'item', image = 'boba.png', unique = false, useable = true, shouldClose = true, description = 'Chewy tapioca balls' },
cheddar = { name = 'cheddar', label = 'Cheddar Slice', weight = 100, type = 'item', image = 'cheddar.png', unique = false, useable = true, shouldClose = true, description = 'A slice of cheddar cheese' },
coffeebean = { name = 'coffeebean', label = 'Coffee Beans', weight = 100, type = 'item', image = 'coffeebean.png', unique = false, useable = false, shouldClose = false, description = 'Signature ingredient of coffee' },
flour = { name = 'flour', label = 'Flour', weight = 100, type = 'item', image = 'flour.png', unique = false, useable = false, shouldClose = false, description = 'Milled powder from collected grain' },
lettuce = { name = 'lettuce', label = 'Lettuce', weight = 100, type = 'item', image = 'lettuce.png', unique = false, useable = true, shouldClose = true, description = 'Perfect for burger topping... and Rabbits' },
milk = { name = 'milk', label = 'Milk', weight = 300, type = 'item', image = 'milk.png', unique = false, useable = true, shouldClose = true, description = 'A glass bottle of milk' },
mint = { name = 'mint', label = 'Mint', weight = 100, type = 'item', image = 'mint.png', unique = false, useable = false, shouldClose = false, description = 'Peppermint? Spearmint? Who knows!' },
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?' },
strawberry = { name = 'strawberry', label = 'Strawberry', weight = 100, type = 'item', image = 'strawberry.png', unique = false, useable = true, shouldClose = true, description = 'Technically not a berry' },
sugar = { name = 'sugar', label = 'Sugar', weight = 100, type = 'item', image = 'sugar.png', unique = false, useable = false, shouldClose = false, description = 'Something sweet!' },
tomato = { name = 'tomato', label = 'Tomato', weight = 100, type = 'item', image = 'tomato.png', unique = false, useable = true, shouldClose = true, description = 'A fruit. Not a vegetable.' },
Last updated