> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_camping/beer.md).

# Consumable Beer

Do not forget to add both beer items into your drunk system or any alternative system you use for eating/drinking.

## Rcore drunk system

* 📦 Buy here [drunk\_system](https://store.rcore.cz/package/5161129)

```lua
Config.DrunkList = {
    {
        name = "beer_05",
        numbersOfSips = 5, -- max 5 sips then the vodka bottle will be empty.
        eachSipGiveDrunk = 2, -- 2 * 5 = 10% drunk from one beer if he drink whole
        attachmentInfo = DefaultAttachmentPropertiesOfItem,
    },
    {
        name = "beer_03",
        numbersOfSips = 3, -- max 5 sips then the vodka bottle will be empty.
        eachSipGiveDrunk = 2, -- 2 * 5 = 10% drunk from one beer if he drink whole
        attachmentInfo = DefaultAttachmentPropertiesOfItem,
    }
}
```
