> For the complete documentation index, see [llms.txt](https://docs.0resmon.org/0resmon/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.0resmon.org/0resmon/0resmon-1/frkn-resources/frkn-k9-system/items.md).

# Items

#### <mark style="color:$success;">All item photos are included in the script.</mark>

#### QB-Core (`qb-core/shared/items.lua`)

```lua
dogrevive = {
    name = "dogrevive",
    label = "Dog Revive Kit",
    weight = 100,
    type = "item",
    image = "dogrevive.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Revives your dog with 100 health."
},

dogreviveplus = {
    name = "dogreviveplus",
    label = "Dog Revive Plus Kit",
    weight = 120,
    type = "item",
    image = "dogreviveplus.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Revives your dog with 150 health."
},

dogfood = {
    name = "dogfood",
    label = "Dog Food",
    weight = 200,
    type = "item",
    image = "dogfood.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Basic food that restores 20 hunger."
},

dogpremiumfood = {
    name = "dogpremiumfood",
    label = "Premium Dog Food",
    weight = 250,
    type = "item",
    image = "dogpremiumfood.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Premium quality food that restores 40 hunger."
},

dogwater = {
    name = "dogwater",
    label = "Dog Water",
    weight = 100,
    type = "item",
    image = "dogwater.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Water that restores 20 thirst."
},

dogfreshwater = {
    name = "dogfreshwater",
    label = "Fresh Dog Water",
    weight = 120,
    type = "item",
    image = "dogfreshwater.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Fresh water that restores 40 thirst."
},

dogenergy = {
    name = "dogenergy",
    label = "Dog Energy Snack",
    weight = 80,
    type = "item",
    image = "dogenergy.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Snack that restores 20 energy."
},

dogenergyplus = {
    name = "dogenergyplus",
    label = "Dog Energy Bar",
    weight = 90,
    type = "item",
    image = "dogenergyplus.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Energy bar that restores 40 energy."
},

dogleash = {
    name = "dogleash",
    label = "Dog Leash",
    weight = 50,
    type = "item",
    image = "dogleash.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Basic leash to walk your dog."
},

dogleashpro = {
    name = "dogleashpro",
    label = "Professional Dog Leash",
    weight = 60,
    type = "item",
    image = "dogleashpro.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Professional leash with higher durability."
},

dogconnect = {
    name = "dogconnect",
    label = "Dog Connector",
    weight = 80,
    type = "item",
    image = "dogconnect.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "Connector device for dogs."
},

dogtennis = {
    name = "dogtennis",
    label = "Dog Tennis Ball",
    weight = 20,
    type = "item",
    image = "dogtennis.png",
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "A tennis ball for fetch games."
},
```

#### OX Inventory (`ox_inventory/data/items.lua`)

```lua
['dogrevive'] = {
    label = 'Dog Revive Kit',
    weight = 100,
    stack = true,
    close = true,
    description = 'Revives your dog with 100 health.'
},

['dogreviveplus'] = {
    label = 'Dog Revive Plus Kit',
    weight = 120,
    stack = true,
    close = true,
    description = 'Revives your dog with 150 health.'
},

['dogfood'] = {
    label = 'Dog Food',
    weight = 200,
    stack = true,
    close = true,
    description = 'Basic food that restores 20 hunger.'
},

['dogpremiumfood'] = {
    label = 'Premium Dog Food',
    weight = 250,
    stack = true,
    close = true,
    description = 'Premium food that restores 40 hunger.'
},

['dogwater'] = {
    label = 'Dog Water',
    weight = 100,
    stack = true,
    close = true,
    description = 'Restores 20 thirst.'
},

['dogfreshwater'] = {
    label = 'Fresh Dog Water',
    weight = 120,
    stack = true,
    close = true,
    description = 'Restores 40 thirst.'
},

['dogenergy'] = {
    label = 'Dog Energy Snack',
    weight = 80,
    stack = true,
    close = true,
    description = 'Restores 20 energy.'
},

['dogenergyplus'] = {
    label = 'Dog Energy Bar',
    weight = 90,
    stack = true,
    close = true,
    description = 'Restores 40 energy.'
},

['dogleash'] = {
    label = 'Dog Leash',
    weight = 50,
    stack = true,
    close = true,
    description = 'Basic leash to walk your dog.'
},

['dogleashpro'] = {
    label = 'Professional Dog Leash',
    weight = 60,
    stack = true,
    close = true,
    description = 'Professional leash with higher durability.'
},

['dogconnect'] = {
    label = 'Dog Connector',
    weight = 80,
    stack = true,
    close = true,
    description = 'Connector device for dogs.'
},

['dogtennis'] = {
    label = 'Dog Tennis Ball',
    weight = 20,
    stack = true,
    close = true,
    description = 'A tennis ball for fetch games.'
},

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.0resmon.org/0resmon/0resmon-1/frkn-resources/frkn-k9-system/items.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
