For the complete documentation index, see llms.txt. This page is also available as Markdown.

Install Guide

Install Guide for Masky Kits

CraftEngine

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

  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:

Last updated