# Other Brews

Coffees, soft drinks and a festive liqueur - including the brews that sober you up.

# Overview

Not everything has to get you drunk. The coffees have **negative alcohol**, so they actively **sober you up** - the bartender's go-to hangover cure. Most here are non-alcoholic; [**Eggnog**](/books/brewing/page/eggnog) is the boozy exception. In-game each is named after a brand by quality.

| Drink | Ingredients | Alc | Effect |
|---|---|---|---|
| [**Coffee**](/books/brewing/page/coffee) | 12 cocoa beans + 2 milk | Sobering | Speed + Regen |
| [**Iced Coffee**](/books/brewing/page/iced-coffee) | 8 cookies + 4 snowballs + milk | Sobering | Speed + Regen |
| [**Hot Chocolate**](/books/brewing/page/hot-chocolate) | 3 cookies | None | Haste |
| [**Eggnog**](/books/brewing/page/eggnog) | 5 eggs + 2 sugar + milk | ~10% | Festive (alcoholic) |

# Coffee

A hot pick-me-up - and the bartender's secret for sobering up.

## Recipe

| Property | Value |
|---|---|
| **Ingredients** | 12 cocoa beans + 2 milk |
| **Ferment** | 2 minutes |
| **Distill** | Not distilled |
| **Barrel & age** | No aging needed |
| **Difficulty** | 3 / 10 |
| **Alcohol** | Sobering (lowers drunkenness) |

## Brands by quality
The closer you follow the recipe, the better the bottle - and the brand changes with it:

- ⭐ **Nescafé**
- ⭐⭐ **Costa**
- ⭐⭐⭐ **Lavazza**

In-game the bottle is named after the brand, with **Coffee** shown on the line beneath.

## Effects
Gives **Speed** and **Regeneration**, and lowers your drunkenness - the go-to cure after a heavy night.

## Recipe config
The exact BreweryX `recipes.yml` entry for this drink:

```yaml
coffee:
  name: Nescafé/Costa/Lavazza
  ingredients:
  - COCOA_BEANS/12
  - MILK_BUCKET/2
  cookingtime: 2
  color: BLACK
  difficulty: 3
  alcohol: -6
  lore:
  - '&7Coffee'
  effects:
  - REGENERATION/1/2-5
  - SPEED/1/30-140
```

# Iced Coffee

Coffee served cold, with the same sobering kick.

## Recipe

| Property | Value |
|---|---|
| **Ingredients** | 8 cookies + 4 snowballs + 1 milk |
| **Ferment** | 1 minute |
| **Distill** | Not distilled |
| **Barrel & age** | No aging needed |
| **Difficulty** | 4 / 10 |
| **Alcohol** | Sobering (lowers drunkenness) |

## Brands by quality
The closer you follow the recipe, the better the bottle - and the brand changes with it:

- ⭐ **Iced Latte**
- ⭐⭐ **Starbucks**
- ⭐⭐⭐ **Emmi**

In-game the bottle is named after the brand, with **Iced Coffee** shown on the line beneath.

## Effects
Gives **Speed** and **Regeneration**, and clears your head even faster than hot coffee.

## Recipe config
The exact BreweryX `recipes.yml` entry for this drink:

```yaml
iced_coffee:
  name: Iced Latte/Starbucks/Emmi
  ingredients:
  - COOKIE/8
  - SNOWBALL/4
  - MILK_BUCKET/1
  cookingtime: 1
  color: BLACK
  difficulty: 4
  alcohol: -8
  lore:
  - '&7Iced Coffee'
  effects:
  - REGENERATION/30
  - SPEED/10
```

# Hot Chocolate

A cosy, non-alcoholic warmer.

## Recipe

| Property | Value |
|---|---|
| **Ingredients** | 3 cookies |
| **Ferment** | 2 minutes |
| **Distill** | Not distilled |
| **Barrel & age** | No aging needed |
| **Difficulty** | 2 / 10 |
| **Alcohol** | None (non-alcoholic) |

## Brands by quality
The closer you follow the recipe, the better the bottle - and the brand changes with it:

- ⭐ **Options**
- ⭐⭐ **Cadbury**
- ⭐⭐⭐ **Hotel Chocolat**

In-game the bottle is named after the brand, with **Hot Chocolate** shown on the line beneath.

## Effects
Gives **Haste** - a sweet little mining boost.

## Recipe config
The exact BreweryX `recipes.yml` entry for this drink:

```yaml
hot_choc:
  name: Options/Cadbury/Hotel Chocolat
  ingredients:
  - COOKIE/3
  cookingtime: 2
  color: DARK_RED
  difficulty: 2
  lore:
  - '&7Hot Chocolate'
  effects:
  - HASTE/40
```

# Eggnog

A festive egg liqueur - mildly alcoholic despite the cosy name.

## Recipe

| Property | Value |
|---|---|
| **Ingredients** | 5 eggs + 2 sugar + 1 milk |
| **Ferment** | 2 minutes |
| **Distill** | Not distilled |
| **Barrel & age** | Any wood · 3 years (~1 hr) |
| **Difficulty** | 4 / 10 |
| **Alcohol** | ~10% |

## Brands by quality
The closer you follow the recipe, the better the bottle - and the brand changes with it:

- ⭐ **Supermarket Eggnog**
- ⭐⭐ **Advocaat**
- ⭐⭐⭐ **Warninks**

In-game the bottle is named after the brand, with **Egg Liqueur** shown on the line beneath.

Made with raw egg. It is genuinely alcoholic, which is why it sits among the brews rather than the soft drinks.

## Recipe config
The exact BreweryX `recipes.yml` entry for this drink:

```yaml
eggnog:
  name: Supermarket Eggnog/Advocaat/Warninks
  ingredients:
  - EGG/5
  - SUGAR/2
  - MILK_BUCKET/1
  cookingtime: 2
  age: 3
  color: ffe680
  difficulty: 4
  alcohol: 10
  lore:
  - '&7Egg Liqueur'
```