Creoii Mod Documentation & Wiki
Lucky Block
Lucky Block
  • Overview
  • Installing Addons
  • Creating Addons
  • Upcoming Features
  • Outcomes
    • Outcomes
    • Advancement Outcome
    • Block Outcome
    • Command Outcome
    • Difficulty Outcome
    • Effect Outcome
    • Entity Outcome
    • Explosion Outcome
    • Feature Outcome
    • Group Outcome
    • Item Outcome
    • Message Outcome
    • None Outcome
    • Particle Outcome
    • Random Outcome
    • Sound Outcome
    • Structure Outcome
  • Parameters
    • Parameters
    • Parameter Index
  • Vec Providers
    • Vec Providers
    • Vec Provider Index
  • Shapes
    • Shapes
Powered by GitBook
On this page
  1. Outcomes

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.

PreviousEntity OutcomeNextFeature Outcome

Last updated 6 months ago