> For the complete documentation index, see [llms.txt](https://plugins.elitefantasy.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://plugins.elitefantasy.net/item-tiers/install-guide.md).

# 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
```
