# Рецепты для др. блоков

## Печь

Общая форма рецептов для печки выглядит следующим образом:&#x20;

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.FurnaceManager;
furnace.addRecipe(name, output, input, xp, time);
```

{% endcode %}

где\
\&#xNAN;*<mark style="color:blue;">**name**</mark>* – имя рецепта,\
\&#xNAN;*<mark style="color:blue;">**output**</mark>* – результат рецепта,\
\&#xNAN;*<mark style="color:blue;">**input**</mark>* – входной элемент,\
\&#xNAN;*<mark style="color:blue;">**xp**</mark>* – опыт,\
\&#xNAN;*<mark style="color:blue;">**time**</mark>* – время рецепта в тиках.

Пример ниже плавит рычаг в красный факел за 3 секунды (60 тиков) с 15 единицами опыта.

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.FurnaceManager;
furnace.addRecipe("lever_to_torch", <item:minecraft:redstone_torch>, <item:minecraft:lever>, 15.0, 60);
```

{% endcode %}

<figure><img src="/files/1nvqppfYbVNIwvWJjMQu" alt=""><figcaption></figcaption></figure>

## Плавильная печь

Общая форма рецептов для печки выглядит следующим образом:&#x20;

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.BlastFurnaceManager;
blastFurnace.addRecipe(name, output, input, xp, time);
```

{% endcode %}

где\
\&#xNAN;*<mark style="color:blue;">**name**</mark>* – имя рецепта,\
\&#xNAN;*<mark style="color:blue;">**output**</mark>* – результат рецепта,\
\&#xNAN;*<mark style="color:blue;">**input**</mark>* – входной элемент,\
\&#xNAN;*<mark style="color:blue;">**xp**</mark>* – опыт,\
\&#xNAN;*<mark style="color:blue;">**time**</mark>* – время рецепта в тиках.

## Костёр

Общая форма рецептов для печки выглядит следующим образом:&#x20;

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.CampFireManager;
campfire.addRecipe(name, output, input, xp, time);
```

{% endcode %}

где\
\&#xNAN;*<mark style="color:blue;">**name**</mark>* – имя рецепта,\
\&#xNAN;*<mark style="color:blue;">**output**</mark>* – результат рецепта,\
\&#xNAN;*<mark style="color:blue;">**input**</mark>* – входной элемент,\
\&#xNAN;*<mark style="color:blue;">**xp**</mark>* – опыт,\
\&#xNAN;*<mark style="color:blue;">**time**</mark>* – время рецепта в тиках.

## Коптильня

Общая форма рецептов для печки выглядит следующим образом:&#x20;

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.SmokerManager;
smoker.addRecipe(name, output, input, xp, time);
```

{% endcode %}

где\
\&#xNAN;*<mark style="color:blue;">**name**</mark>* – имя рецепта,\
\&#xNAN;*<mark style="color:blue;">**output**</mark>* – результат рецепта,\
\&#xNAN;*<mark style="color:blue;">**input**</mark>* – входной элемент,\
\&#xNAN;*<mark style="color:blue;">**xp**</mark>* – опыт,\
\&#xNAN;*<mark style="color:blue;">**time**</mark>* – время рецепта в тиках.

## Стол кузнеца

Общая форма рецептов для печки выглядит следующим образом:&#x20;

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.SmithingManager;
smithing.addRecipe(name, output, input_base, input_add);
```

{% endcode %}

где\
\&#xNAN;*<mark style="color:blue;">**name**</mark>* – имя рецепта,\
\&#xNAN;*<mark style="color:blue;">**output**</mark>* – результат рецепта,\
\&#xNAN;*<mark style="color:blue;">**input\_base**</mark>* – входной элемент (основной),\
\&#xNAN;*<mark style="color:blue;">**input\_add**</mark>* – входной элемент (дополнительный).

## Камнерез

Общая форма рецептов для печки выглядит следующим образом:&#x20;

{% code overflow="wrap" lineNumbers="true" %}

```java
import crafttweaker.api.StoneCutterManager;
stoneCutter.addRecipe(name, output, input);
```

{% endcode %}

где\
\&#xNAN;*<mark style="color:blue;">**name**</mark>* – имя рецепта,\
\&#xNAN;*<mark style="color:blue;">**output**</mark>* – результат рецепта,\
\&#xNAN;*<mark style="color:blue;">**input**</mark>* – входной элемент.


---

# 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/crafttweaker/minecraft-1.16.5/recepty-dlya-dr.-blokov.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.
