Right Click On Block Transforms Block - benbenlaw/InWorldRecipes GitHub Wiki
Right Click On Block Transforms Block
Right clicking with an item converts a block in world. Example JSON below shows right clicking a stone block with a stone sword to create gravel.
{
"type": "inworldrecipes:right_click_on_block_transforms_block",
"held_item":
{
"item": "minecraft:stone_sword"
}
,
"target_block": [
{
"item": "minecraft:stone"
}
],
"damage_held_item": true,
"consume_held_item": false,
"new_block": "minecraft:gravel"
}