# Items

{% tabs %}
{% tab title="ox\_inventory" %}

```lua
['goldcandy'] = {
        label = 'Gold Candy',
        weight = 10,
        stack = true,
},
['pinkcandy'] = {
        label = 'Pink Candy',
        weight = 10,
        stack = true,
},
['bluecandy'] = {
        label = 'Blue Candy',
        weight = 10,
        stack = true,
},

```

{% endtab %}

{% tab title="qb-inventory" %}

```lua
['goldcandy'] = {
    ['name'] = 'goldcandy',
    ['label'] = 'Gold Candy',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'goldcandy.png', 
    ['unique'] = false, 
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A piece of gold-colored candy.",
},

['pinkcandy'] = {
    ['name'] = 'pinkcandy',
    ['label'] = 'Pink Candy',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'pinkcandy.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A piece of pink-colored candy.",
},

['bluecandy'] = {
    ['name'] = 'bluecandy',
    ['label'] = 'Blue Candy',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'bluecandy.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A piece of blue-colored candy.",
}

```

{% endtab %}
{% endtabs %}
