Minecraft Wiki

除另有声明,转载时均必须注明出处若簡繁轉換出錯,請以遊戲內為準请勇于扩充与修正内容有兴趣逛逛我们的微博沟通交流,欢迎到社区专页需要协助,请在告示板留言

了解更多

Minecraft Wiki
Bizcuit9968留言 | 贡献
标签移动版编辑 移动版网页编辑
Bizcuit9968留言 | 贡献
无编辑摘要
标签移动版编辑 移动版网页编辑
(未显示同一用户的2个中间版本)
第1行: 第1行:
{{translation|n}}
 
 
{{exclusive|bedrock}}
 
{{exclusive|bedrock}}
这是[[基岩版beta 1.14.0.4]]的合成配方文档。该发布版中的新的特性、功能部件与能力并非最终结果,且可能在[[基岩版1.13.0|最终版本]]之前不经通知地修改。如果附加包没有正常工作,请务必在正式发布时立刻查看其文档。为该Beta版创作的资源包和行为包不一定可以在最终发布版中正常使用。
+
这是[[基岩版beta 1.14.0.4]]的合成配方文档。该发布版中的新的特性、功能部件与能力并非最终结果,且可能在[[基岩版1.13.0|最终版本]]{{sic}}之前不经通知地修改。如果附加包没有正常工作,请务必在正式发布时立刻查看其文档。为该Beta版创作的资源包和行为包不一定可以在最终发布版中正常使用。
   
 
==minecraft:recipe_shaped==
 
==minecraft:recipe_shaped==
第239行: 第238行:
   
 
==minecraft:recipe_brewing_mix==
 
==minecraft:recipe_brewing_mix==
  +
用一种药水来酿造另一种药水
if the potion should be brewed to make another potion
 
   
 
: {| class="wikitable"
 
: {| class="wikitable"
! Type !! Name !! Default Value !! Description
+
! 类型 !! 名称 !! 默认值 !! 描述
 
|-
 
|-
  +
| 字符串
| String
 
 
| tags
 
| tags
 
|
 
|
  +
| 酿造台
| brewing_stand
 
 
|-
 
|-
  +
|字符串
|String
 
 
|input
 
|input
 
|
 
|
  +
|用于酿造的物品
|what potion you brewing
 
 
|-
 
|-
  +
|字符串
|String
 
 
|reagent
 
|reagent
 
|
 
|
  +
|酿造药水所需要的物品
|what item required to brew potion
 
 
|-
 
|-
  +
|字符串
|String
 
 
|output
 
|output
 
|
 
|
  +
|酿造后得到的物品
|what is the result of brewing
 
 
|}
 
|}
   
  +
;代码实例
;Code Example
 
   
 
<pre>
 
<pre>
第285行: 第284行:
 
 
 
</pre>
 
</pre>
  +
 
==minecraft:recipe_brewing_container==
 
==minecraft:recipe_brewing_container==
  +
改变一种药水的容器(可饮用的药水、喷溅药水、滞留药水)
If the potion should be brewed to change its container
 
 
: {| class="wikitable"
 
: {| class="wikitable"
! Type !! Name !! Default Value !! Description
+
! 类型 !! 名称 !! 默认值 !! 描述
 
|-
 
|-
  +
| 字符串
| String
 
 
| tags
 
| tags
 
|
 
|
  +
| 酿造台
| brewing_stand
 
 
|-
 
|-
  +
|字符串
|String
 
 
|input
 
|input
 
|
 
|
  +
|用于酿造的物品
|what potion you brewing
 
 
|-
 
|-
  +
|字符串
|String
 
 
|reagent
 
|reagent
 
|
 
|
  +
|酿造药水所需要的物品
|what item required to brew potion
 
 
|-
 
|-
  +
|字符串
|String
 
 
|output
 
|output
 
|
 
|
  +
|酿造后得到的物品
|what is the result of brewing
 
 
|}
 
|}
   
  +
;代码实例
;Code Example
 
   
 
<pre>
 
<pre>

2021年1月21日 (四) 15:52的版本

Information icon
此特性为基岩版独有。

这是基岩版beta 1.14.0.4的合成配方文档。该发布版中的新的特性、功能部件与能力并非最终结果,且可能在最终版本[原文如此]之前不经通知地修改。如果附加包没有正常工作,请务必在正式发布时立刻查看其文档。为该Beta版创作的资源包和行为包不一定可以在最终发布版中正常使用。

minecraft:recipe_shaped

