Block Modification
Modifying existing blocks
You can change properties of existing blocks:
BlockEvents.modification(event => {
event.modify('minecraft:stone', block => {
block.destroySpeed = 0.1
block.hasCollision = false
})
})
You can find full list of MutableBlock properties here.