Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Config = {
- Locale = 'en', -- Select locale (only available for default "en" & "es")
- Locales = {
- ['en'] = {
- ['making_cocktail'] = 'Making cocktail...',
- ['notifications_title'] = 'COCKTAILS',
- ['make_cocktails'] = 'Make cocktails',
- ['dont_have_ingredients'] = 'You cannot prepare the cocktail because you do not have all the necessary ingredients.',
- ['bottle_states'] = {
- [1] = 'Almost complete',
- [2] = 'More than a half',
- [3] = 'A little more than half',
- [4] = 'To the half',
- [5] = 'A little less than half',
- [6] = 'Less than half',
- [7] = 'Quite less than half',
- [8] = 'Almost empty',
- [9] = 'Last cocktail',
- },
- },
- ['es'] = {
- ['making_cocktail'] = 'Preparando cocktail...',
- ['notifications_title'] = 'CÓCTELES',
- ['make_cocktails'] = 'Preparar cócteles',
- ['dont_have_ingredients'] = 'No puedes preparar el cóctel porque no tienes todos los ingredientes necesarios',
- ['bottle_states'] = {
- [1] = 'Casi completo',
- [2] = 'Más de la mitad',
- [3] = 'Un poco más de la mitad',
- [4] = 'A la mitad',
- [5] = 'Un poco menos de la mitad',
- [6] = 'Menos de la mitad',
- [7] = 'Bastante menos de la mitad',
- [8] = 'Casi vacía',
- [9] = 'Último cocktail',
- },
- }
- },
- Timers = {
- ['making_cocktail'] = 20000, -- time in ms
- },
- Jobs = {["vanilla"] = 0, ["bahamas"] = 0}, -- Jobs that can interact with the shaker
- Blurscreen = true, -- Blur background when menu is open
- NotificationSystem = 'nc-notifications', -- Select your notification system (qb-core or nc-notifications) | You can add your custom notification system in the editables files
- Bottles = { -- List of items that will have more than 1 use when making cocktails
- 'vodka',
- 'tomatojuice',
- 'lemonjuice',
- 'tabasco',
- 'worcestershire',
- 'whiterum',
- 'rum',
- 'coconutwater',
- 'coffeeliqueur',
- 'condensedmilk',
- 'gin',
- 'sugar',
- 'tonic',
- 'cognac',
- 'triplesec',
- 'whisky',
- 'drambuie',
- 'vermouth',
- 'redvermouth',
- 'campari',
- 'amaretto',
- 'peachliqueur',
- 'orangejuice',
- 'blueberryjuice',
- 'tonic',
- 'pineapplejuice',
- 'cachaza',
- },
- Cocktails = {
- {
- ['name'] = 'bloodymary',
- ['label'] = 'BloodyMary',
- ['ingredients'] = { 'vodka', 'tomatojuice', 'lemonjuice', 'tabasco', 'worcestershire', 'pepper', 'ice'},
- ['image'] = './assets/bloodymary.png',
- },
- {
- ['name'] = 'cocoloco',
- ['label'] = 'Coco Loco',
- ['ingredients'] = { 'vodka', 'tequila', 'whiterum', 'lemonjuice', 'worcestershire', 'coconutwater', 'ice' },
- ['image'] = './assets/cocoloco.png',
- },
- {
- ['name'] = 'whiterussian',
- ['label'] = 'White Russian',
- ['ingredients'] = { 'vodka', 'coffeeliqueur', 'condensedmilk'},
- ['image'] = './assets/whiterussian.png',
- },
- {
- ['name'] = 'blackrussian',
- ['label'] = 'Black Russian',
- ['ingredients'] = { 'vodka', 'coffeeliqueur' },
- ['image'] = './assets/blackrussian.png',
- },
- {
- ['name'] = 'tomcollins',
- ['label'] = 'Tom Collins',
- ['ingredients'] = { 'gin', 'sugar', 'lemonjuice', 'tonic', 'ice' },
- ['image'] = './assets/tomcollins.png',
- },
- {
- ['name'] = 'sidecar',
- ['label'] = 'Sidecar',
- ['ingredients'] = { 'cognac', 'triplesec', 'lemonjuice' },
- ['image'] = './assets/sidecar.png',
- },
- {
- ['name'] = 'rustynail',
- ['label'] = 'Rusty Nail',
- ['ingredients'] = { 'whisky', 'drambuie' },
- ['image'] = './assets/rustynail.png',
- },
- {
- ['name'] = 'negroni',
- ['label'] = 'Negroni',
- ['ingredients'] = { 'redvermouth', 'campari' },
- ['image'] = './assets/negroni.png',
- },
- {
- ['name'] = 'maitai',
- ['label'] = 'Maitai',
- ['ingredients'] = { 'rum', 'whiterum', 'triplesec', 'lime', 'amaretto' },
- ['image'] = './assets/maitai.png',
- },
- {
- ['name'] = 'sexonthebeach',
- ['label'] = 'Sex On The Beach',
- ['ingredients'] = { 'vodka', 'peachliqueur', 'orangejuice', 'blueberryjuice' },
- ['image'] = './assets/sexonthebeach.png',
- },
- {
- ['name'] = 'longisland',
- ['label'] = 'Long Island',
- ['ingredients'] = { 'vodka', 'tequila', 'whiterum', 'triplesec', 'gin', 'lemonjuice', 'sugar' },
- ['image'] = './assets/longisland.png',
- },
- {
- ['name'] = 'martini',
- ['label'] = 'Martini',
- ['ingredients'] = { 'gin', 'vermouth' },
- ['image'] = './assets/martini.png',
- },
- {
- ['name'] = 'cosmopolitan',
- ['label'] = 'Cosmopolitan',
- ['ingredients'] = { 'vodka', 'triplesec', 'lime', 'blueberryjuice' },
- ['image'] = './assets/cosmopolitan.png',
- },
- {
- ['name'] = 'daiquiri',
- ['label'] = 'Daiquiri',
- ['ingredients'] = { 'whiterum', 'lemonjuice', 'lime' },
- ['image'] = './assets/daiquiri.png',
- },
- {
- ['name'] = 'margarita',
- ['label'] = 'Margarita',
- ['ingredients'] = { 'tequila', 'triplesec', 'lime', 'lemonjuice' },
- ['image'] = './assets/margarita.png',
- },
- {
- ['name'] = 'mojito',
- ['label'] = 'Mojito',
- ['ingredients'] = { 'rum', 'sugar', 'mint', 'lime', 'tonic', 'ice' },
- ['image'] = './assets/mojito.png',
- },
- {
- ['name'] = 'gintonic',
- ['label'] = 'Gin Tonic',
- ['ingredients'] = { 'gin', 'tonic' },
- ['image'] = './assets/gintonic.png',
- },
- {
- ['name'] = 'caipirinha',
- ['label'] = 'Caipirinha',
- ['ingredients'] = { 'cachaza', 'lime', 'sugar', 'ice' },
- ['image'] = './assets/caipirinha.png',
- },
- {
- ['name'] = 'manhattan',
- ['label'] = 'Manhattan',
- ['ingredients'] = { 'whisky', 'redvermouth' },
- ['image'] = './assets/manhattan.png',
- },
- {
- ['name'] = 'pinacolada',
- ['label'] = 'Piña colada',
- ['ingredients'] = { 'pineapplejuice', 'coconutwater', 'rum' },
- ['image'] = './assets/pinacolada.png',
- },
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment