# Install Guide

## CraftEngine

To create new items in CraftEngine, simply duplicate this part and change the names to the texture you want to use

```yaml
  elitefantasy:diamond_common:
    material: diamond
    data:
      components:
        minecraft:rarity: common
    model:
      template: elitefantasy:model/tiers
      arguments:
        item: minecraft:item/diamond
  elitefantasy:diamond_uncommon:
    material: diamond
    data:
      components:
        minecraft:rarity: uncommon
        item_model: elitefantasy:diamond_common
  elitefantasy:diamond_rare:
    material: diamond
    data:
      components:
        minecraft:rarity: rare
        item_model: elitefantasy:diamond_common
  elitefantasy:diamond_epic:
    material: diamond
    data:
      components:
        minecraft:rarity: epic
        item_model: elitefantasy:diamond_common
```

## Nexo

Since Nexo does not have an ItemModels generator for these things, you will have to do more manual work, so first go to `Nexo/pack/assets/elitefantasy/items`, and duplicate `diamond_common.json` and rename it, for example, to `paper_common`

Change the names inside that JSON, and then in Nexo/Items, the configuration should look something like this:

```yaml
paper_common:
  material: paper
  Components:
    item_model: elitefantasy:paper_common
    rarity: common
paper_uncommon:
  material: paper
  Components:
    item_model: elitefantasy:paper_common
    rarity: uncommon
paper_rare:
  material: paper
  Components:
    item_model: elitefantasy:paper_common
    rarity: rare
paper_epic:
  material: paper
  Components:
    item_model: elitefantasy:paper_common
    rarity: epic
```


---

# 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://plugins.elitefantasy.net/item-tiers/install-guide.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.
