# Удар молнии

* **Вход**: предметы + удар молнии
* **Выход**: предметы

Предметы в данном рецепте создаются посредством удара молнии по каким-либо ресурсам.

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

У выходных предметов можно указать тип предмета, количество, вес предмета (при нескольких выходных предметов), вес неудачного крафта (empty\_weight), число попыток скрафтить предмет (rolls).

Например:

```json
{
  "type": "interactio:item_lightning",
  "inputs": [
    {
      "tag": "forge:ores",
      "count": 1
    },
    {
      "tag": "forge:stone",
      "count": 2
    }
  ],
  "output": {
    "entries": [
      {
        "result": {
          "item": "minecraft:diamond",
          "count": 1
        },
        "weight": 2
      }
    ],
    "empty_weight": 1,
    "rolls": 1
  }
}
```

<figure><img src="/files/jMsD3n9N4x1tAWNQksSe" alt=""><figcaption></figcaption></figure>


---

# 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/udar-molnii.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.
