-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Starman edited this page Jul 10, 2026
·
7 revisions
Welcome to the Create: Cannon Destroying Block wiki!
You can use the block-breaking type by simply specifying cdb:break_block as the type in the on_block_hit object.
"on_block_hit": {
"type": "cdb:break_block",
"tag": "cdb:breakable_by_cannon"
}
And yes! This object now supports tags for convenience!
1.0.1 (Future update)
You can specify the break_steps field in the on_block_hit object so that the block breaks only after a certain number of hits (valid range: 1–10, where 1 means the block breaks instantly); if the field is not specified, the block will always break instantly.
"on_block_hit": {
"type": "cdb:break_block",
"break_steps": 5,
"tag": "cdb:breakable_by_cannon"
}
Welcome to the Create: Cannon Destroying Block wiki!