Items - QB
Add these into your items list e.g. qb-core/shared/items.lua
-- Grave Robbing
bodybag = { name = 'bodybag', label = 'Body Bag', weight = 2000, type = 'item', image = 'bodybag.png', unique = false, useable = false, shouldClose = false, description = 'Empty bag ready for the deceased' },
diamond = { name = 'diamond', label = 'Diamond', weight = 200, type = 'item', image = 'diamond.png', unique = false, useable = false, shouldClose = false, description = 'A flawless diamond!' },
emerald = { name = 'emerald', label = 'Emerald', weight = 200, type = 'item', image = 'emerald.png', unique = false, useable = false, shouldClose = false, description = 'A flawless diamond!' },
filled_bodybag = { name = 'filled_bodybag', label = 'Filled Body Bag', weight = 20000, type = 'item', image = 'bodybag_filled.png', unique = true, useable = false, shouldClose = false, description = 'A cadaver acquired via body-snatching' },
shovel = { name = 'shovel', label = 'Shovel', weight = 5000, type = 'item', image = 'shovel.png', unique = false, useable = false, shouldClose = false, description = 'A groundbreaking invention' },
skull = { name = 'skull', label = 'Skull', weight = 1000, type = 'item', image = 'skull.png', unique = true, useable = false, shouldClose = false, description = 'Try not to lose your head... oh' },
treasuremap = { name = 'treasuremap', label = 'Treasure Map', weight = 200, type = 'item', image = 'treasuremap.png', unique = false, useable = false, shouldClose = false, description = 'Perhaps I can find someone to decipher this' },
-- Misc.
diamond_ring = { name = 'diamond_ring', label = 'Diamond Ring', weight = 100, type = 'item', image = 'diamond_ring.png', unique = false, useable = false, shouldClose = true, description = 'A diamond ring seems like the jackpot to me!' },
goldbar = { name = 'goldbar', label = 'Gold Bar', weight = 3000, type = 'item', image = 'goldbar.png', unique = false, useable = false, shouldClose = true, description = 'Looks pretty expensive to me' },
goldchain = { name = 'goldchain', label = 'Golden Chain', weight = 700, type = 'item', image = 'goldchain.png', unique = false, useable = false, shouldClose = true, description = 'A golden chain seems like the jackpot to me!' },
plastic = { name = 'plastic', label = 'Plastic', weight = 200, type = 'item', image = 'plastic.png', unique = false, useable = false, shouldClose = false, description = 'RECYCLE! - Greta Thunberg 2019' },
rolex = { name = 'rolex', label = 'Golden Watch', weight = 500, type = 'item', image = 'rolex.png', unique = false, useable = false, shouldClose = true, description = 'A golden watch seems like the jackpot to me!' },
tenkgoldchain = { name = 'tenkgoldchain', label = '10k Gold Chain', weight = 1000, type = 'item', image = '10kgoldchain.png', unique = false, useable = false, shouldClose = true, description = '10 carat golden chain' },
whiskey = { name = 'whiskey', label = 'Whiskey', weight = 1000, type = 'item', image = 'whiskey.png', unique = false, useable = true, shouldClose = true, description = 'For all the thirsty out there' },
Last updated