Heya! I'm trying to make a crafting recipe that lets you make a healing potion using the crafting table, but I can't seem to figure out the nbt data for the actual healing potion! Here's what I have so far:
{
"type": "crafting_shaped",
"pattern": [
"AAA",
" B ",
" C "
],
"key": {
"A": {
"item": "minecraft:sugar"
},
"B": {
"item": "minecraft:apple"
},
"C": {
"item": "minecraft:potion",
"nbt": {
"Potion": "minecraft:water"
}
}
},
"result": {
"item": "minecraft:potion",
"nbt": {
"Potion": "minecraft:healing"
}
}
}
"Potion": "minecraft:water" gives you a regular water bottle, and that's about all I know. Any idea how to make it a healing potion? “Minecraft:healing” doesn’t work.