# Наименования объектов

Название объекта маскировки отображается в виде набора символов. Данный момент можно отрегулировать и дать маскированному объекту/предмету собственное название. Для этого необходимо в файл изучения добавить дополнительную запись.

Для блоков:

```json
"block_name_replacements": {
    "маскируемый блок": "имя"
}
```

Для предметов:

```json
"item_name_replacements": {
    "маскируемый предмет": "имя"
}
```

### Пример ниже демонстрирует использование данной опции:

```json
{
  "advancement": "minecraft:adventure/root",
  "block_states": {
    "minecraft:grass": "minecraft:beacon"
  },
  "items": {
    "minecraft:nether_star": "minecraft:gunpowder",
    "minecraft:diamond_ore": "minecraft:stone"
  },
  "item_name_replacements": {
    "minecraft:nether_star": "block.minecraft.poppy",
    "minecraft:diamond_ore": "Probably Stone?",
    "minecraft:grass": "block.minecraft.dandelion",
    "minecraft:gold_ore": "Since Gold Ore is not in the items tag above, you should never see this"
  },
  "block_name_replacements": {
    "minecraft:grass": "block.minecraft.dandelion"
  }
}
```


---

# 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/revelationary/naimenovaniya-obektov.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.
