# Inventory Items

<details>

<summary>Old qb-inventory</summary>

```lua
['disabler'] = {
    ['name'] = 'disabler',
    ['label'] = 'Disabler',
    ['weight'] = 0,
    ['type'] = 'item',
    ['image'] = 'usb_device.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Handy tool to disable transmitters'
},

['grinder'] = {
    ['name'] = 'grinder',
    ['label'] = 'Angle Grinder',
    ['weight'] = 0,
    ['type'] = 'item',
    ['image'] = 'grinder.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Useful for grinding locks in half'
},

['tacticalscuba'] = {
    ['name'] = 'tacticalscuba',
    ['label'] = 'Tactical Scuba Gear',
    ['weight'] = 0,
    ['type'] = 'item',
    ['image'] = 'tacticalscuba.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = 'Effective in tactical underwater insertion operations'
},

```

</details>

<details>

<summary>New qb-inventory</summary>

```lua
disabler                    = { name = 'disabler', label = 'Disabler', weight = 0, type = 'item', image = 'usb_device.png', unique = false, useable = false, shouldClose = true, description = 'Handy tool to disable transmitters' },
grinder                    = { name = 'grinder', label = 'Angle Grinder', weight = 0, type = 'item', image = 'grinder.png', unique = false, useable = false, shouldClose = true, description = 'Useful for grinding locks in half' },
tacticalscuba                    = { name = 'tacticalscuba', label = 'Tactical Scuba Gear', weight = 0, type = 'item', image = 'tacticalscuba.png', unique = false, useable = false, shouldClose = true, description = 'Effective in tactical underwater insertion operations' },
```

</details>

<details>

<summary>ox-inventory</summary>

```lua
['disabler'] = {
    label = 'Disabler',
    weight = 0,
    description = 'Handy tool to disable transmitters',
    stack = true,
    close = true,
},

['grinder'] = {
    label = 'Angle Grinder',
    weight = 0,
    description = 'Useful for grinding locks in half',
    stack = true,
    close = true,
},

['tacticalscuba'] = {
    label = 'Tactical Scuba Gear',
    weight = 0,
    description = 'Effective in tactical underwater insertion operations',
    stack = true,
    close = true,
},

```

</details>
