Inventory Setup
Add to item.lua
['syringe_kit'] = {
label = 'Blood Sample Kit',
weight = 1000,
stack = false,
close = true,
description = 'A kit containing a syringe, a needle, and a blood vial.',
},
['blood_vial'] = {
label = 'Blood Vial',
weight = 1000,
stack = false,
close = true,
description = 'A vial full of blood.',
},
['cleanair'] = {
label = 'CleanAir+ Mask',
weight = 500,
stack = false,
close = true,
description = 'Oxygen-rich mask. Ideal for respiratory depression. May overstimulate sedated patients.',
},
['cardioclamp'] = {
label = 'CardioClamp',
weight = 300,
stack = false,
close = true,
description = 'Slows heart rate. Use during panic attacks or tachycardia. Not safe for high BP cases.',
},
['antipsychotix'] = {
label = 'AntiPsychotix',
weight = 250,
stack = false,
close = true,
description = 'Stabilizes psychosis and overstimulation. Unsafe with ethanol in bloodstream.',
},
['neurolift'] = {
label = 'NeuroLift',
weight = 200,
stack = false,
close = true,
description = 'Stimulates CNS to wake benzo overdoses. Can trigger seizures in opioid ODs.',
},
['gutflush'] = {
label = 'GutFlush-X',
weight = 400,
stack = false,
close = true,
description = 'Rapid detox via gastric flush. Removes essential hormones with prolonged use.',
},
['zendose'] = {
label = 'ZenDose',
weight = 250,
stack = false,
close = true,
description = 'Induces deep calm. Great for aggression. Dangerous in high-adrenaline emergencies.',
},
['pulsedown'] = {
label = 'PulseDown',
weight = 300,
stack = false,
close = true,
description = 'Drops blood pressure and heart rate. Risk of coma when sedatives are in play.',
},
['opionix'] = {
label = 'OpioNix',
weight = 350,
stack = false,
close = true,
description = 'Reverses opioid effects. May cause cardiac instability in stimulant cases.',
},
['focuspatch'] = {
label = 'FocusPatch',
weight = 150,
stack = false,
close = true,
description = 'Restores alertness. Not recommended if respiratory depression is suspected.',
},
['syringe_kit'] = {
name = 'syringe_kit',
label = 'Blood Sample Kit',
weight = 1000,
type = 'item',
image = 'syringe_kit.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A kit containing a syringe, a needle, and a blood vial.',
},
['blood_vial'] = {
name = 'blood_vial',
label = 'Blood Vial',
weight = 1000,
type = 'item',
image = 'blood_vial.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A vial full of blood.',
},
['cleanair'] = {
name = 'cleanair',
label = 'CleanAir+ Mask',
weight = 500,
type = 'item',
image = 'cleanair.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Oxygen-rich mask. Ideal for respiratory depression. May overstimulate sedated patients.',
},
['cardioclamp'] = {
name = 'cardioclamp',
label = 'CardioClamp',
weight = 300,
type = 'item',
image = 'cardioclamp.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Slows heart rate. Use during panic attacks or tachycardia. Not safe for high BP cases.',
},
['antipsychotix'] = {
name = 'antipsychotix',
label = 'AntiPsychotix',
weight = 250,
type = 'item',
image = 'antipsychotix.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Stabilizes psychosis and overstimulation. Unsafe with ethanol in bloodstream.',
},
['neurolift'] = {
name = 'neurolift',
label = 'NeuroLift',
weight = 200,
type = 'item',
image = 'neurolift.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Stimulates CNS to wake benzo overdoses. Can trigger seizures in opioid ODs.',
},
['gutflush'] = {
name = 'gutflush',
label = 'GutFlush-X',
weight = 400,
type = 'item',
image = 'gutflush.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Rapid detox via gastric flush. Removes essential hormones with prolonged use.',
},
['zendose'] = {
name = 'zendose',
label = 'ZenDose',
weight = 250,
type = 'item',
image = 'zendose.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Induces deep calm. Great for aggression. Dangerous in high-adrenaline emergencies.',
},
['pulsedown'] = {
name = 'pulsedown',
label = 'PulseDown',
weight = 300,
type = 'item',
image = 'pulsedown.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Drops blood pressure and heart rate. Risk of coma when sedatives are in play.',
},
['opionix'] = {
name = 'opionix',
label = 'OpioNix',
weight = 350,
type = 'item',
image = 'opionix.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Reverses opioid effects. May cause cardiac instability in stimulant cases.',
},
['focuspatch'] = {
name = 'focuspatch',
label = 'FocusPatch',
weight = 150,
type = 'item',
image = 'focuspatch.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Restores alertness. Not recommended if respiratory depression is suspected.',
},
Last updated