类型 名称 默认值 描述
字符串 tags 工作台
字符串 Pattern 在一个3×3的合成方格中由引号所包括的字符数组
字符串 key 字符在游戏物品中被显示的翻译
字符串 result 合成后得到的物品
代码举例
例子
{
  "format_version": "1.12",
  "minecraft:recipe_shaped": {
    "description": {
    "identifier": "magic:wand"
    },

    
    "tags": [ "crafting_table" ],
    "pattern": [
      "e# ",
      "#b#",
      " ##"
    ],
    "key": {
      "#": {
        "item": "minecraft:stick"
      },
      "e" : {
        "item": "minecraft:diamond"
      },
      "b" : {
        "item": "minecraft:bow"
      }
    },
    "result": {
      "item": "magic:wand"
    }
  }
}

minecraft:recipe_shapeless

类型 名称 默认值 描述
字符串 tags 工作台,制图台,切石机
列表 ingredients 用于合成的物品
字符串 result 合成后得到的物品
代码举例
例子:

{
  "format_version": "1.12",
  "minecraft:recipe_shapeless": {
    "description": {
    "identifier": "minecraft:andesite"
    },

    
    "tags": [ "crafting_table" ],
    "ingredients": [
      {
        "item": "minecraft:stone",
        "data": 3
      },
      {
        "item": "minecraft:cobblestone"
      }
    ],
    "result": {
      "item": "minecraft:stone",
      "data": 5,
      "count": 2
    }
  }
}

另一个适用于制图台配方的例子:

{
  "format_version": "1.12",
  "minecraft:recipe_shapeless": {
    "description": {
    "identifier": "minecraft:cartography_table_locator_map"
    },

    
    "tags": [ "cartography_table" ],
    "ingredients": [
      {
        "item": "minecraft:paper"
      },
      {
        "item": "minecraft:compass"
      }
    ],
    "result": {
      "item": "minecraft:emptymap",
      "data": 2
    }
  }
} 

另一个适用于切石机配方的例子:

{
  "format_version": "1.12",
  "minecraft:recipe_shapeless": {
    "description": {
    "identifier": "minecraft:stonecutter_dark_prismarine_stairs"
    },

    
    "tags": [ "stonecutter" ],
    "priority": 1,
    "ingredients": [
      {
        "item": "minecraft:prismarine",
        "data": 1
      }
    ],
    "result": {
      "item": "minecraft:dark_prismarine_stairs",
      "data": 0,
      "count": 1
    }
  }
  
} 

minecraft:recipe_furnace

用一种食物来制作另一种食物

类型 名称 默认值 描述
字符串 tags 熔炉,烟熏炉,营火,高炉
字符串 input 用于烧炼的物品
字符串 output 烧炼后得到的物品
代码举例
例子
{
  "format_version": "1.12",
  "minecraft:recipe_furnace": {
    "description": {
    "identifier": "food:hotdog"
    },

    
    "tags": ["furnace"],
    "input": "food:hotdog",
    "output": "food:cooked_hotdog"
  }
  
}

另一个带有多个标签的例子:

{
  "format_version": "1.12",
  "minecraft:recipe_furnace": {
    "description": {
    "identifier": "minecraft:furnace_fish"
    },

    
    "tags": ["furnace", "smoker", "campfire"],
    "input": "minecraft:fish",
    "output": "minecraft:cooked_fish"
  }
  
}

minecraft:recipe_brewing_mix

用一种药水来酿造另一种药水

类型 名称 默认值 描述
字符串 tags 酿造台
字符串 input 用于酿造的物品
字符串 reagent 酿造药水所需要的物品
字符串 output 酿造后得到的物品
代码实例
{
  "format_version": "1.12",
  "minecraft:recipe_brewing_mix": {
    "description": {
      "identifier": "minecraft:brew_fireresistance_redstone"
    },

    "tags": [ "brewing_stand" ],

    "input": "minecraft:potion_type:fire_resistance",
    "reagent": "minecraft:redstone",
    "output": "minecraft:potion_type:long_fire_resistance"
  }

}
 

minecraft:recipe_brewing_container

改变一种药水的容器(可饮用的药水、喷溅药水、滞留药水)

类型 名称 默认值 描述
字符串 tags 酿造台
字符串 input 用于酿造的物品
字符串 reagent 酿造药水所需要的物品
字符串 output 酿造后得到的物品
代码实例
{
  "format_version": "1.12",
  "minecraft:recipe_brewing_container": {
    "description": {
      "identifier": "minecraft:brew_potion_sulphur"
    },

    "tags": [ "brewing_stand" ],

    "input": "minecraft:potion",
    "reagent": "minecraft:gunpowder",
    "output": "minecraft:splash_potion"
  }

}