Files
ngzz-mc/assets/config/recipes.json

25 lines
2.6 KiB
JSON

{
"recipes": [
{ "type": "crafting_shapeless", "ingredients": ["oak_log"], "result": { "item": "oak_planks", "count": 4 } },
{ "type": "crafting_shaped", "pattern": ["X", "X"], "key": { "X": "oak_planks" }, "result": { "item": "stick", "count": 4 } },
{ "type": "crafting_shaped", "pattern": ["XX", "XX"], "key": { "X": "oak_planks" }, "result": { "item": "crafting_table", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["X", "Y"], "key": { "X": "coal", "Y": "stick" }, "result": { "item": "torch", "count": 4 } },
{ "type": "crafting_shaped", "pattern": ["XXX", "X X", "XXX"], "key": { "X": "cobblestone" }, "result": { "item": "furnace", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["XXX", " Y ", " Y "], "key": { "X": "oak_planks", "Y": "stick" }, "result": { "item": "wooden_pickaxe", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["XXX", " Y ", " Y "], "key": { "X": "cobblestone", "Y": "stick" }, "result": { "item": "stone_pickaxe", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["XXX", " Y ", " Y "], "key": { "X": "iron_ingot", "Y": "stick" }, "result": { "item": "iron_pickaxe", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["XXX", " Y ", " Y "], "key": { "X": "diamond", "Y": "stick" }, "result": { "item": "diamond_pickaxe", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["X", "Y", "Y"], "key": { "X": "oak_planks", "Y": "stick" }, "result": { "item": "wooden_shovel", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["XX", "XY", " Y"], "key": { "X": "oak_planks", "Y": "stick" }, "result": { "item": "wooden_axe", "count": 1 } },
{ "type": "crafting_shaped", "pattern": ["XXX", "XXX", "XXX"], "key": { "X": "iron_ingot" }, "result": { "item": "iron_block", "count": 1 } },
{ "type": "crafting_shapeless", "ingredients": ["iron_block"], "result": { "item": "iron_ingot", "count": 9 } },
{ "type": "crafting_shaped", "pattern": ["XXX", "XXX", "XXX"], "key": { "X": "diamond" }, "result": { "item": "diamond_block", "count": 1 } },
{ "type": "crafting_shapeless", "ingredients": ["diamond_block"], "result": { "item": "diamond", "count": 9 } },
{ "type": "smelting", "input": "iron_ore", "result": { "item": "iron_ingot", "count": 1 } },
{ "type": "smelting", "input": "gold_ore", "result": { "item": "gold_ingot", "count": 1 } },
{ "type": "smelting", "input": "raw_iron", "result": { "item": "iron_ingot", "count": 1 } },
{ "type": "smelting", "input": "raw_gold", "result": { "item": "gold_ingot", "count": 1 } },
{ "type": "smelting", "input": "beef", "result": { "item": "beef", "count": 1 } }
]
}