# Жидкость из жидкости

* **Вход**: предметы, жидкость&#x20;
* **Выход**: предметы

У жидкости можно указать тип жидкости.

У входных предметов можно указать тип: предмет (item) или тег (tag), количество (count), шанс возврата предмета при совершении рецепта (return\_chance).

В значении выхода можно указать возможные к получению жидкости с шансом получения каждой.

**Пример рецепта** создания молока или латекса из воды и железа:

```json
{
  "type": "interactio:fluid_fluid_transform",
  "items": [
    {
      "tag": "forge:ingots/iron",
      "count": 4,
      "return_chance": 1
    }
  ],
  "input": {
    "fluid": "water"
  },
  "output": {
    "entries": [
      {
        "result": {
          "fluid": "industrialforegoing:milk"
        },
        "weight": 2
      },
      {
        "result": {
          "fluid": "industrialforegoing:latex"
        },
        "weight": 4
      }
    ],
    "empty_weight": 5
  }
}
```


---

# Agent Instructions: 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:

```
GET https://wiki.aegis-mine.ru/modifications/sozdanie-kontenta/interactio/zhidkost-iz-zhidkosti.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
