# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.stevoscripts.com/free-scripts/stevo_fruitpicking/installation/items.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
