Explosion Outcome
The explosion outcome creates an explosion in the world.
{
"type": "lucky:explosion",
"luck": -2,
"explosion": {
"power": 6
}
}
This outcome creates a simple large explosion with a power of 6. For reference, regular Tnt has a power of 4.
{
"type": "lucky:explosion",
"luck": -2,
"explosion": {
"power": 6,
"create_fire": true,
"behavior": "wind_charge"
}
}
This outcome creates a fiery explosion that does not directly damage entities, rather launching them upwards (like a wind charge).
{
"type": "lucky:explosion",
"luck": -2,
"explosion": {
"particle": {
"type": "minecraft:sonic_boom"
},
"emitter_particle": {
"type": "minecraft:sonic_boom"
},
"sound_event": "minecraft:entity.ghast.scream"
}
}
This outcome creates a regular explosion using regular and soul fire flame particles, as well as the Ghast scream sound instead of the explosion sound.
Last updated