提问者:小点点

为什么我在Minecraft Forge 1.16.5中的食谱不起作用?


我有编码食谱,但它们不起作用。

src/main/资源/数据/tme/食谱/roesti_from_crafting.json

    {
      "type": "minecraft:crafting_shaped",
      "pattern":
      [
        "ppp",
        "ccc",
        "pap"
      ],
      "key":
      {
        "a":
        {
          "tag": "minecraft:coal"
        },
        "p":
        {
          "item": "minecraft:potato"
        },
        "c":
        {
          "item": "tme:cheese"
        }
      },
      "result":
      {
        "item": "tme:roesti",
        "count": 1
      }
    }

有人知道我做错了什么吗?


共1个答案

匿名用户

尝试用“group”:MOD\u ID启动json。示例:

{ 
"group": "modid",
"type": "minecraft:crafting_shaped",
"pattern": [
"AA",
"AS",
" S"
],
"key": {
  "S": {
    "item": "minecraft:stick"
    },
  "A": {
    "item": "modid:cool_ingot"
    }
  },
"result": {
  "item": "modid:cool_axe",
  "count": 1
  }
}

我使用这个模板制作食谱。

文件名也错误。它应该与项目名称相同。所以这个模板文件的名称应该是/path/to/src/main/resources/data/modid/recipes/cool\u axe。json