Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Pond Cafe
['bltsandwich'] = { label = 'BLT Sandwich', weight = 200, stack = false, close = true, client = { image = 'bltsandwich.png' }, description = 'Juicy tomatoes, smoked bacon and mixed salad served on malted bread' },
['blueberrycupcake'] = { label = 'Blueberry Cupcake', weight = 200, stack = false, close = true, client = { image = 'blueberrycupcake.png' }, description = 'Freshly made chocolate cupcake adorned with blueberry icing' },
['carrotcake'] = { label = 'Carrot Cake', weight = 200, stack = false, close = true, client = { image = 'carrotcake.png' }, description = 'Cake that contains carrots mixed into the batter' },
['cheesehamsandwich'] = { label = 'Cheese and Ham Sandwich', weight = 200, stack = false, close = true, client = { image = 'cheesehamsandwich.png' }, description = 'Cured ham and sliced mature cheddar cheese on malted bread' },
['chickensaladsandwich'] = { label = 'Chicken Salad Sandwich', weight = 200, stack = false, close = true, client = { image = 'chickensaladsandwich.png' }, description = 'Chicken breast with mayo and mixed salad on malted bread' },
['chocolatecupcake'] = { label = 'Chocolate Cupcake', weight = 200, stack = false, close = true, client = { image = 'chocolatecupcake.png' }, description = 'Freshly made chocolate cupcake adorned with chocolate icing' },
['cookedsalmon'] = { label = 'Cooked Salmon', weight = 100, stack = false, close = false, client = { image = 'cookedsalmon.png' }, description = 'No longer jumping upstream' },
['eggmayosandwich'] = { label = 'Egg Mayo Sandwich', weight = 200, stack = false, close = true, client = { image = 'eggmayosandwich.png' }, description = 'Free-range egg mayo and fresh cress on malted bread' },
['hamsaladsandwich'] = { label = 'Ham Salad Sandwich', weight = 200, stack = false, close = true, client = { image = 'hamsaladsandwich.png' }, description = 'Cured ham and mixed salad leaves on malted bread' },
['salmonsandwich'] = { label = 'Salmon Sandwich', weight = 200, stack = false, close = true, client = { image = 'salmonsandwich.png' }, description = 'Smoked salmon with a squeeze of lemon juice on malted bread' },
['strawberrycupcake'] = { label = 'Strawberry Cupcake', weight = 200, stack = false, close = true, client = { image = 'strawberrycupcake.png' }, description = 'Freshly made chocolate cupcake adorned with strawberry icing' },
['pondcafemenu'] = { label = 'Pond Cafe Menu', weight = 100, stack = false, close = true, client = { image = 'menu.png' }, description = 'Menu for the Pond Cafe' },
-- 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' },
['bread'] = { label = 'Bread', weight = 200, stack = true, close = true, client = { image = 'bread.png' }, description = 'The staple of humanity' },
['carrot'] = { label = 'Carrot', weight = 100, stack = true, close = true, client = { image = 'carrot.png' }, description = 'Whats up, Doc?' },
['cheddar'] = { label = 'Cheddar Slice', weight = 100, stack = true, close = true, client = { image = 'cheddar.png' }, description = 'Slice of Cheese' },
['chicken'] = { label = 'Chicken', weight = 500, stack = false, close = false, client = { image = 'chicken.png' }, description = 'A raw chicken' },
['chickenbreast'] = { label = 'Chicken Breast', weight = 100, stack = false, close = false, client = { image = 'chickenbreast.png' }, description = 'A cooked chicken breast' },
['cocoabean'] = { label = 'Cocoa Bean', weight = 100, stack = false, close = false, client = { image = 'cocoabean.png' }, description = 'Signature ingredient of chocolate' },
['egg'] = { label = 'Egg', weight = 100, stack = false, close = false, client = { image = 'egg.png' }, description = 'Free range of course!' },
['flour'] = { label = 'Flour', weight = 100, stack = false, close = false, client = { image = 'flour.png' }, description = 'Milled powder from collected grain' },
['ham'] = { label = 'Ham', weight = 100, stack = true, close = true, client = { image = 'ham.png' }, description = 'Freshly sliced ham' },
['lettuce'] = { label = 'Lettuce', weight = 100, stack = true, close = true, client = { image = 'lettuce.png' }, description = 'Perfect for burger topping... or Rabbits' },
['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.' },
-- Fishing
['salmon'] = { label = 'Salmon', weight = 1000, stack = false, close = true, client = { image = 'salmon.png' }, description = 'A freshwater river salmon!' },
-- Soft 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' },
Last updated