Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Up-n-Atom
['atomfries'] = { label = 'Atom Fries', weight = 200, stack = true, close = true, client = { image = 'atomfries.png' }, description = 'Up-n-Atoms signature french fries' },
['atompoppers'] = { label = 'Atom Poppers', weight = 200, stack = true, close = true, client = { image = 'atompoppers.png' }, description = 'Up-n-Atoms signature jalapeno poppers' },
['baconatomic'] = { label = 'Bacon Atomic', weight = 500, stack = true, close = true, client = { image = 'baconatomic.png' }, description = 'Up-n-Atoms signature bacon decuple cheeseburger' },
['chickenatomic'] = { label = 'Chicken Atomic', weight = 500, stack = true, close = true, client = { image = 'chickenatomic.png' }, description = 'Up-n-Atoms signature chicken burger' },
['doubleatomic'] = { label = 'Double Atomic', weight = 500, stack = true, close = true, client = { image = 'doubleatomic.png' }, description = 'Up-n-Atoms signature double cheeseburger' },
['ecolacup'] = { label = 'eCola Cup', weight = 200, stack = true, close = true, client = { image = 'ecolacup.png' }, description = 'Up-n-Atoms large eCola drink' },
['icyasteroid'] = { label = 'Icy Asteroid', weight = 200, stack = true, close = true, client = { image = 'icyasteroid.png' }, description = 'Up-n-Atoms signature ice cream dessert' },
['rocketfuel'] = { label = 'Rocket Fuel', weight = 200, stack = true, close = true, client = { image = 'rocketfuel.png' }, description = 'Up-n-Atoms signature energy drink' },
['slushy'] = { label = 'Slushy', weight = 500, stack = true, close = true, client = { image = 'slushy.png' }, description = 'Fruity slush drink' },
['spacenuggets'] = { label = 'Space Nuggets', weight = 200, stack = true, close = true, client = { image = 'spacenuggets.png' }, description = 'Up-n-Atoms signature chicken nuggets' },
['tripleatomic'] = { label = 'Triple Atomic', weight = 500, stack = true, close = true, client = { image = 'tripleatomic.png' }, description = 'Up-n-Atoms signature triple cheeseburger' },
['upnatommenu'] = { label = 'Up-n-Atom Menu', weight = 100, stack = false, close = true, client = { image = 'menu.png' }, description = 'Menu for the Up-n-Atom chain' },
-- Farming
['beef'] = { label = 'Beef', weight = 500, stack = false, close = false, client = { image = 'beef.png' }, description = 'A slab of raw beef' },
['bread'] = { label = 'Bread', weight = 200, stack = true, close = true, client = { image = 'bread.png' }, description = 'The staple of humanity' },
['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' },
['lettuce'] = { label = 'Lettuce', weight = 100, stack = true, close = true, client = { image = 'lettuce.png' }, description = 'Perfect for burger topping... or Rabbits' },
['milk'] = { label = 'Milk', weight = 300, stack = true, close = true, client = { image = 'milk.png' }, description = 'Glass bottle of milk!' },
['pepper'] = { label = 'Pepper', weight = 100, stack = true, close = true, client = { image = 'pepper.png' }, description = 'Surprisingly good raw!' },
['potato'] = { label = 'Potato', weight = 100, stack = true, close = true, client = { image = 'potato.png' }, description = 'An Irish staple' },
['strawberry'] = { label = 'Strawberry', weight = 100, stack = true, close = true, client = { image = 'strawberry.png' }, description = 'Technically not a berry' },
['tomato'] = { label = 'Tomato', weight = 100, stack = true, close = true, client = { image = 'tomato.png' }, description = 'A fruit. Not a vegetable.' },
-- Soft Drinks
['coffee'] = { label = 'Coffee', weight = 200, stack = true, close = true, client = { image = 'coffee.png' }, description = 'Pump 4 Caffeine' },
['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!' },
Last updated