> For the complete documentation index, see [llms.txt](https://lcdevdocs.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lcdevdocs.gitbook.io/docs/remastered-scripts/lc-businesses/consumables.md).

# 🍔Consumables

I have included embedded consumables so that you can handle it all from one script, along side being able to use your custom emotes for each consumable, so you are no longer just drinking a water bottle each time. I have left the files that handle this open source so you can modify it even more if you wish too.

```lua
Config.ConsumablesEat = {
    ["burger-bleeder"] = {
        customanim = "default", -- either default or prop
        food_to_gain_min = 35,
        food_to_gain_max = 75,
        stress_relief_minx = 0,
        stress_relief_maxx = 2,

        --- Below Can be ignored if customanim is default
        customemote = "eat_burger", -- from Config.CustomAnimations
        ---
    },
}

Config.ConsumablesDrink = {
    ["burger-softdrink"] = {
        customanim = "prop", -- either default or prop
        thirst_to_gain_min = 35,
        thirst_to_gain_max = 75,

        --- Below Can be ignored if customanim is default
        customemote = "drink_burgershot", -- from Config.CustomAnimations
        ---
    },
}
```
