# Items

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

```lua
["apple"] = {
    label = "Apple",
    weight = 100,
    description = "A crisp, sweet fruit that's perfect for a quick, healthy snack."
},

["orange"] = {
    label = "Orange",
    weight = 100,
    description = "A juicy citrus fruit packed with vitamin C and a refreshing taste."
},

["pineapple"] = {
    label = "Pineapple",
    weight = 120,
    description = "A tropical fruit known for its vibrant flavor and spiky exterior."
},

["tomato"] = {
    label = "Tomato",
    weight = 100,
    description = "A versatile fruit often used in cooking for its rich, savory flavor."
},

["strawberry"] = {
    label = "Strawberry",
    weight = 100,
    description = "A sweet, juicy berry with a bright red color and refreshing taste."
},

["potato"] = {
    label = "Potato",
    weight = 80,
    description = "A versatile fruit often used in cooking for its rich, savory flavor."
},

["pumpkin"] = {
    label = "Pumpkin",
    weight = 80,
    description = "A hearty squash often used in soups, pies, and festive autumn dishes."
},


```

{% endtab %}

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

```lua
["apple"] = {
    ['name'] = 'apple',
    ['label'] = 'Apple',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'apple.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A crisp, sweet fruit that's perfect for a quick, healthy snack."
},

["orange"] = {
    ['name'] = 'orange',
    ['label'] = 'Orange',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'orange.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A juicy citrus fruit packed with vitamin C and a refreshing taste."
},

["pineapple"] = {
    ['name'] = 'pineapple',
    ['label'] = 'Pineapple',
    ['weight'] = 120,
    ['type'] = 'item',
    ['image'] = 'pineapple.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A tropical fruit known for its vibrant flavor and spiky exterior."
},

["tomato"] = {
    ['name'] = 'tomato',
    ['label'] = 'Tomato',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'tomato.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A versatile fruit often used in cooking for its rich, savory flavor."
},

["strawberry"] = {
    ['name'] = 'strawberry',
    ['label'] = 'Strawberry',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'strawberry.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A sweet, juicy berry with a bright red color and refreshing taste."
},

["potato"] = {
    ['name'] = 'potato',
    ['label'] = 'Potato',
    ['weight'] = 80,
    ['type'] = 'item',
    ['image'] = 'potato.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A starchy vegetable commonly used in a variety of savory dishes."
},

["pumpkin"] = {
    ['name'] = 'pumpkin',
    ['label'] = 'Pumpkin',
    ['weight'] = 120,
    ['type'] = 'item',
    ['image'] = 'pumpkin.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A hearty squash often used in soups, pies, and festive autumn dishes."
},

```

{% endtab %}
{% endtabs %}
