Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Galaxy Nightclub
['astralelixir'] = { label = 'Astral Elixir', weight = 200, stack = true, close = true, client = { image = 'astralelixir.png' }, description = 'Sugary cocktail consisting of rum with peach' },
['blackhole'] = { label = 'Black Hole', weight = 200, stack = true, close = true, client = { image = 'blackhole.png' }, description = 'Caffeinated shot of vodka' },
['codstellationbites'] = { label = 'Codstellation Bites', weight = 200, stack = true, close = true, client = { image = 'codstellationbites.png' }, description = 'Crispy cod bites with a lemon dressing' },
['cometcrush'] = { label = 'Comet Crush', weight = 200, stack = true, close = true, client = { image = 'cometcrush.png' }, description = 'Sugary shot of blueberry vodka' },
['crisps'] = { label = 'Crisps', weight = 100, stack = true, close = true, client = { image = 'crisps.png' }, description = 'Something salty!' },
['deepbluemojito'] = { label = 'Deep Blue Mojito', weight = 200, stack = true, close = true, client = { image = 'deepbluemojito.png' }, description = 'Sugary cocktail consisting of rum with blueberries, mint, and lime' },
['galacticglimpse'] = { label = 'Galactic Glimpse', weight = 200, stack = true, close = true, client = { image = 'galacticglimpse.png' }, description = 'Sugary shot of whiskey and orange' },
['moonpie'] = { label = 'Moon Pie', weight = 200, stack = true, close = true, client = { image = 'moonpie.png' }, description = 'Chocolatey marshmallow treat' },
['rocketfuelednachos'] = { label = 'Rocket Fueled Nachos', weight = 200, stack = true, close = true, client = { image = 'rocketfuelednachos.png' }, description = 'Crispy cheese and bacon nachos' },
['solarflaresipper'] = { label = 'Solar Flare Sipper', weight = 200, stack = true, close = true, client = { image = 'solarflaresipper.png' }, description = 'Sugary cocktail consisting of tequila with orange and lime' },
['starrynight'] = { label = 'Starry Night', weight = 200, stack = true, close = true, client = { image = 'starrynight.png' }, description = 'Sugary cocktail consisting of tequila with a lemon slice' },
['galaxymenu'] = { label = 'Galaxy Menu', weight = 100, stack = true, close = true, client = { image = 'menu.png' }, description = 'Menu for the Galaxy Nightclub' },
-- Farming
['bacon'] = { label = 'Bacon', weight = 100, stack = true, close = true, client = { image = 'bacon.png' }, description = 'Little slice of Kevin' },
['blueberry'] = { label = 'Blueberry', weight = 100, stack = true, close = true, client = { image = 'blueberry.png' }, description = 'Technically not a berry' },
['cheddar'] = { label = 'Cheddar Slice', weight = 100, stack = true, close = true, client = { image = 'cheddar.png' }, description = 'Slice of Cheese' },
['cocoabean'] = { label = 'Cocoa Bean', weight = 100, stack = false, close = false, client = { image = 'cocoabean.png' }, description = 'Signature ingredient of chocolate' },
['coffeebean'] = { label = 'Coffee Beans', weight = 100, stack = false, close = false, client = { image = 'coffeebean.png' }, description = 'Signature ingredient of coffee' },
['lemon'] = { label = 'Lemon', weight = 100, stack = true, close = true, client = { image = 'lemon.png' }, description = 'Citrusy delight' },
['lime'] = { label = 'Lime', weight = 100, stack = true, close = true, client = { image = 'lime.png' }, description = 'Goes well with Tequila!' },
['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?' },
['peach'] = { label = 'Peach', weight = 100, stack = true, close = true, client = { image = 'peach.png' }, description = 'Peachy Keen!' },
['sugar'] = { label = 'Sugar', weight = 100, stack = false, close = false, client = { image = 'sugar.png' }, description = 'Something sweet!' },
-- Fishing
['cod'] = { label = 'Cod', weight = 1000, stack = false, close = false, client = { image = 'cod.png' }, description = 'A saltwater cod!' },
-- Other Drinks
['ecola'] = { label = 'eCola', weight = 100, stack = true, close = true, client = { image = 'ecola.png' }, description = 'Full fat cola beverage' },
['ecolalight'] = { label = 'eCola Light', weight = 100, stack = true, close = true, client = { image = 'ecolalight.png' }, description = 'Sugar free cola beverage' },
['sprunk'] = { label = 'Sprunk', weight = 100, stack = true, close = true, client = { image = 'sprunk.png' }, description = 'Full fat lemonade beverage' },
['sprunklight'] = { label = 'Sprunk Light', weight = 100, stack = true, close = true, client = { image = 'sprunklight.png' }, description = 'Sugar free lemonade beverage' },
['water'] = { label = 'Water', weight = 500, stack = true, close = true, client = { image = 'water.png' }, description = 'The source of all life!' },
['rum'] = { label = 'Rum', weight = 200, stack = true, close = false, client = { image = 'rum.png' }, description = 'Liquor distilled from sugar' },
['tequila'] = { label = 'Tequila', weight = 200, stack = true, close = false, client = { image = 'tequila.png' }, description = 'Liquor distilled from blue agave' },
['vodka'] = { label = 'Vodka', weight = 200, stack = true, close = true, client = { image = 'vodka.png' }, description = 'Russian staple drink' },
['whiskey'] = { label = 'Whiskey', weight = 200, stack = true, close = true, client = { image = 'whiskey.png' }, description = 'For all the thirsty out there' },
Last updated