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.',
    },

Last updated