Items - OX

Add these into your items list e.g. ox_inventory/data/items.lua

-- Drugs
['acetone']                 = { label = 'Acetone',                      weight = 100, stack = true, close = true, client = { image = 'acetone.png' },               description = 'Can irritate eyes and breathing' },
['baggy']                   = { label = 'Baggy',                        weight = 100, stack = true, close = true, client = { image = 'baggy.png' },                 description = 'A small drug baggy' },
['cocaleaf']                = { label = 'Coca Leaves',                  weight = 100, stack = true, close = true, client = { image = 'cocaleaf.png' },              description = 'Leaves commonly used in the production of cocaine' },
['cocaine']                 = { label = 'Cocaine',                      weight = 100, stack = true, close = true, client = { image = 'cocaine.png' },               description = 'Bag of processed cocaine powder' },
['cokebrick']               = { label = 'Coke Brick',                   weight = 350, stack = false, close = true, client = { image = 'cokebrick.png' },            description = 'Small packed brick of cocaine powder' },
['cokepowder']              = { label = 'Coke Powder',                  weight = 100, stack = true, close = true, client = { image = 'cokepowder.png' },            description = 'Drug powder produced by crushing coca leaves' },
['ephedrine']               = { label = 'Ephedrine',                    weight = 100, stack = true, close = true, client = { image = 'ephedrine.png' },             description = 'Medicine used to treat the symptoms of low blood pressure' },
['ergot']                   = { label = 'Ergot',                        weight = 100, stack = true, close = true, client = { image = 'ergot.png' },                 description = 'Fungus found in contaminated grain' },
['hydrochloricacid']        = { label = 'Hydrochloric',                 weight = 100, stack = true, close = true, client = { image = 'hydrochloricacid.png' },      description = 'Digestive gastric acid from animals, including humans' },
['lysergicacid']            = { label = 'Lysergic Acid',                weight = 100, stack = true, close = true, client = { image = 'lysergicacid.png' },          description = 'Ergot alkaloids' },
['mdma']                    = { label = 'MDMA',                         weight = 100, stack = true, close = true, client = { image = 'mdma.png' },                  description = 'Acidic synthesised drug' },
['meth']                    = { label = 'Meth',                         weight = 100, stack = true, close = true, client = { image = 'meth.png' },                  description = 'Drugs broken badly' },
['methpowder']              = { label = 'Meth Powder',                  weight = 100, stack = true, close = true, client = { image = 'methpowder.png' },            description = 'Meth removed from the tray' },
['methtray']                = { label = 'Meth Tray',                    weight = 200, stack = true, close = true, client = { image = 'methtray.png' },              description = 'A large tray of crystalising meth' },
['moonshine']               = { label = 'Moonshine',                    weight = 1000, stack = true, close = true, client = { image = 'moonshine.png' },            description = 'Illegally produced high-proof liquor' },
['weedbrick']               = { label = 'Weed Brick',                   weight = 1000, stack = true, close = true, client = { image = 'weedbrick.png' },            description = 'Brick of weed for sale to wealthy establishments' },

-- Farming
['grain']                   = { label = 'Grain',                        weight = 100, stack = true, close = true, client = { image = 'grain.png' },                 description = 'Some small, hard, dry seeds' },
['sugar']                   = { label = 'Sugar',                        weight = 100, stack = true, close = true, client = { image = 'sugar.png' },                 description = 'Something sweet!' },
['trowel']                  = { label = 'Trowel',                       weight = 500, stack = true, close = true, client = { image = 'trowel.png' },                description = 'Versatile farming tool' },

-- Duplicates
['water']                   = { label = 'Water',                        weight = 100, stack = true, close = true, client = { image = 'water.png' },                 description = 'The source of all life!' },

Last updated