# Items

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

```lua
['whitegrape'] = {
    label = 'White Grape',
    weight = 10,
    stack = true,
},
['redgrape'] = {
    label = 'Red Grape',
    weight = 10,
   stack = true,
},
['redwinebottle'] = {
    label = 'Red Whine',
    weight = 10,
    stack = true,
},
['whitewinebottle'] = {
    label = 'White Wine',
    weight = 10,
    stack = true,
},
['emptywinebottle'] = {
    label = 'Empty Wine Bottle',
    weight = 10,
    stack = true,
},

```

{% endtab %}

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

```lua
['whitegrape'] = {
    ['name'] = 'whitegrape',
    ['label'] = 'White Grape',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'whitegrape.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A fresh white grape ready for winemaking.",
},

['redgrape'] = {
    ['name'] = 'redgrape',
    ['label'] = 'Red Grape',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'redgrape.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A fresh red grape perfect for making wine.",
},

['redwinebottle'] = {
    ['name'] = 'redwinebottle',
    ['label'] = 'Red Wine',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'redwinebottle.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A bottle of rich red wine.",
},

['whitewinebottle'] = {
    ['name'] = 'whitewinebottle',
    ['label'] = 'White Wine',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'whitewinebottle.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "A bottle of crisp white wine.",
},

['emptywinebottle'] = {
    ['name'] = 'emptywinebottle',
    ['label'] = 'Empty Wine Bottle',
    ['weight'] = 10,
    ['type'] = 'item',
    ['image'] = 'emptywinebottle.png',
    ['unique'] = false,
    ['useable'] = false,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = "An empty bottle ready for a fresh batch of wine.",
}

```

{% 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_advancedvineyard/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.
