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