Browse docs
Inventory Items
Use these configurations to prepare your inventory for the Sky Ambulance Job script.
Preview images for the resource-specific items are included in sky_ambulancejob/config/inventory — use them so the items match the UI.
| Group | Items | Notes |
|---|---|---|
| Default wound care and medication | gauze, pressure_bandage, quickclot, tourniquet, blood_infusion, saline_infusion, bp_medication, epinephrine, glucose, ibuprofen, oxycodon, morphine | Referenced by the default treatment flow and/or job shop |
| Default diagnostic and rescue tools | blood_pressure, pulse_measurement, pulse_oximeter, glucose_meter, rescue_shears, bag_valve_mask | Used by the treatment UI; tool icons are supplied |
| Mobility and public treatment | crutch, wheelchair, rescue_backpack | Crutch and wheelchair are enabled; public treatment is disabled by default |
| Framework-style healing items | bandage, firstaid, medkit | Registered by Config.HealingItems; most frameworks already define them |
| Example custom medications | vomex, kuehlpack, fentanyl, defibrillator | Only needed while keeping the examples in config/custom_medications.lua; provide your own icons |
The format blocks below contain every resource-specific item that has a supplied icon. Verify the framework-style and custom items separately when you keep those configuration entries.
['gauze'] = {
label = 'Gauze',
weight = 50,
stack = true,
close = true,
description = 'Used for dressing wounds'
},
['blood_infusion'] = {
label = 'Blood Infusion',
weight = 500,
stack = true,
close = true,
description = 'Infusion for restoring blood'
},
['crutch'] = {
label = 'Crutch',
weight = 2000,
stack = false,
close = true,
description = 'Crutch for assistance while walking'
},
['wheelchair'] = {
label = 'Wheelchair',
weight = 15000,
stack = false,
close = true,
description = 'Wheelchair'
},
['glucose'] = {
label = 'Glucose',
weight = 300,
stack = true,
close = true,
description = 'Glucose for quick energy recovery'
},
['rescue_backpack'] = {
label = 'Rescue Backpack',
weight = 8000,
stack = false,
close = true,
description = 'Medical backpack for emergency aid'
},
['saline_infusion'] = {
label = 'Saline Infusion',
weight = 500,
stack = true,
close = true,
description = 'Saline solution for stabilization'
},
['quickclot'] = {
label = 'QuickClot',
weight = 100,
stack = true,
close = true,
description = 'Stops severe bleeding'
},
['tourniquet'] = {
label = 'Tourniquet',
weight = 150,
stack = true,
close = true,
description = 'Stops bleeding fast but for a limited time'
},
['ibuprofen'] = {
label = 'Ibuprofen',
weight = 50,
stack = true,
close = true,
description = 'Painkiller and anti-inflammatory'
},
['oxycodon'] = {
label = 'Oxycodone',
weight = 50,
stack = true,
close = true,
description = 'Strong painkiller (opioid)'
},
['morphine'] = {
label = 'Morphine',
weight = 50,
stack = true,
close = true,
description = 'Powerful pain-relief medication'
},
['bp_medication'] = {
label = 'Blood Pressure Medication',
weight = 50,
stack = true,
close = true,
description = 'Medication to lower high blood pressure'
},
['pressure_bandage'] = { label = 'Pressure Bandage', weight = 150, stack = true, close = true, description = 'Pressure dressing for severe bleeding' },
['epinephrine'] = { label = 'Epinephrine', weight = 100, stack = true, close = true, description = 'Emergency medication for critical patients' },
['blood_pressure'] = { label = 'Blood Pressure Cuff', weight = 1000, stack = false, close = true, description = 'Tool for measuring blood pressure' },
['pulse_measurement'] = { label = 'Pulse Measurement', weight = 200, stack = false, close = true, description = 'Tool for checking a patient pulse' },
['pulse_oximeter'] = { label = 'Pulse Oximeter', weight = 250, stack = false, close = true, description = 'Tool for measuring pulse and blood oxygen' },
['glucose_meter'] = { label = 'Glucose Meter', weight = 300, stack = false, close = true, description = 'Tool for measuring blood glucose' },
['rescue_shears'] = { label = 'Rescue Shears', weight = 500, stack = false, close = true, description = 'Medical shears for exposing injuries' },
['bag_valve_mask'] = { label = 'Bag Valve Mask', weight = 1500, stack = false, close = true, description = 'Manual ventilation equipment' },
['gauze'] = {
['name'] = 'gauze',
['label'] = 'Gauze',
['weight'] = 50,
['type'] = 'item',
['image'] = 'gauze.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Used for dressing wounds'
},
['blood_infusion'] = {
['name'] = 'blood_infusion',
['label'] = 'Blood Infusion',
['weight'] = 500,
['type'] = 'item',
['image'] = 'blood_infusion.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Infusion for restoring blood'
},
['crutch'] = {
['name'] = 'crutch',
['label'] = 'Crutch',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'crutch.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Crutch for assistance while walking'
},
['wheelchair'] = {
['name'] = 'wheelchair',
['label'] = 'Wheelchair',
['weight'] = 15000,
['type'] = 'item',
['image'] = 'wheelchair.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Wheelchair'
},
['glucose'] = {
['name'] = 'glucose',
['label'] = 'Glucose',
['weight'] = 300,
['type'] = 'item',
['image'] = 'glucose.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Glucose for quick energy recovery'
},
['rescue_backpack'] = {
['name'] = 'rescue_backpack',
['label'] = 'Rescue Backpack',
['weight'] = 8000,
['type'] = 'item',
['image'] = 'rescue_backpack.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Medical backpack for emergency aid'
},
['saline_infusion'] = {
['name'] = 'saline_infusion',
['label'] = 'Saline Infusion',
['weight'] = 500,
['type'] = 'item',
['image'] = 'saline_infusion.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Saline solution for stabilization'
},
['quickclot'] = {
['name'] = 'quickclot',
['label'] = 'QuickClot',
['weight'] = 100,
['type'] = 'item',
['image'] = 'quickclot.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Stops severe bleeding'
},
['tourniquet'] = {
['name'] = 'tourniquet',
['label'] = 'Tourniquet',
['weight'] = 150,
['type'] = 'item',
['image'] = 'tourniquet.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Stops bleeding fast but for a limited time'
},
['ibuprofen'] = {
['name'] = 'ibuprofen',
['label'] = 'Ibuprofen',
['weight'] = 50,
['type'] = 'item',
['image'] = 'ibuprofen.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Painkiller and anti-inflammatory'
},
['oxycodon'] = {
['name'] = 'oxycodon',
['label'] = 'Oxycodone',
['weight'] = 50,
['type'] = 'item',
['image'] = 'oxycodon.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Strong painkiller (opioid)'
},
['morphine'] = {
['name'] = 'morphine',
['label'] = 'Morphine',
['weight'] = 50,
['type'] = 'item',
['image'] = 'morphine.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Powerful pain-relief medication'
},
['bp_medication'] = {
['name'] = 'bp_medication',
['label'] = 'Blood Pressure Medication',
['weight'] = 50,
['type'] = 'item',
['image'] = 'bp_medication.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Medication to lower high blood pressure'
},
['pressure_bandage'] = { ['name'] = 'pressure_bandage', ['label'] = 'Pressure Bandage', ['weight'] = 150, ['type'] = 'item', ['image'] = 'pressure_bandage.png', ['unique'] = false, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pressure dressing for severe bleeding' },
['epinephrine'] = { ['name'] = 'epinephrine', ['label'] = 'Epinephrine', ['weight'] = 100, ['type'] = 'item', ['image'] = 'epinephrine.png', ['unique'] = false, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Emergency medication for critical patients' },
['blood_pressure'] = { ['name'] = 'blood_pressure', ['label'] = 'Blood Pressure Cuff', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'blood_pressure.png', ['unique'] = true, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tool for measuring blood pressure' },
['pulse_measurement'] = { ['name'] = 'pulse_measurement', ['label'] = 'Pulse Measurement', ['weight'] = 200, ['type'] = 'item', ['image'] = 'pulse_measurement.png', ['unique'] = true, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tool for checking a patient pulse' },
['pulse_oximeter'] = { ['name'] = 'pulse_oximeter', ['label'] = 'Pulse Oximeter', ['weight'] = 250, ['type'] = 'item', ['image'] = 'pulse_oximeter.png', ['unique'] = true, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tool for measuring pulse and blood oxygen' },
['glucose_meter'] = { ['name'] = 'glucose_meter', ['label'] = 'Glucose Meter', ['weight'] = 300, ['type'] = 'item', ['image'] = 'glucose_meter.png', ['unique'] = true, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tool for measuring blood glucose' },
['rescue_shears'] = { ['name'] = 'rescue_shears', ['label'] = 'Rescue Shears', ['weight'] = 500, ['type'] = 'item', ['image'] = 'rescue_shears.png', ['unique'] = true, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Medical shears for exposing injuries' },
['bag_valve_mask'] = { ['name'] = 'bag_valve_mask', ['label'] = 'Bag Valve Mask', ['weight'] = 1500, ['type'] = 'item', ['image'] = 'bag_valve_mask.png', ['unique'] = true, ['rare'] = 'common', ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Manual ventilation equipment' },
-- Add to qb-core/shared/items.lua inside QBShared.Items
gauze = {name = 'gauze', label = 'Gauze', weight = 50, shouldClose = true, description = 'Used for dressing wounds', unique = false, type = 'item', image = 'gauze.png', useable = false},
blood_infusion = {name = 'blood_infusion', label = 'Blood Infusion', weight = 500, shouldClose = true, description = 'Infusion for restoring blood', unique = false, type = 'item', image = 'blood_infusion.png', useable = false},
crutch = {name = 'crutch', label = 'Crutch', weight = 2000, shouldClose = true, description = 'Crutch for assistance while walking', unique = true, type = 'item', image = 'crutch.png', useable = true},
wheelchair = {name = 'wheelchair', label = 'Wheelchair', weight = 15000, shouldClose = true, description = 'Wheelchair', unique = true, type = 'item', image = 'wheelchair.png', useable = true},
glucose = {name = 'glucose', label = 'Glucose', weight = 300, shouldClose = true, description = 'Glucose for quick energy recovery', unique = false, type = 'item', image = 'glucose.png', useable = false},
rescue_backpack = {name = 'rescue_backpack', label = 'Rescue Backpack', weight = 8000, shouldClose = true, description = 'Medical backpack for emergency aid', unique = true, type = 'item', image = 'rescue_backpack.png', useable = true},
saline_infusion = {name = 'saline_infusion', label = 'Saline Infusion', weight = 500, shouldClose = true, description = 'Saline solution for stabilization', unique = false, type = 'item', image = 'saline_infusion.png', useable = false},
quickclot = {name = 'quickclot', label = 'QuickClot', weight = 100, shouldClose = true, description = 'Stops severe bleeding', unique = false, type = 'item', image = 'quickclot.png', useable = false},
tourniquet = {name = 'tourniquet', label = 'Tourniquet', weight = 150, shouldClose = true, description = 'Stops bleeding fast but for a limited time', unique = false, type = 'item', image = 'tourniquet.png', useable = false},
ibuprofen = {name = 'ibuprofen', label = 'Ibuprofen', weight = 50, shouldClose = true, description = 'Painkiller and anti-inflammatory', unique = false, type = 'item', image = 'ibuprofen.png', useable = true},
oxycodon = {name = 'oxycodon', label = 'Oxycodone', weight = 50, shouldClose = true, description = 'Strong painkiller (opioid)', unique = false, type = 'item', image = 'oxycodon.png', useable = false},
morphine = {name = 'morphine', label = 'Morphine', weight = 50, shouldClose = true, description = 'Powerful pain-relief medication', unique = false, type = 'item', image = 'morphine.png', useable = false},
bp_medication = {name = 'bp_medication', label = 'Blood Pressure Medication', weight = 50, shouldClose = true, description = 'Medication to lower high blood pressure', unique = false, type = 'item', image = 'bp_medication.png', useable = true},
pressure_bandage = {name = 'pressure_bandage', label = 'Pressure Bandage', weight = 150, shouldClose = true, description = 'Pressure dressing for severe bleeding', unique = false, type = 'item', image = 'pressure_bandage.png', useable = false},
epinephrine = {name = 'epinephrine', label = 'Epinephrine', weight = 100, shouldClose = true, description = 'Emergency medication for critical patients', unique = false, type = 'item', image = 'epinephrine.png', useable = false},
blood_pressure = {name = 'blood_pressure', label = 'Blood Pressure Cuff', weight = 1000, shouldClose = true, description = 'Tool for measuring blood pressure', unique = true, type = 'item', image = 'blood_pressure.png', useable = false},
pulse_measurement = {name = 'pulse_measurement', label = 'Pulse Measurement', weight = 200, shouldClose = true, description = 'Tool for checking a patient pulse', unique = true, type = 'item', image = 'pulse_measurement.png', useable = false},
pulse_oximeter = {name = 'pulse_oximeter', label = 'Pulse Oximeter', weight = 250, shouldClose = true, description = 'Tool for measuring pulse and blood oxygen', unique = true, type = 'item', image = 'pulse_oximeter.png', useable = false},
glucose_meter = {name = 'glucose_meter', label = 'Glucose Meter', weight = 300, shouldClose = true, description = 'Tool for measuring blood glucose', unique = true, type = 'item', image = 'glucose_meter.png', useable = false},
rescue_shears = {name = 'rescue_shears', label = 'Rescue Shears', weight = 500, shouldClose = true, description = 'Medical shears for exposing injuries', unique = true, type = 'item', image = 'rescue_shears.png', useable = false},
bag_valve_mask = {name = 'bag_valve_mask', label = 'Bag Valve Mask', weight = 1500, shouldClose = true, description = 'Manual ventilation equipment', unique = true, type = 'item', image = 'bag_valve_mask.png', useable = false},
gauze = {
label = 'Gauze',
weight = 50,
type = 'item',
image = 'gauze.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Used for dressing wounds'
},
blood_infusion = {
label = 'Blood Infusion',
weight = 500,
type = 'item',
image = 'blood_infusion.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Infusion for restoring blood'
},
crutch = {
label = 'Crutch',
weight = 2000,
type = 'item',
image = 'crutch.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Crutch for assistance while walking'
},
wheelchair = {
label = 'Wheelchair',
weight = 15000,
type = 'item',
image = 'wheelchair.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Wheelchair'
},
glucose = {
label = 'Glucose',
weight = 300,
type = 'item',
image = 'glucose.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Glucose for quick energy recovery'
},
rescue_backpack = {
label = 'Rescue Backpack',
weight = 8000,
type = 'item',
image = 'rescue_backpack.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Medical backpack for emergency aid'
},
saline_infusion = {
label = 'Saline Infusion',
weight = 500,
type = 'item',
image = 'saline_infusion.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Saline solution for stabilization'
},
quickclot = {
label = 'QuickClot',
weight = 100,
type = 'item',
image = 'quickclot.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Stops severe bleeding'
},
tourniquet = {
label = 'Tourniquet',
weight = 150,
type = 'item',
image = 'tourniquet.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Stops bleeding fast but for a limited time'
},
ibuprofen = {
label = 'Ibuprofen',
weight = 50,
type = 'item',
image = 'ibuprofen.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Painkiller and anti-inflammatory'
},
oxycodon = {
label = 'Oxycodone',
weight = 50,
type = 'item',
image = 'oxycodon.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Strong painkiller (opioid)'
},
morphine = {
label = 'Morphine',
weight = 50,
type = 'item',
image = 'morphine.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Powerful pain-relief medication'
},
bp_medication = {
label = 'Blood Pressure Medication',
weight = 50,
type = 'item',
image = 'bp_medication.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Medication to lower high blood pressure'
},
pressure_bandage = { label = 'Pressure Bandage', weight = 150, type = 'item', image = 'pressure_bandage.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Pressure dressing for severe bleeding' },
epinephrine = { label = 'Epinephrine', weight = 100, type = 'item', image = 'epinephrine.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Emergency medication for critical patients' },
blood_pressure = { label = 'Blood Pressure Cuff', weight = 1000, type = 'item', image = 'blood_pressure.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Tool for measuring blood pressure' },
pulse_measurement = { label = 'Pulse Measurement', weight = 200, type = 'item', image = 'pulse_measurement.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Tool for checking a patient pulse' },
pulse_oximeter = { label = 'Pulse Oximeter', weight = 250, type = 'item', image = 'pulse_oximeter.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Tool for measuring pulse and blood oxygen' },
glucose_meter = { label = 'Glucose Meter', weight = 300, type = 'item', image = 'glucose_meter.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Tool for measuring blood glucose' },
rescue_shears = { label = 'Rescue Shears', weight = 500, type = 'item', image = 'rescue_shears.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Medical shears for exposing injuries' },
bag_valve_mask = { label = 'Bag Valve Mask', weight = 1500, type = 'item', image = 'bag_valve_mask.png', hasMetadata = false, useable = false, shouldClose = true, description = 'Manual ventilation equipment' },
['gauze'] = {
label = 'Gauze',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'gauze.png',
description = 'Used for dressing wounds'
},
['blood_infusion'] = {
label = 'Blood Infusion',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'blood_infusion.png',
description = 'Infusion for restoring blood'
},
['crutch'] = {
label = 'Crutch',
weight = 2,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'crutch.png',
description = 'Crutch for assistance while walking'
},
['wheelchair'] = {
label = 'Wheelchair',
weight = 15,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'wheelchair.png',
description = 'Wheelchair'
},
['glucose'] = {
label = 'Glucose',
weight = 0.3,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'glucose.png',
description = 'Glucose for quick energy recovery'
},
['rescue_backpack'] = {
label = 'Rescue Backpack',
weight = 8,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'rescue_backpack.png',
description = 'Medical backpack for emergency aid'
},
['saline_infusion'] = {
label = 'Saline Infusion',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'saline_infusion.png',
description = 'Saline solution for stabilization'
},
['quickclot'] = {
label = 'QuickClot',
weight = 0.1,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'quickclot.png',
description = 'Stops severe bleeding'
},
['tourniquet'] = {
label = 'Tourniquet',
weight = 0.15,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'tourniquet.png',
description = 'Stops bleeding fast but for a limited time'
},
['ibuprofen'] = {
label = 'Ibuprofen',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'ibuprofen.png',
description = 'Painkiller and anti-inflammatory'
},
['oxycodon'] = {
label = 'Oxycodone',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'oxycodon.png',
description = 'Strong painkiller (opioid)'
},
['morphine'] = {
label = 'Morphine',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'morphine.png',
description = 'Powerful pain-relief medication'
},
['bp_medication'] = {
label = 'Blood Pressure Medication',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'bp_medication.png',
description = 'Medication to lower high blood pressure'
},
['pressure_bandage'] = { label = 'Pressure Bandage', weight = 0.15, stackable = true, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'pressure_bandage.png', description = 'Pressure dressing for severe bleeding' },
['epinephrine'] = { label = 'Epinephrine', weight = 0.1, stackable = true, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'epinephrine.png', description = 'Emergency medication for critical patients' },
['blood_pressure'] = { label = 'Blood Pressure Cuff', weight = 1.0, stackable = false, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'blood_pressure.png', description = 'Tool for measuring blood pressure' },
['pulse_measurement'] = { label = 'Pulse Measurement', weight = 0.2, stackable = false, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'pulse_measurement.png', description = 'Tool for checking a patient pulse' },
['pulse_oximeter'] = { label = 'Pulse Oximeter', weight = 0.25, stackable = false, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'pulse_oximeter.png', description = 'Tool for measuring pulse and blood oxygen' },
['glucose_meter'] = { label = 'Glucose Meter', weight = 0.3, stackable = false, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'glucose_meter.png', description = 'Tool for measuring blood glucose' },
['rescue_shears'] = { label = 'Rescue Shears', weight = 0.5, stackable = false, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'rescue_shears.png', description = 'Medical shears for exposing injuries' },
['bag_valve_mask'] = { label = 'Bag Valve Mask', weight = 1.5, stackable = false, close = true, maxStack = 100, type = 'item', rarity = 'common', image = 'bag_valve_mask.png', description = 'Manual ventilation equipment' },
-- Add to codem-inventory/config/itemlist.lua
["gauze"] = {
["name"] = "gauze",
["label"] = "Gauze",
["weight"] = 50,
["type"] = "item",
["image"] = "gauze.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Used for dressing wounds"
},
["blood_infusion"] = {
["name"] = "blood_infusion",
["label"] = "Blood Infusion",
["weight"] = 500,
["type"] = "item",
["image"] = "blood_infusion.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Infusion for restoring blood"
},
["crutch"] = {
["name"] = "crutch",
["label"] = "Crutch",
["weight"] = 2000,
["type"] = "item",
["image"] = "crutch.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Crutch for assistance while walking"
},
["wheelchair"] = {
["name"] = "wheelchair",
["label"] = "Wheelchair",
["weight"] = 15000,
["type"] = "item",
["image"] = "wheelchair.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Wheelchair"
},
["glucose"] = {
["name"] = "glucose",
["label"] = "Glucose",
["weight"] = 300,
["type"] = "item",
["image"] = "glucose.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Glucose for quick energy recovery"
},
["rescue_backpack"] = {
["name"] = "rescue_backpack",
["label"] = "Rescue Backpack",
["weight"] = 8000,
["type"] = "item",
["image"] = "rescue_backpack.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Medical backpack for emergency aid"
},
["saline_infusion"] = {
["name"] = "saline_infusion",
["label"] = "Saline Infusion",
["weight"] = 500,
["type"] = "item",
["image"] = "saline_infusion.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Saline solution for stabilization"
},
["quickclot"] = {
["name"] = "quickclot",
["label"] = "QuickClot",
["weight"] = 100,
["type"] = "item",
["image"] = "quickclot.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Stops severe bleeding"
},
["tourniquet"] = {
["name"] = "tourniquet",
["label"] = "Tourniquet",
["weight"] = 150,
["type"] = "item",
["image"] = "tourniquet.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Stops bleeding fast but for a limited time"
},
["ibuprofen"] = {
["name"] = "ibuprofen",
["label"] = "Ibuprofen",
["weight"] = 50,
["type"] = "item",
["image"] = "ibuprofen.png",
["unique"] = false,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Painkiller and anti-inflammatory"
},
["oxycodon"] = {
["name"] = "oxycodon",
["label"] = "Oxycodone",
["weight"] = 50,
["type"] = "item",
["image"] = "oxycodon.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Strong painkiller (opioid)"
},
["morphine"] = {
["name"] = "morphine",
["label"] = "Morphine",
["weight"] = 50,
["type"] = "item",
["image"] = "morphine.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Powerful pain-relief medication"
},
["bp_medication"] = {
["name"] = "bp_medication",
["label"] = "Blood Pressure Medication",
["weight"] = 50,
["type"] = "item",
["image"] = "bp_medication.png",
["unique"] = false,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Medication to lower high blood pressure"
},
["pressure_bandage"] = { ["name"] = "pressure_bandage", ["label"] = "Pressure Bandage", ["weight"] = 150, ["type"] = "item", ["image"] = "pressure_bandage.png", ["unique"] = false, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Pressure dressing for severe bleeding" },
["epinephrine"] = { ["name"] = "epinephrine", ["label"] = "Epinephrine", ["weight"] = 100, ["type"] = "item", ["image"] = "epinephrine.png", ["unique"] = false, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Emergency medication for critical patients" },
["blood_pressure"] = { ["name"] = "blood_pressure", ["label"] = "Blood Pressure Cuff", ["weight"] = 1000, ["type"] = "item", ["image"] = "blood_pressure.png", ["unique"] = true, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Tool for measuring blood pressure" },
["pulse_measurement"] = { ["name"] = "pulse_measurement", ["label"] = "Pulse Measurement", ["weight"] = 200, ["type"] = "item", ["image"] = "pulse_measurement.png", ["unique"] = true, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Tool for checking a patient pulse" },
["pulse_oximeter"] = { ["name"] = "pulse_oximeter", ["label"] = "Pulse Oximeter", ["weight"] = 250, ["type"] = "item", ["image"] = "pulse_oximeter.png", ["unique"] = true, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Tool for measuring pulse and blood oxygen" },
["glucose_meter"] = { ["name"] = "glucose_meter", ["label"] = "Glucose Meter", ["weight"] = 300, ["type"] = "item", ["image"] = "glucose_meter.png", ["unique"] = true, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Tool for measuring blood glucose" },
["rescue_shears"] = { ["name"] = "rescue_shears", ["label"] = "Rescue Shears", ["weight"] = 500, ["type"] = "item", ["image"] = "rescue_shears.png", ["unique"] = true, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Medical shears for exposing injuries" },
["bag_valve_mask"] = { ["name"] = "bag_valve_mask", ["label"] = "Bag Valve Mask", ["weight"] = 1500, ["type"] = "item", ["image"] = "bag_valve_mask.png", ["unique"] = true, ["usable"] = false, ["shouldClose"] = true, ["description"] = "Manual ventilation equipment" },
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('gauze', 'Gauze', 1, 0, 1),
('blood_infusion', 'Blood Infusion', 1, 0, 1),
('crutch', 'Crutch', 1, 0, 1),
('wheelchair', 'Wheelchair', 1, 0, 1),
('glucose', 'Glucose', 1, 0, 1),
('rescue_backpack', 'Rescue Backpack', 1, 0, 1),
('saline_infusion', 'Saline Infusion', 1, 0, 1),
('quickclot', 'QuickClot', 1, 0, 1),
('tourniquet', 'Tourniquet', 1, 0, 1),
('ibuprofen', 'Ibuprofen', 1, 0, 1),
('oxycodon', 'Oxycodone', 1, 0, 1),
('morphine', 'Morphine', 1, 0, 1),
('bp_medication', 'Blood Pressure Medication', 1, 0, 1),
('pressure_bandage', 'Pressure Bandage', 1, 0, 1),
('epinephrine', 'Epinephrine', 1, 0, 1),
('blood_pressure', 'Blood Pressure Cuff', 1, 0, 1),
('pulse_measurement', 'Pulse Measurement', 1, 0, 1),
('pulse_oximeter', 'Pulse Oximeter', 1, 0, 1),
('glucose_meter', 'Glucose Meter', 1, 0, 1),
('rescue_shears', 'Rescue Shears', 1, 0, 1),
('bag_valve_mask', 'Bag Valve Mask', 1, 0, 1);
The
qb-core shared items also cover qb-inventory, ps-inventory, and jpr-inventory — they all read QBShared.Items. For inventories not listed here (core_inventory, origen_inventory, ak47_inventory, one_inventory), transfer the same name, label, weight, and image values into that inventory's item format.Support
Need help? Our support team is always ready to assist
Join Discord