Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Nocturnal Nightclub
['appletini'] = { label = 'Appletini', weight = 200, stack = true, close = true, client = { image = 'appletini.png' }, description = 'Vodka mixed with Apple Schnapps and Orange Liqueur' },
['cosmopolitan'] = { label = 'Cosmopolitan', weight = 200, stack = true, close = true, client = { image = 'cosmopolitan.png' }, description = 'Vodka mixed with orange cointreau, cranberry juice, and lime juice' },
['cranberryjuice'] = { label = 'Cranberry Juice', weight = 200, stack = true, close = true, client = { image = 'cranberryjuice.png' }, description = 'Freshly squeezed cranberry juice' },
['gingerbeer'] = { label = 'Ginger Beer', weight = 200, stack = true, close = true, client = { image = 'gingerbeer.png' }, description = 'Sweetened non-alcoholic beverage' },
['longisland'] = { label = 'Long Island Iced Tea', weight = 200, stack = true, close = true, client = { image = 'longisland.png' }, description = 'Vodka mixed with tequila, gin, and cola, with a lemon slice' },
['margarita'] = { label = 'Margarita', weight = 200, stack = true, close = true, client = { image = 'margarita.png' }, description = 'Tequila mixed with orange triple sec, with a lime slice' },
['martini'] = { label = 'Martini', weight = 200, stack = true, close = true, client = { image = 'martini.png' }, description = 'Gin and Vermouth garnished with olives' },
['mojito'] = { label = 'Mojito', weight = 200, stack = true, close = true, client = { image = 'mojito.png' }, description = 'Traditional minty Cuban punch' },
['pinacolada'] = { label = 'Piña Colada', weight = 200, stack = true, close = true, client = { image = 'pinacolada.png' }, description = 'Rum cocktail mixed with pineapple juice' },
['pineapplejuice'] = { label = 'Pineapple Juice', weight = 200, stack = true, close = true, client = { image = 'pineapplejuice.png' }, description = 'Freshly squeezed pineapple juice' },
['rumgingerbeer'] = { label = 'Rum and Ginger Beer', weight = 200, stack = true, close = true, client = { image = 'rumgingerbeer.png' }, description = 'Rum mixed with Ginger Beer' },
['screwdriver'] = { label = 'Screwdriver', weight = 200, stack = true, close = true, client = { image = 'screwdriver.png' }, description = 'Vodka highball cocktail mixed with orange juice' },
['sexonthebeach'] = { label = 'Sex On The Beach', weight = 200, stack = true, close = true, client = { image = 'sexonthebeach.png' }, description = 'Less gritty than you would think..' },
['tequilaslammer'] = { label = 'Tequila Slammer', weight = 200, stack = true, close = true, client = { image = 'tequilaslammer.png' }, description = 'Tequila mixed with lemon or lime carbonated soda' },
['vermouth'] = { label = 'Vermouth', weight = 200, stack = true, close = true, client = { image = 'vermouth.png' }, description = 'Aromatised fortified wine' },
['vodkacoke'] = { label = 'Vodka and Coke', weight = 200, stack = true, close = true, client = { image = 'vodkacoke.png' }, description = 'Vodka mixed with Coke' },
['whiskeycoke'] = { label = 'Whiskey and Coke', weight = 200, stack = true, close = true, client = { image = 'whiskeycoke.png' }, description = 'Whiskey mixed with Coke' },
['nocturnalmenu'] = { label = 'Nocturnal Menu', weight = 100, stack = true, close = true, client = { image = 'menu.png' }, description = 'Menu for the Nocturnal nightclub' },
-- Farming
['apple'] = { label = 'Apple', weight = 100, stack = true, close = true, client = { image = 'apple.png' }, description = 'Do not eat the pip..' },
['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!' },
['olives'] = { label = 'Olives', weight = 100, stack = true, close = true, client = { image = 'olives.png' }, description = 'Not for everyone..' },
['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!' },
-- 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' },
['gin'] = { label = 'Gin', weight = 200, stack = true, close = true, client = { image = 'gin.png' }, description = 'Distilled alcohol flavoured with juniper berries' },
['rum'] = { label = 'Rum', weight = 200, stack = true, close = false, client = { image = 'rum.png' }, description = 'Liquor distilled from sugar' },
['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' },
['tequila'] = { label = 'Tequila', weight = 200, stack = false, 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' },
['water'] = { label = 'Water', weight = 500, stack = true, close = true, client = { image = 'water.png' }, description = 'The source of all life!' },
['whiskey'] = { label = 'Whiskey', weight = 200, stack = true, close = true, client = { image = 'whiskey.png' }, description = 'For all the thirsty out there' },
Last updated