▶️ ЗАБЕРИ СВОИ 8 ПОДАРКОВ 🎁 ПРИ СОЗДАНИИ СВОЕГО МАЙНКРАФТ СЕРВЕРА
Моды/Itematic
Itematic

Itematic

A mod that adds data-driven items to the game, and much more!

599
36
Все версииItematic 0.5.0 Preview 2 for 1.21.3

Itematic 0.5.0 Preview 2 for 1.21.3

Beta1 мес. назад

Список изменений

This preview version adds data-driven brewing recipes with a recipe book and moves attribute modifiers on items outside of the item behaviour.

For a few more details regarding the split and future you can look at the roadmap to 1.21!

A Brewing Stand with an open recipe book

Changes

Assets

  • Added four textures for the Brewing Stand recipe book filter button.

Items

  • Added new item tags:
    • #minecraft:brewing_inputs, which is used for the accepted items for the Brewing Stand input slots.
    • #minecraft:mundane_potion_additions, which is used to convert Water Bottles to Mundane Potions in a brewing recipe.
  • Added an optional attribute_modifiers field to the item.
    • Its value is the same as the list form of the minecraft:attribute_modifiers data component.

Item Behaviour Components

  • Removed minecraft:attribute_modifiers.
    • Entries should be moved to the attribute_modifiers field on the item.

So if you had this:

{
  "behavior": {
    "minecraft:attribute_modifiers": [
      {
        "id": "example:tool.heavy",
        "type": "minecraft:gravity",
        "amount": 0.01,
        "operation": "add_value",
        "slot": "hand"
      }
    ]
  }
}

You now have to use this instead:

{
  "attribute_modifiers": [
    {
      "id": "example:tool.heavy",
      "type": "minecraft:gravity",
      "amount": 0.01,
      "operation": "add_value",
      "slot": "hand"
    }
  ]
}
  • Removed minecraft:armor.
    • Entries should be moved to the attribute_modifiers field on the item.

So if you had this:

{
  "behavior": {
    "minecraft:armor": {
      "attribute_id": "minecraft:armor.chestplate",
      "defense": 8,
      "knockback_resistance": 0.0,
      "toughness": 2.0
    }
  }
}

You now have to use this instead:

{
  "attribute_modifiers": [
    {
      "id": "minecraft:armor.chestplate",
      "type": "minecraft:armor",
      "amount": 8.0,
      "operation": "add_value",
      "slot": "chest"
    },
    {
      "id": "minecraft:armor.chestplate",
      "type": "minecraft:armor_toughness",
      "amount": 2.0,
      "operation": "add_value",
      "slot": "chest"
    }
  ]
}

Recipes

Added the following recipe types:

  • minecraft:brewing_amplify
  • minecraft:brewing_modify

minecraft:brewing_amplify

  • Transforms the item into another one after brewing.
  • Format:
    • group: An optional string. Used to group recipes together.
    • base: An item. The item to transform.
    • addition: An ingredient. The items to accept to modify the item.
    • result: An item. The item to transform into.
  • A remainder may be specified for the addition that is left in the slot or dropped in the world after brewing.

Example:

{
  "type": "minecraft:brewing_amplify",
  "addition": {
    "items": "minecraft:dragon_breath",
    "remainder": {
      "id": "minecraft:glass_bottle",
      "count": 1
    }
  },
  "base": "minecraft:splash_potion",
  "result": "minecraft:lingering_potion"
}

minecraft:brewing_modify

  • Changes the potion present on the item into another one after brewing.
  • Format:
    • group: An optional string. Used to group recipes together.
    • base: A potion. The potion to modify.
    • addition: An ingredient. The items to accept to modify the potion.
    • result: A potion. The potion to leave.
  • A remainder may be specified for the addition that is left in the slot or dropped in the world after brewing.

Example:

{
  "type": "minecraft:brewing_modify",
  "addition": "minecraft:sugar",
  "base": "minecraft:awkward",
  "result": "minecraft:swiftness"
}

Файлы

Itematic-0.5.0-preview.2+1.21.3.jar(2.51 MiB)
Основной
Скачать

Метаданные

Канал релиза

Beta

Номер версии

0.5.0-preview.2+1.21.3

Загрузчики

Fabric

Версии игры

1.21.2–1.21.3

Загрузок

7

Дата публикации

1 мес. назад

Загрузил

ID версии

Главная