Browse docs
Inventory Items
Preview images for most resource-specific items are included in sky_ambulancejob/config/inventory — use them so the items match the UI. The portable stretcher item is included in the definitions below, but its inventory icon is not bundled.
| 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 |
| Medical wearables | cast_bandage, splint, head_bandage, neck_brace, torso_bandage, oxygen_mask, cast_saw | The first six are consumed when applied; cast_saw is a reusable cast-removal tool |
| Mobility, portable stretcher, and public treatment | crutch, wheelchair, stretcher, rescue_backpack | Crutch, wheelchair, and the portable stretcher 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 default item, including the new stretcher. Verify the framework-style and custom items separately when you keep those configuration entries. Supply your own stretcher.png when the portable stretcher workflow is enabled.
gipsverband, schiene, kopfverband, halskrause, torsobandage, sauerstoffmaske, and
gipssaege. The values in your active Config.MedicalWearables block must match the inventory,
image filenames, and any shop or storage entries. See Medical Wearables
for the complete migration mapping.The weights and stacking flags below are suggested starting values; adjust them to your server's
economy. Keep wearable items non-usable in the inventory itself because the treatment interface
validates and consumes them. The cast_saw only needs to be present and remains reusable.
['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'
},
['stretcher'] = {
label = 'Stretcher',
weight = 15000,
stack = false,
close = true,
description = 'Portable stretcher for EMS transport'
},
['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'
},
['cast_bandage'] = {
label = 'Cast Bandage',
weight = 500,
stack = true,
close = true,
description = 'Bandaging material consumed when applying a cast'
},
['splint'] = {
label = 'Splint',
weight = 500,
stack = true,
close = true,
description = 'Splint material consumed when applying an arm sling'
},
['head_bandage'] = {
label = 'Head Bandage',
weight = 250,
stack = true,
close = true,
description = 'Bandaging material for a visible head bandage'
},
['neck_brace'] = {
label = 'Neck Brace',
weight = 750,
stack = true,
close = true,
description = 'Cervical collar for neck stabilization'
},
['torso_bandage'] = {
label = 'Torso Bandage',
weight = 500,
stack = true,
close = true,
description = 'Bandaging material for a visible torso bandage'
},
['oxygen_mask'] = {
label = 'Oxygen Mask',
weight = 500,
stack = true,
close = true,
description = 'Oxygen mask consumed when applying the wearable'
},
['cast_saw'] = {
label = 'Cast Saw',
weight = 1500,
stack = false,
close = true,
description = 'Reusable tool for removing casts'
},
['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'
},
['stretcher'] = {
['name'] = 'stretcher',
['label'] = 'Stretcher',
['weight'] = 15000,
['type'] = 'item',
['image'] = 'stretcher.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Portable stretcher for EMS transport'
},
['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'
},
['cast_bandage'] = {
['name'] = 'cast_bandage',
['label'] = 'Cast Bandage',
['weight'] = 500,
['type'] = 'item',
['image'] = 'cast_bandage.png',
['unique'] = false,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Bandaging material consumed when applying a cast'
},
['splint'] = {
['name'] = 'splint',
['label'] = 'Splint',
['weight'] = 500,
['type'] = 'item',
['image'] = 'splint.png',
['unique'] = false,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Splint material consumed when applying an arm sling'
},
['head_bandage'] = {
['name'] = 'head_bandage',
['label'] = 'Head Bandage',
['weight'] = 250,
['type'] = 'item',
['image'] = 'head_bandage.png',
['unique'] = false,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Bandaging material for a visible head bandage'
},
['neck_brace'] = {
['name'] = 'neck_brace',
['label'] = 'Neck Brace',
['weight'] = 750,
['type'] = 'item',
['image'] = 'neck_brace.png',
['unique'] = false,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Cervical collar for neck stabilization'
},
['torso_bandage'] = {
['name'] = 'torso_bandage',
['label'] = 'Torso Bandage',
['weight'] = 500,
['type'] = 'item',
['image'] = 'torso_bandage.png',
['unique'] = false,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Bandaging material for a visible torso bandage'
},
['oxygen_mask'] = {
['name'] = 'oxygen_mask',
['label'] = 'Oxygen Mask',
['weight'] = 500,
['type'] = 'item',
['image'] = 'oxygen_mask.png',
['unique'] = false,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Oxygen mask consumed when applying the wearable'
},
['cast_saw'] = {
['name'] = 'cast_saw',
['label'] = 'Cast Saw',
['weight'] = 1500,
['type'] = 'item',
['image'] = 'cast_saw.png',
['unique'] = true,
['rare'] = 'common',
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Reusable tool for removing casts'
},
-- 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},
stretcher = {name = 'stretcher', label = 'Stretcher', weight = 15000, shouldClose = true, description = 'Portable stretcher for EMS transport', unique = true, type = 'item', image = 'stretcher.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},
cast_bandage = {name = 'cast_bandage', label = 'Cast Bandage', weight = 500, shouldClose = true, description = 'Bandaging material consumed when applying a cast', unique = false, type = 'item', image = 'cast_bandage.png', useable = false},
splint = {name = 'splint', label = 'Splint', weight = 500, shouldClose = true, description = 'Splint material consumed when applying an arm sling', unique = false, type = 'item', image = 'splint.png', useable = false},
head_bandage = {name = 'head_bandage', label = 'Head Bandage', weight = 250, shouldClose = true, description = 'Bandaging material for a visible head bandage', unique = false, type = 'item', image = 'head_bandage.png', useable = false},
neck_brace = {name = 'neck_brace', label = 'Neck Brace', weight = 750, shouldClose = true, description = 'Cervical collar for neck stabilization', unique = false, type = 'item', image = 'neck_brace.png', useable = false},
torso_bandage = {name = 'torso_bandage', label = 'Torso Bandage', weight = 500, shouldClose = true, description = 'Bandaging material for a visible torso bandage', unique = false, type = 'item', image = 'torso_bandage.png', useable = false},
oxygen_mask = {name = 'oxygen_mask', label = 'Oxygen Mask', weight = 500, shouldClose = true, description = 'Oxygen mask consumed when applying the wearable', unique = false, type = 'item', image = 'oxygen_mask.png', useable = false},
cast_saw = {name = 'cast_saw', label = 'Cast Saw', weight = 1500, shouldClose = true, description = 'Reusable tool for removing casts', unique = true, type = 'item', image = 'cast_saw.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'
},
stretcher = {
label = 'Stretcher',
weight = 15000,
type = 'item',
image = 'stretcher.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Portable stretcher for EMS transport'
},
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'
},
cast_bandage = {
label = 'Cast Bandage',
weight = 500,
type = 'item',
image = 'cast_bandage.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Bandaging material consumed when applying a cast'
},
splint = {
label = 'Splint',
weight = 500,
type = 'item',
image = 'splint.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Splint material consumed when applying an arm sling'
},
head_bandage = {
label = 'Head Bandage',
weight = 250,
type = 'item',
image = 'head_bandage.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Bandaging material for a visible head bandage'
},
neck_brace = {
label = 'Neck Brace',
weight = 750,
type = 'item',
image = 'neck_brace.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Cervical collar for neck stabilization'
},
torso_bandage = {
label = 'Torso Bandage',
weight = 500,
type = 'item',
image = 'torso_bandage.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Bandaging material for a visible torso bandage'
},
oxygen_mask = {
label = 'Oxygen Mask',
weight = 500,
type = 'item',
image = 'oxygen_mask.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Oxygen mask consumed when applying the wearable'
},
cast_saw = {
label = 'Cast Saw',
weight = 1500,
type = 'item',
image = 'cast_saw.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Reusable tool for removing casts'
},
['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'
},
['stretcher'] = {
label = 'Stretcher',
weight = 15,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'stretcher.png',
description = 'Portable stretcher for EMS transport'
},
['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'
},
['cast_bandage'] = {
label = 'Cast Bandage',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'cast_bandage.png',
description = 'Bandaging material consumed when applying a cast'
},
['splint'] = {
label = 'Splint',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'splint.png',
description = 'Splint material consumed when applying an arm sling'
},
['head_bandage'] = {
label = 'Head Bandage',
weight = 0.25,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'head_bandage.png',
description = 'Bandaging material for a visible head bandage'
},
['neck_brace'] = {
label = 'Neck Brace',
weight = 0.75,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'neck_brace.png',
description = 'Cervical collar for neck stabilization'
},
['torso_bandage'] = {
label = 'Torso Bandage',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'torso_bandage.png',
description = 'Bandaging material for a visible torso bandage'
},
['oxygen_mask'] = {
label = 'Oxygen Mask',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'oxygen_mask.png',
description = 'Oxygen mask consumed when applying the wearable'
},
['cast_saw'] = {
label = 'Cast Saw',
weight = 1.5,
stackable = false,
close = true,
maxStack = 1,
type = 'item',
rarity = 'common',
image = 'cast_saw.png',
description = 'Reusable tool for removing casts'
},
-- 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"
},
["stretcher"] = {
["name"] = "stretcher",
["label"] = "Stretcher",
["weight"] = 15000,
["type"] = "item",
["image"] = "stretcher.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Portable stretcher for EMS transport"
},
["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"
},
["cast_bandage"] = {
["name"] = "cast_bandage",
["label"] = "Cast Bandage",
["weight"] = 500,
["type"] = "item",
["image"] = "cast_bandage.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Bandaging material consumed when applying a cast"
},
["splint"] = {
["name"] = "splint",
["label"] = "Splint",
["weight"] = 500,
["type"] = "item",
["image"] = "splint.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Splint material consumed when applying an arm sling"
},
["head_bandage"] = {
["name"] = "head_bandage",
["label"] = "Head Bandage",
["weight"] = 250,
["type"] = "item",
["image"] = "head_bandage.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Bandaging material for a visible head bandage"
},
["neck_brace"] = {
["name"] = "neck_brace",
["label"] = "Neck Brace",
["weight"] = 750,
["type"] = "item",
["image"] = "neck_brace.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Cervical collar for neck stabilization"
},
["torso_bandage"] = {
["name"] = "torso_bandage",
["label"] = "Torso Bandage",
["weight"] = 500,
["type"] = "item",
["image"] = "torso_bandage.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Bandaging material for a visible torso bandage"
},
["oxygen_mask"] = {
["name"] = "oxygen_mask",
["label"] = "Oxygen Mask",
["weight"] = 500,
["type"] = "item",
["image"] = "oxygen_mask.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Oxygen mask consumed when applying the wearable"
},
["cast_saw"] = {
["name"] = "cast_saw",
["label"] = "Cast Saw",
["weight"] = 1500,
["type"] = "item",
["image"] = "cast_saw.png",
["unique"] = true,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Reusable tool for removing casts"
},
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),
('stretcher', 'Stretcher', 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),
('cast_bandage', 'Cast Bandage', 1, 0, 1),
('splint', 'Splint', 1, 0, 1),
('head_bandage', 'Head Bandage', 1, 0, 1),
('neck_brace', 'Neck Brace', 1, 0, 1),
('torso_bandage', 'Torso Bandage', 1, 0, 1),
('oxygen_mask', 'Oxygen Mask', 1, 0, 1),
('cast_saw', 'Cast Saw', 1, 0, 1);
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