Last active
June 23, 2020 02:04
-
-
Save rom1504/760a01a6fd22622b9513f349aa35f3ed to your computer and use it in GitHub Desktop.
1.16-rc1 recipe types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"minecraft:crafting_shaped": { | |
"type": "minecraft:crafting_shaped", | |
"group": "stained_terracotta", | |
"pattern": [ | |
"###", | |
"#X#", | |
"###" | |
], | |
"key": { | |
"#": { | |
"item": "minecraft:terracotta" | |
}, | |
"X": { | |
"item": "minecraft:yellow_dye" | |
} | |
}, | |
"result": { | |
"item": "minecraft:yellow_terracotta", | |
"count": 8 | |
} | |
}, | |
"minecraft:crafting_shapeless": { | |
"type": "minecraft:crafting_shapeless", | |
"group": "wool", | |
"ingredients": [ | |
{ | |
"item": "minecraft:yellow_dye" | |
}, | |
{ | |
"item": "minecraft:white_wool" | |
} | |
], | |
"result": { | |
"item": "minecraft:yellow_wool" | |
} | |
}, | |
"minecraft:stonecutting": { | |
"type": "minecraft:stonecutting", | |
"ingredient": { | |
"item": "minecraft:stone" | |
}, | |
"result": "minecraft:stone_stairs", | |
"count": 1 | |
}, | |
"minecraft:crafting_special_armordye": { | |
"type": "minecraft:crafting_special_armordye" | |
}, | |
"minecraft:smelting": { | |
"type": "minecraft:smelting", | |
"ingredient": { | |
"item": "minecraft:yellow_terracotta" | |
}, | |
"result": "minecraft:yellow_glazed_terracotta", | |
"experience": 0.1, | |
"cookingtime": 200 | |
}, | |
"minecraft:campfire_cooking": { | |
"type": "minecraft:campfire_cooking", | |
"ingredient": { | |
"item": "minecraft:kelp" | |
}, | |
"result": "minecraft:dried_kelp", | |
"experience": 0.1, | |
"cookingtime": 600 | |
}, | |
"minecraft:smoking": { | |
"type": "minecraft:smoking", | |
"ingredient": { | |
"item": "minecraft:kelp" | |
}, | |
"result": "minecraft:dried_kelp", | |
"experience": 0.1, | |
"cookingtime": 100 | |
}, | |
"minecraft:crafting_special_bannerduplicate": { | |
"type": "minecraft:crafting_special_bannerduplicate" | |
}, | |
"minecraft:crafting_special_bookcloning": { | |
"type": "minecraft:crafting_special_bookcloning" | |
}, | |
"minecraft:blasting": { | |
"type": "minecraft:blasting", | |
"ingredient": { | |
"item": "minecraft:redstone_ore" | |
}, | |
"result": "minecraft:redstone", | |
"experience": 0.7, | |
"cookingtime": 100 | |
}, | |
"minecraft:crafting_special_firework_rocket": { | |
"type": "minecraft:crafting_special_firework_rocket" | |
}, | |
"minecraft:crafting_special_firework_star": { | |
"type": "minecraft:crafting_special_firework_star" | |
}, | |
"minecraft:crafting_special_firework_star_fade": { | |
"type": "minecraft:crafting_special_firework_star_fade" | |
}, | |
"minecraft:crafting_special_mapcloning": { | |
"type": "minecraft:crafting_special_mapcloning" | |
}, | |
"minecraft:crafting_special_mapextending": { | |
"type": "minecraft:crafting_special_mapextending" | |
}, | |
"minecraft:smithing": { | |
"type": "minecraft:smithing", | |
"base": { | |
"item": "minecraft:diamond_sword" | |
}, | |
"addition": { | |
"item": "minecraft:netherite_ingot" | |
}, | |
"result": { | |
"item": "minecraft:netherite_sword" | |
} | |
}, | |
"minecraft:crafting_special_repairitem": { | |
"type": "minecraft:crafting_special_repairitem" | |
}, | |
"minecraft:crafting_special_shielddecoration": { | |
"type": "minecraft:crafting_special_shielddecoration" | |
}, | |
"minecraft:crafting_special_shulkerboxcoloring": { | |
"type": "minecraft:crafting_special_shulkerboxcoloring" | |
}, | |
"minecraft:crafting_special_suspiciousstew": { | |
"type": "minecraft:crafting_special_suspiciousstew" | |
}, | |
"minecraft:crafting_special_tippedarrow": { | |
"type": "minecraft:crafting_special_tippedarrow" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
'minecraft:crafting_shaped', | |
'minecraft:crafting_shapeless', | |
'minecraft:stonecutting', | |
'minecraft:crafting_special_armordye', | |
'minecraft:smelting', | |
'minecraft:campfire_cooking', | |
'minecraft:smoking', | |
'minecraft:crafting_special_bannerduplicate', | |
'minecraft:crafting_special_bookcloning', | |
'minecraft:blasting', | |
'minecraft:crafting_special_firework_rocket', | |
'minecraft:crafting_special_firework_star', | |
'minecraft:crafting_special_firework_star_fade', | |
'minecraft:crafting_special_mapcloning', | |
'minecraft:crafting_special_mapextending', | |
'minecraft:smithing', | |
'minecraft:crafting_special_repairitem', | |
'minecraft:crafting_special_shielddecoration', | |
'minecraft:crafting_special_shulkerboxcoloring', | |
'minecraft:crafting_special_suspiciousstew', | |
'minecraft:crafting_special_tippedarrow' | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment