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