Skip to content

Latest commit

 

History

History
67 lines (62 loc) · 1.58 KB

README.md

File metadata and controls

67 lines (62 loc) · 1.58 KB

y_mechanic

Items

    ['advancedrepairkit'] = {
        label = 'Advanced Repair Kit',
        weight = 4000,
        stack = true,
        close = true,
        description = "A nice toolbox with stuff to repair your vehicle",
        client = {
            image = 'advancedkit.png',
        },
        server = {
            export = "y_mechanic.advancedrepairkit"
        },
        consume = 0.5
    },

    ['repairkit'] = {
        label = 'Repair kit',
        weight = 2500,
        stack = true,
        close = true,
        description = "A nice toolbox with stuff to repair your vehicle",
        server = {
            export = "y_mechanic.repairkit"
        },
        consume = 0.25
    },

    ['bodykit'] = {
        label = 'Body kit',
        weight = 1000,
        stack = true,
        close = true,
        description = "A nice toolbox with stuff to repair your vehicle",
        server = {
            export = "y_mechanic.bodykit"
        },
        consume = 0.5
    },

    ['cleaningkit'] = {
        label = 'Cleaning kit',
        weight = 250,
        stack = true,
        close = true,
        description = "Grandpa's cleaning kit",
        server = {
            export = "y_mechanic.cleaningkit"
        },
        consume = 0.25
    },

    ['wheelkit'] = {
        label = 'Spare Wheels',
        weight = 1000,
        stack = true,
        close = true,
        description = "Spare wheels'
        server = {
            export = "y_mechanic.wheelkit"
        },
        consume = 1
    },