qbcore export
-- QBCore crafting recipes
-- Register via your crafting resource (qb-crafting / qb-craft).
Config = Config or {}
Config.Recipes = {
["coke_baggie_01"] = {
output = { item = "coke_baggie", label = "Coke Baggie", qty = 2, category = "drug" },
ingredients = {
{ item = "muriatic_acid", label = "Muriatic Acid", qty = 4 },
{ item = "red_phosphorus", label = "Red Phosphorus", qty = 5 },
{ item = "glass_pipe", label = "Glass Pipe", qty = 1 },
},
craftTime = 85, -- seconds
requiredTool = "Workbench",
skill = { type = "crafting", level = 10 },
},
["advanced_lockpick_02"] = {
output = { item = "advanced_lockpick", label = "Advanced Lockpick", qty = 2, category = "tool" },
ingredients = {
{ item = "screw", label = "Screw", qty = 3 },
{ item = "spring", label = "Spring", qty = 1 },
{ item = "plastic_shell", label = "Plastic Shell", qty = 6 },
},
craftTime = 75, -- seconds
requiredTool = "Chem Station",
skill = { type = "crafting", level = 3 },
},
["grenade_03"] = {
output = { item = "grenade", label = "Grenade", qty = 3, category = "weapon" },
ingredients = {
{ item = "copper_wire", label = "Copper Wire", qty = 5 },
{ item = "screw", label = "Screw", qty = 2 },
{ item = "plastic_shell", label = "Plastic Shell", qty = 1 },
{ item = "cloth_scrap", label = "Cloth Scrap", qty = 6 },
{ item = "hinge", label = "Hinge", qty = 2 },
},
craftTime = 75, -- seconds
requiredTool = "Gunsmith Bench",
skill = { type = "crafting", level = 7 },
},
["nightstick_04"] = {
output = { item = "nightstick", label = "Nightstick", qty = 2, category = "weapon" },
ingredients = {
{ item = "carbon_weave", label = "Carbon Weave", qty = 3 },
{ item = "copper_wire", label = "Copper Wire", qty = 1 },
{ item = "solder", label = "Solder", qty = 4 },
},
craftTime = 66, -- seconds
requiredTool = "Jeweler's Bench",
skill = { type = "crafting", level = 6 },
},
["pipe_bomb_05"] = {
output = { item = "pipe_bomb", label = "Pipe Bomb", qty = 1, category = "weapon" },
ingredients = {
{ item = "polymer_sheet", label = "Polymer Sheet", qty = 1 },
{ item = "screw", label = "Screw", qty = 4 },
{ item = "steel_plate", label = "Steel Plate", qty = 5 },
{ item = "copper_wire", label = "Copper Wire", qty = 3 },
{ item = "spring", label = "Spring", qty = 5 },
},
craftTime = 61, -- seconds
requiredTool = "Workbench",
skill = { type = "crafting", level = 9 },
},
["blue_crystal_06"] = {
output = { item = "blue_crystal", label = "Blue Crystal", qty = 2, category = "drug" },
ingredients = {
{ item = "acetone", label = "Acetone", qty = 5 },
{ item = "lye", label = "Lye", qty = 4 },
{ item = "sodium_hydroxide", label = "Sodium Hydroxide", qty = 3 },
{ item = "coca_leaf", label = "Coca Leaf", qty = 3 },
{ item = "cannabis_trim", label = "Cannabis Trim", qty = 2 },
},
craftTime = 112, -- seconds
requiredTool = "Chem Station",
skill = { type = "crafting", level = 10 },
},
["weed_baggie_07"] = {
output = { item = "weed_baggie", label = "Weed Baggie", qty = 1, category = "drug" },
ingredients = {
{ item = "sudafed_pack", label = "Sudafed Pack", qty = 1 },
{ item = "sodium_hydroxide", label = "Sodium Hydroxide", qty = 1 },
{ item = "coca_leaf", label = "Coca Leaf", qty = 6 },
},
craftTime = 97, -- seconds
requiredTool = "Gunsmith Bench",
skill = { type = "crafting", level = 8 },
},
["raw_opium_08"] = {
output = { item = "raw_opium", label = "Raw Opium", qty = 3, category = "drug" },
ingredients = {
{ item = "isopropanol", label = "Isopropanol", qty = 3 },
{ item = "acetone", label = "Acetone", qty = 1 },
},
craftTime = 91, -- seconds
requiredTool = "Jeweler's Bench",
skill = { type = "crafting", level = 3 },
},
}