(不会发图片所以改用文字描述qwq)
①鞍的合成:
{
“type”: “minecraft:crafting_shaped”,
“pattern”: [
“111”,
“212”,
“111”
],
“key”: {
“1”: {
“item”: “minecraft:leather”, —-(皮革)
“count”:1
},
“2”: {
“item”: “minecraft:string”, —-(线)
“count”:1
}
},
“result”: {
“item”: “minecraft:saddle”, —-(鞍)
“count”: 1
}
}
②鞍的分解(无序):
{
“type”: “crafting_shapeless”,
“ingredients”: [
{
“item”: “minecraft:saddle” —-(鞍)
}
],
“result”: {
“item”: “leather”, —-(皮革*4)
“count”: 4
}
}
③怀旧配方-附魔金苹果:
{
“type”: “minecraft:crafting_shaped”,
“pattern”: [
“111”,
“121”,
“111”
],
“key”: {
“1”: {
“item”: “minecraft:gold_block”, —-(金块)
“count”:1
},
“2”: {
“item”: “minecraft:apple”, —-(苹果)
“count”:1
}
},
“result”: {
“item”: “minecraft:enchanted_golden_apple”, —-(附魔金苹果)
“count”: 1
}
}
④锻造模板-下界合金升级:
{
“type”: “minecraft:crafting_shaped”,
“pattern”: [
“121”,
“121”,
“434”
],
“key”: {
“1”: {
“item”: “minecraft:nether_brick” —-(下界砖)
},
“2”: {
“item”: “minecraft:diamond” —-(钻石)
},
“3”: {
“item”: “minecraft:amethyst_shard” —-(紫水晶碎片)
},
“4”: {
“item”: “minecraft:netherite_scrap” —-(下界合金碎片)
}
},
“result”: {
“item”: “minecraft:netherite_upgrade_smithing_template”, —-(锻造模板)
“count”: 1
}
}