
Itematic
A mod that adds data-driven items to the game, and much more!
602
36
Список изменений
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!

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_modifiersfield to the item.- Its value is the same as the list form of the
minecraft:attribute_modifiersdata component.
- Its value is the same as the list form of the
Item Behaviour Components
- Removed
minecraft:attribute_modifiers.- Entries should be moved to the
attribute_modifiersfield on the item.
- Entries should be moved to the
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"
}
]
}
Recipes
Added the following recipe types:
minecraft:brewing_amplifyminecraft: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": {
"item": "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": {
"item": "minecraft:sugar"
},
"base": "minecraft:awkward",
"result": "minecraft:swiftness"
}
Файлы
Itematic-0.5.0-preview.2+1.21.1.jar(2.55 MiB)
ОсновнойМетаданные
Канал релиза
Beta
Номер версии
0.5.0-preview.2+1.21.1
Загрузчики
Fabric
Версии игры
1.21–1.21.1
Загрузок
17
Дата публикации
1 мес. назад