Items - QB
Add these into your items list e.g. qb-core/shared/items.lua
-- Galaxy Nightclub
astralelixir = { name = 'astralelixir', label = 'Astral Elixir', weight = 200, type = 'item', image = 'astralelixir.png', unique = false, useable = true, shouldClose = true, description = 'Sugary cocktail consisting of rum with peach' },
blackhole = { name = 'blackhole', label = 'Black Hole', weight = 200, type = 'item', image = 'blackhole.png', unique = false, useable = true, shouldClose = true, description = 'Caffeinated shot of vodka' },
codstellationbites = { name = 'codstellationbites', label = 'Codstellation Bites', weight = 200, type = 'item', image = 'codstellationbites.png', unique = false, useable = true, shouldClose = true, description = 'Crispy cod bites with a lemon dressing' },
cometcrush = { name = 'cometcrush', label = 'Comet Crush', weight = 200, type = 'item', image = 'cometcrush.png', unique = false, useable = true, shouldClose = true, description = 'Sugary shot of blueberry vodka' },
crisps = { name = 'crisps', label = 'Crisps', weight = 100, type = 'item', image = 'crisps.png', unique = false, useable = true, shouldClose = true, description = 'Something salty!' },
deepbluemojito = { name = 'deepbluemojito', label = 'Deep Blue Mojito', weight = 200, type = 'item', image = 'deepbluemojito.png', unique = false, useable = true, shouldClose = true, description = 'Sugary cocktail consisting of rum with blueberries, mint, and lime' },
galacticglimpse = { name = 'galacticglimpse', label = 'Galactic Glimpse', weight = 200, type = 'item', image = 'galacticglimpse.png', unique = false, useable = true, shouldClose = true, description = 'Sugary shot of whiskey and orange' },
moonpie = { name = 'moonpie', label = 'Moon Pie', weight = 200, type = 'item', image = 'moonpie.png', unique = false, useable = true, shouldClose = true, description = 'Chocolatey marshmallow treat' },
rocketfuelednachos = { name = 'rocketfuelednachos', label = 'Rocket Fueled Nachos', weight = 200, type = 'item', image = 'rocketfuelednachos.png', unique = false, useable = true, shouldClose = true, description = 'Crispy cheese and bacon nachos' },
solarflaresipper = { name = 'solarflaresipper', label = 'Solar Flare Sipper', weight = 200, type = 'item', image = 'solarflaresipper.png', unique = false, useable = true, shouldClose = true, description = 'Sugary cocktail consisting of tequila with orange and lime' },
starrynight = { name = 'starrynight', label = 'Starry Night', weight = 200, type = 'item', image = 'starrynight.png', unique = false, useable = true, shouldClose = true, description = 'Sugary cocktail consisting of tequila with a lemon slice' },
galaxymenu = { name = 'galaxymenu', label = 'Galaxy Menu', weight = 100, type = 'item', image = 'menu.png', unique = false, useable = true, shouldClose = true, description = 'Menu for the Galaxy Nightclub' },
-- Farming
bacon = { name = 'bacon', label = 'Bacon', weight = 100, type = 'item', image = 'bacon.png', unique = false, useable = true, shouldClose = true, description = 'Little slice of Kevin' },
blueberry = { name = 'blueberry', label = 'Blueberry', weight = 100, type = 'item', image = 'blueberry.png', unique = false, useable = true, shouldClose = true, description = 'Technically not a berry' },
cheddar = { name = 'cheddar', label = 'Cheddar Slice', weight = 100, type = 'item', image = 'cheddar.png', unique = false, useable = true, shouldClose = true, description = 'Slice of Cheese' },
cocoabean = { name = 'cocoabean', label = 'Cocoa Bean', weight = 100, type = 'item', image = 'cocoabean.png', unique = false, useable = false, shouldClose = false, description = 'Signature ingredient of chocolate' },
coffeebean = { name = 'coffeebean', label = 'Coffee Beans', weight = 100, type = 'item', image = 'coffeebean.png', unique = false, useable = false, shouldClose = false, description = 'Signature ingredient of coffee' },
lemon = { name = 'lemon', label = 'Lemon', weight = 100, type = 'item', image = 'lemon.png', unique = false, useable = true, shouldClose = true, description = 'Citrusy delight' },
lime = { name = 'lime', label = 'Lime', weight = 100, type = 'item', image = 'lime.png', unique = false, useable = true, shouldClose = true, description = 'Goes well with Tequila!' },
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?' },
peach = { name = 'peach', label = 'Peach', weight = 100, type = 'item', image = 'peach.png', unique = false, useable = true, shouldClose = true, description = 'Peachy Keen!' },
sugar = { name = 'sugar', label = 'Sugar', weight = 100, type = 'item', image = 'sugar.png', unique = false, useable = false, shouldClose = false, description = 'Something sweet!' },
-- Fishing
cod = { name = 'cod', label = 'Cod', weight = 1000, type = 'item', image = 'cod.png', unique = true, useable = false, shouldClose = false, description = 'A saltwater cod!' },
-- 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!' },
rum = { name = 'rum', label = 'Rum', weight = 200, type = 'item', image = 'rum.png', unique = false, useable = true, shouldClose = false, description = 'Liquor distilled from sugar' },
tequila = { name = 'tequila', label = 'Tequila', weight = 200, type = 'item', image = 'tequila.png', unique = false, useable = true, shouldClose = false, description = 'Liquor distilled from blue agave' },
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