# Items

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

```lua
["prison_rope"] = {
    label = "Long Rope",
    weight = 250,
    stack = false
},

["prison_buns"] = {
    label = "Honey Buns",
    weight = 50,
	client = {
		status = { hunger = 200000 },
		anim = 'eating',
		prop = 'burger',
		usetime = 2500
	},
},

["prison_noodles"] = {
    label = "Instant Noodles",
    weight = 30,
	client = {
		status = { hunger = 200000 },
		anim = 'eating',
		prop = 'burger',
		usetime = 2500
	},
},
```

{% endtab %}

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

```lua
["prison_rope"] = {
    ['name'] = 'prison_rope',
    ['label'] = 'Long Rope',
    ['weight'] = 250,
    ['type'] = 'item',
    ['image'] = 'prison_rope.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = ""
},

["prison_noodles"] = {
    ['name'] = 'prison_noodles',
    ['label'] = 'Instant Noodles',
    ['weight'] = 30,
    ['type'] = 'item',
    ['image'] = 'prison_noodles.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = ""
},

["prison_buns"] = {
    ['name'] = 'prison_buns',
    ['label'] = 'Honey Buns',
    ['weight'] = 50,
    ['type'] = 'item',
    ['image'] = 'prison_buns.png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
    ['description'] = ""
}
```

{% endtab %}
{% endtabs %}
