Messy Craft
Активный0.0
Установок
0
Последнее обновление
1 месяц назад
Версии
1.20.5 — 1.21.5
Сервер
Fabric
Библиотеки
Messy Craft
Messy Craft is a nbt crafting library runs on server-side.
Command
/craft <recipe> [<times>]
Craft recipes./c <recipe> [<times>]
Alias of/craft
.
Recipe
Recipes can be configured by data packs in data/MY_NAMESPACE/messy_recipe/.../MY_RECIPE.json
. (where MY_NAMESPACE
and MY_RECIPE
should be replaced, obviously)
Here is a template recipe file.
{
"ingredients": [
{
"count": 1,
"id": "minecraft:stick",
"components": {
"minecraft:rarity": "uncommon"
}
}
],
"result": {
"count": 1,
"id": "minecraft:milk_bucket",
"components": {
"minecraft:item_name": "Milky Water"
}
}
}