# Dealership

## Add vehicles

**File Location:** `Config/vehicles.lua`

```lua
Vehicles = {
    ['sport'] = {
        {
            label = 'Sport', -- Label of category
            jobs = 'vagos', -- Jobs that can buy this category, you can remove this if you want all jobs to buy this category
            values = { -- Vehicles in category
                --[[
                {
                    label = 'Adder', -- Label of vehicle
                    model = `adder`, -- Model of vehicle
                    price = 1000, -- Price of vehicle
                    description = '', -- Description of vehicle, you can remove if you dont want description
                    jobs = {'ballas', 'vagos'}, -- Jobs that can buy this vehicle, you can remove this if you want all jobs to buy this vehicle
                    fullTunePrice = 15000, -- Price of full tune, you can remove to disable full tune option
                },
                ]]
                {label = 'Adder', model = `adder`, price = 1000, jobs = 'vagos', fullTunePrice = 15000},
                {label = 'Zentorno', model = `zentorno`, price = 2000, fullTunePrice = 25000},
                {label = 'T20', model = `t20`, price = 3000, fullTunePrice = 35000},
            }
        }
    },

    ['coupes'] = {
        {
            label = 'Coupes',
            values = {
                {label = 'Felon', model = `Felon`, price = 1000},
                {label = 'FelonB', model = `felon2`, price = 2000},
                {label = 'Oracle', model = `Oracle`, price = 3000},
            }
        }
    },

    ['offroads'] = {
        {
            label = 'Offroads',
            values = {
                {label = 'Bfinjection', model = `bfinjection`, price = 1000},
                {label = 'Bifta', model = `bifta`, price = 2000},
                {label = 'Bodhi', model = `bodhi2`, price = 3000},
            }
        }
    },
}
```

* Vehicles: `table`
  * label: strings
  * jobs: string or array
  * values: table
    * label: `string`
    * model: `joaat` or `string`
    * price: `number`
    * description?: `string`
    * jobs?: `string` or `array`
    * fullTunePrice?: `number`

<figure><img src="https://2644204359-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fso4Bz1A5MlataovyRdlF%2Fuploads%2FfsjKk5aE8uV97QGR68S8%2Fimage.png?alt=media&#x26;token=14b5f2c6-d0cf-44c3-b15b-01ed6e9ec5fc" alt=""><figcaption></figcaption></figure>
