Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Beekeeping
['pollen'] = { label = 'Pollen', weight = 100, stack = true, close = true, client = { image = 'pollen.png' }, description = 'Powdery substance produced by flowers of seed plants' },
['pollen_apple'] = { label = 'Apple Pollen', weight = 100, stack = true, close = true, client = { image = 'pollen_apple.png' }, description = 'Pollen collected from apple fruit trees' },
['pollen_lemon'] = { label = 'Lemon Pollen', weight = 100, stack = true, close = true, client = { image = 'pollen_lemon.png' }, description = 'Pollen collected from lemon fruit trees' },
['pollen_lime'] = { label = 'Lime Pollen', weight = 100, stack = true, close = true, client = { image = 'pollen_lime.png' }, description = 'Pollen collected from lime fruit trees' },
['pollen_orange'] = { label = 'Orange Pollen', weight = 100, stack = true, close = true, client = { image = 'pollen_orange.png' }, description = 'Pollen collected from orange fruit trees' },
['pollen_peach'] = { label = 'Peach Pollen', weight = 100, stack = true, close = true, client = { image = 'pollen_peach.png' }, description = 'Pollen collected from peach fruit trees' },
['filledframe'] = { label = 'Filled Frame', weight = 100, stack = false, close = true, client = { image = 'filledframe.png' }, description = 'Filled with gooey honeycomb!' },
['frame'] = { label = 'Apiary Frame', weight = 100, stack = true, close = true, client = { image = 'frame.png' }, description = 'Structural frame that holds the honeycomb within the hive' },
['honeycomb'] = { label = 'Honeycomb', weight = 100, stack = false, close = true, client = { image = 'honeycomb.png' }, description = 'Hexagonal mass to protect bee offspring and store honey' },
['queenbee'] = { label = 'Queen Bee', weight = 100, stack = true, close = true, client = { image = 'queenbee.png' }, description = 'The mother of most bees in a hive' },
['scraper'] = { label = 'Scraper', weight = 100, stack = true, close = true, client = { image = 'scraper.png' }, description = 'Tool used the clear out honey and beeswax' },
['smoker'] = { label = 'Smoker', weight = 100, stack = true, close = true, client = { image = 'smoker.png' }, description = 'Device used to calm honey bees' },
['workerbee'] = { label = 'Worker Bee', weight = 100, stack = true, close = true, client = { image = 'workerbee.png' }, description = 'A female bee that carries pollen to the hive' },
['honey'] = { label = 'Honey', weight = 100, stack = true, close = true, client = { image = 'honey.png' }, description = 'Local sweet honey that can provide health benefits' },
['honey_apple'] = { label = 'Apple Honey', weight = 100, stack = true, close = true, client = { image = 'honey_apple.png' }, description = 'Local honey sweetened by apple fruit pollen' },
['honey_lemon'] = { label = 'Lemon Honey', weight = 100, stack = true, close = true, client = { image = 'honey_lemon.png' }, description = 'Local honey sweetened by lemon fruit pollen' },
['honey_lime'] = { label = 'Lime Honey', weight = 100, stack = true, close = true, client = { image = 'honey_lime.png' }, description = 'Local honey sweetened by lime fruit pollen' },
['honey_orange'] = { label = 'Orange Honey', weight = 100, stack = true, close = true, client = { image = 'honey_orange.png' }, description = 'Local honey sweetened by orange fruit pollen' },
['honey_peach'] = { label = 'Peach Honey', weight = 100, stack = true, close = true, client = { image = 'honey_peach.png' }, description = 'Local honey sweetened by peach fruit pollen' },
['mead'] = { label = 'Mead', weight = 100, stack = true, close = true, client = { image = 'mead.png' }, description = 'Fermented honey mixed with water, often called Honey Wine' },
['mead_apple'] = { label = 'Apple Mead', weight = 100, stack = true, close = true, client = { image = 'mead_apple.png' }, description = 'Alcoholic apple-sweetened mead' },
['mead_lemon'] = { label = 'Lemon Mead', weight = 100, stack = true, close = true, client = { image = 'mead_lemon.png' }, description = 'Alcoholic lemon-sweetened mead' },
['mead_lime'] = { label = 'Lime Mead', weight = 100, stack = true, close = true, client = { image = 'mead_lime.png' }, description = 'Alcoholic lime-sweetened mead' },
['mead_orange'] = { label = 'Orange Mead', weight = 100, stack = true, close = true, client = { image = 'mead_orange.png' }, description = 'Alcoholic orange-sweetened mead' },
['mead_peach'] = { label = 'Peach Mead', weight = 100, stack = true, close = true, client = { image = 'mead_peach.png' }, description = 'Alcoholic peach-sweetened mead' },
['apple'] = { label = 'Apple', weight = 100, stack = true, close = true, client = { image = 'apple.png' }, description = 'Do not eat the pip...' },
['lemon'] = { label = 'Lemon', weight = 100, stack = true, close = true, client = { image = 'lemon.png' }, description = 'Citrusy delight' },
['lime'] = { label = 'Lime', weight = 100, stack = true, close = true, client = { image = 'lime.png' }, description = 'Goes well with Tequila!' },
['orange'] = { label = 'Orange', weight = 100, stack = true, close = true, client = { image = 'orange.png' }, description = 'What came first - the fruit or the colour?' },
['peach'] = { label = 'Peach', weight = 100, stack = true, close = true, client = { image = 'peach.png' }, description = 'Peachy Keen!' },
['water'] = { label = 'Water', weight = 100, stack = true, close = true, client = { image = 'water.png' }, description = 'For all the thirsty out there' },
Last updated