⭐ BetterExplosives ⭐ – Custom TNTs, Creeper Eggs ✅ Explosive Abilities ✅ 18 Default Explosives ✅ icon

⭐ BetterExplosives ⭐ – Custom TNTs, Creeper Eggs ✅ Explosive Abilities ✅ 18 Default Explosives ✅ -----

Make unlimited custom explosives that are unique, or as seen on popular servers.



1756258712661vu2nqrhh.jpg


BetterExplosives
enhances Minecraft by introducing unique TNT types and Creeper eggs, each with special abilities. From silent explosions to tactical spawner raids, this plugin gives you full control over how destruction works on your server.

Not only does the plugin come with a wide selection of pre-made TNTs and Creepers, but you can also configure your own. Each TNT can have one or multiple abilities combined to create powerful custom effects.

There are 11 custom creeper eggs and 7 custom tnts.

NOTE: This plugin requires SilkSpawners for the Lucky TNT and it requires ProtocolLib for the Silent TNT on servers 1.14 and below. Make sure you use the latest versions of these.

If you need to contact me, add me on Discord: BourneDev#4606


Custom TNTs
Instant TNT
Unleashes an instant explosion.
Creates an instant explosion at the point where it is ignited.

Lethal TNT
A more dense, dangerous explosion.
Creates 4x extra TNT explosions at the same location as the original.

Tactical TNT
Explosion only affects mob spawners.
No blocks will be affected by this explosion except for Monster Spawners.

Gigantic TNT
Explodes in a much larger radius.
Spawns 2 extra explosions at y+3 and y-3 of TNT, and another 2 explosions at either x+3, z+3 or x-3, z-3.

Mimic TNT
Repeats the same explosion many times.
Spawns a TNT explosion at the same location every 5 seconds for 15 seconds total (3 explosions).

Lucky TNT
Increases chances of spawner drops.
75% chance of a spawner dropping from explosion.

Silent TNT
Explodes without a sound.
Creates a silent explosion at the point where it explodes.

Custom Creeper Eggs:

Gigantic Creeper
Explodes in a much larger radius.

Lucky Creeper
Increases chances of spawner drops.

Tactical Creeper
Explosion only affects mob spawners.

Raid Creeper
Lucky + Tactical, with a 100% mob spawner drop rate.

Throwable Creeper
This compacted Creeper can be launched for precise explosions on valuable targets.
Effects:
  • Thrown like an egg, this Creeper will instantly explode where it lands.
Invincible Creeper
Enchanted to withstand any damage to reach its destination by any means.
Effects:
  • Creeper will never die by any type of damage.
Levitating Creeper
Enchanted to float across everything below it.
Effects:
  • Creeper will not fall to a lower Y level at any point.
Silent Creeper
This Creeper creates a silent explosion to provide maximum stealth.
Effects:
  • Creeper will create an explosion that cannot be heard.
Charged Creeper
Amplified by lightning, this compact Creeper creates an explosion that deals extensive damage.
Effects:
  • This Creeper will create a charged explosion.
Throwable Charged Creeper
Amplified by lightning, this compact Creeper can be thrown to deal extensive damage where it lands.
Effects:
  • Thrown like an egg, this Creeper will have a charged instant explosion where it lands.
Instant Creeper
Ready to explode the instant it is ignited for split-second situations.
Effects:
  • When ignited, it will explode instantly.

Commands
/givecustomtnt <tnt_id> [amount]
Gives a custom TNT item.
Permission: betterexplosions.givetnt

/givecustomcreeperegg <egg_id> [amount]
Gives a custom Creeper Egg item.
Permission: betterexplosions.givecustomcreeperegg

Permissions
betterexplosions.givetnt
Allows players to use the /givetnt command.
Default: OP

betterexplosions.givecustomcreeperegg
Allows players to use the /givecustomcreeperegg command.
Default: OP


Default config.yml:

Code (Text):
# config.yml
# This file defines your custom TNT types and their properties.

custom_tnts:
  # Example custom TNT: Lethal TNT
  instant_tnt:
    enabled: true
    item_name: "&4Instant TNT"
    item_lore:
      - "&4&oUnleashes an instant explosion"
      - " "
      - "&7Creates an instant explosion at the point"
      - "&7where it is ignited."
    abilities:
      - INSTANT_EXPLOSION
    explosion_power: 4.0
    extra_explosions: 4
  lethal_tnt:
    enabled: true
    item_name: "&4Lethal TNT"
    item_lore:
      - "&4&oA more dense, dangerous explosion."
      - " "
      - "&7Creates 4x extra TNT explosions at"
      - "&7the same location as the original."
    abilities:
      - EXTRA_EXPLOSIONS
    explosion_power: 4.0
    extra_explosions: 4

  # New custom TNT: Tactical TNT
  tactical_tnt:
    enabled: true
    item_name: "&9Tactical TNT"
    item_lore:
      - "&9&oExplosion only affects mob spawners."
      - " "
      - "&7No blocks will be affected by"
      - "&7this explosion except for."
      - "&7Monster Spawners."
    abilities:
      - TACTICAL
    explosion_power: 3.0
    tactical_affected_blocks:
      - MOB_SPAWNER

  # New custom TNT: Gigantic TNT
  gigantic_tnt:
    enabled: true
    item_name: "&bGigantic TNT"
    item_lore:
      - "&b&oExplodes in a much larger radius."
      - " "
      - "&7Spawns 2 extra explosions at"
      - "&7y+3 and y-3 of TNT, and another"
      - "&72 explosions at either x+3, z+3 or"
      - "&7x-3 and z-3"
    abilities:
      - EXPLOSION_RADIUS
      - GIGANTIC
    explosion_power: 8.0
    gigantic_y_offset: 3
    gigantic_xz_offset: 3
    gigantic_random_xz_offset: true

  # New custom TNT: Mimic TNT
  mimic_tnt:
    enabled: true
    item_name: "&aMimic TNT"
    item_lore:
      - "&a&oRepeats the same explosion many times."
      - " "
      - "&7Spawns a TNT explosion at"
      - "&7the same location ever 5s"
      - "&7for 15s total, or 3 explosions."
    abilities:
      - MIMIC
    explosion_power: 4.0
    mimic_delay_seconds: 5
    mimic_repetitions: 3

  # New custom TNT: Lucky TNT
  lucky_tnt:
    enabled: true
    item_name: "&eLucky TNT"
    item_lore:
      - "&e&oIncreases chances of spawner drops."
      - " "
      - "&775% chance of a spawner"
      - "&7dropping from explosion."
    abilities:
      - LUCKY # New ability: special spawner drops
    explosion_power: 4.0 # Radius for spawner checking
    lucky_spawner_drop_chance: 75.0 # All spawners have 75% chance to drop

  # New custom TNT: Silent TNT
  silent_tnt:
    enabled: true
    item_name: "&fSilent TNT"
    item_lore:
      - "&f&oExplodes without a sound."
      - " "
      - "&7Creates a silent explosion at the point"
      - "&7where it explodes."
    abilities:
      - SILENT_EXPLOSION # New ability: makes explosion silent
    explosion_power: 4.0 # Standard explosion power

# New section for Custom Creeper Eggs
custom_creeper_eggs:
  # Example custom Creeper Egg: Gigantic Creeper Egg
  gigantic_creeper_egg:
    enabled: true
    item_name: "&bGigantic Creeper"
    item_lore:
      - "&7&oExplodes in a much larger radius."
    abilities:
      - GIGANTIC_EXPLOSION
    gigantic_explosion_power: 10.0 # The explosion power for the spawned creeper

  # New custom Creeper Egg: Lucky Creeper Egg
  lucky_creeper_egg:
    enabled: true
    item_name: "&eLucky Creeper"
    item_lore:
      - "&7&oIncreases chances of spawner drops."
    abilities:
      - LUCKY_SPAWNER_DROP
    lucky_spawner_drop_chance: 75.0 # All spawners have 75% chance to drop

  # New custom Creeper Egg: Tactical Creeper Egg
  tactical_creeper_egg:
    enabled: true
    item_name: "&9Tactical Creeper"
    item_lore:
      - "&7&oExplosion only affects mob spawners."
    abilities:
      - TACTICAL_EXPLOSION
    tactical_affected_blocks:
      - MOB_SPAWNER
    explosion_power: 2.0

  # New custom Creeper Egg: Lucky Creeper Egg
  raid_creeper_egg:
    enabled: true
    item_name: "&4Raid Creeper"
    item_lore:
      - "&7&oLucky + Tactical, with a"
      - "&7&o100% mob spawner drop rate."
    abilities:
      - LUCKY_SPAWNER_DROP
      - TACTICAL_EXPLOSION
    tactical_affected_blocks:
      - MOB_SPAWNER
    lucky_spawner_drop_chance: 100.0 # All spawners have 100% chance to drop

  # New custom Creeper Egg: Throwable Creeper Egg
  throwable_creeper_egg:
    enabled: true
    item_name: "&e&lThrowable Creeper"
    item_lore:
      - "&7This &7&nCompacted&7 Creeper is able to be &7&nLaunched"
      - "&7for &7&nPrecise Explosions&7 on &7&oValuable Targets&7!"
      - " "
      - "&eEffects:"
      - "&e&l* &7Thrown like an Egg, this Creeper will Instantly"
      - "&e&l* &7Explode where it Lands"
    abilities:
      - THROWABLE_CREEPER # New ability for direct throwing and immediate explosion
    throw_velocity: 2.0 # How fast the creeper is thrown (e.g., 1.0 is a gentle toss, 3.0 is a strong launch)
    explosion_power: 4.0 # Base explosion power of the thrown creeper

  # New custom Creeper Egg: Invincible Creeper Egg
  invincible_creeper_egg:
    enabled: true
    item_name: "&e&lInvincible Creeper"
    item_lore:
      - "&7Enchanted to Withstand any &7&nDamage&7"
      - "&7to reach its destination &7&nBy Any Means&7!"
      - " "
      - "&eEffects:"
      - "&e&l* &7Creeper will never die"
      - "&e&l* &7by any type of damage."
    abilities:
      - INVINCIBLE_CREEPER # New ability: makes creeper invincible

  # New custom Creeper Egg: Levitating Creeper Egg
  levitating_creeper_egg:
    enabled: true
    item_name: "&e&lLevitating Creeper"
    item_lore:
      - "&7Enchanted to &7&nFloat&7 across"
      - "&7everything that is &7&nBelow&7 it!"
      - " "
      - "&eEffects:"
      - "&e&l* &7Creeper will not fall to a lower"
      - "&e&l* &7Y Level at any point."
    abilities:
      - LEVITATING_CREEPER # New ability: keeps creeper at fixed Y-level (spawn height)

  # New custom Creeper Egg: Silent Creeper Egg
  silent_creeper_egg:
    enabled: true
    item_name: "&e&lSilent Creeper"
    item_lore:
      - "&7This Creeper creates a &7&nSilent Explosion&7"
      - "&7to provide &7&nMaximum Stealth&7 against even the most"
      - "&7aware of Targets&7!"
      - " "
      - "&eEffects:"
      - "&e&l* &7Creeper will create an explosion"
      - "&e&l* &7that cannot be heard."
    abilities:
      - SILENT_EXPLOSION # New ability: makes explosion silent
  # Charged Creeper Egg
  charged_creeper_egg:
    enabled: true
    item_material: CREEPER_SPAWN_EGG
    item_name: "&e&lCharged Creeper"
    item_lore:
      - "&7Amplified by &7&nLightning&7, this &7&nCompact&7 Creeper can"
      - "&7will create an &7&nExplosion&7 that deals &7&nExtensive Damage&7!"
      - " "
      - "&eEffects:"
      - "&e&l* &7This Creeper will create a Charged Explosion"
    abilities:
      - CHARGED_CREEPER # New ability: makes creeper charged

  # Throwable Charged Creeper Egg
  throwable_charged_creeper_egg:
    enabled: true
    item_material: CREEPER_SPAWN_EGG
    item_name: "&e&lThrowable Charged Creeper"
    item_lore:
      - "&7Amplified by &7&nLightning&7, this &7&nCompact&7 Creeper can"
      - "&7be &7&oThrown&7 to deal &7&nExtensive Damage&7 where it Lands!"
      - " "
      - "&eEffects:"
      - "&e&l* &7Thrown like an Egg, this Creeper will have a"
      - "&e&l* &7Charged Instant Explosion where it Lands."
    abilities:
      - CHARGED_CREEPER # Makes the creeper charged
      - THROWABLE_CREEPER # Makes the creeper throwable
    throw_velocity: 2.5 # Slightly faster throw
    explosion_power: 5.0 # Slightly stronger explosion

  # Instant Creeper Egg
  instant_creeper_egg:
    enabled: true
    item_material: CREEPER_SPAWN_EGG
    item_name: "&e&lInstant Creeper"
    item_lore:
      - "&7Ready to Explode the &7&nInstant&7 it is"
      - "&7&nIgnited&7 for &7&nSplit Second&7 situations!"
      - " "
      - "&eEffects:"
      - "&e&l* &7When ignited, it will Explode Instantly"
    abilities:
      - INSTANT_EXPLOSION # Causes the creeper to explode instantly when ignited.
How to Configure a Custom TNT/Custom Creeper Egg
Inside the config.yml, you can define TNT types under custom_tnts or custom_creeper_eggs. Each TNT has:

  • item_name → The display name of the TNT item.

  • item_lore → The description shown when hovering over the item.

  • abilities → A list of abilities this TNT will have.

  • explosion_power → The strength of the explosion (similar to default TNT = 4.0).

  • Optional extra settings depending on the abilities (like offsets, repetitions, drop chances, etc.).
Example:

Code (Text):
my_custom_tnt:
  enabled: true
  item_name: "&6My Custom TNT"
  item_lore:
   - "&7&oThis TNT has multiple powers!"
  abilities:
   - SILENT_EXPLOSION
   - LUCKY
  explosion_power: 5.0
  lucky_spawner_drop_chance: 50.0
This example creates a TNT that explodes silently and has a 50% chance to drop a spawner.

TNT Abilities
  • INSTANT_EXPLOSION → Explodes instantly when ignited.

  • EXTRA_EXPLOSIONS → Creates multiple explosions at the same location.

  • TACTICAL → Explosion only affects specific block types (such as mob spawners).

  • EXPLOSION_RADIUS → Alters the explosion radius (used with Gigantic TNT).

  • GIGANTIC → Creates extra explosions at offsets around the original blast.

  • MIMIC → Repeats the explosion multiple times with delays.

  • LUCKY → Increases chance for spawners to drop.

  • SILENT_EXPLOSION → Creates an explosion with no sound.
Creeper Abilities
  • GIGANTIC_EXPLOSION → Larger explosion radius.

  • LUCKY_SPAWNER_DROP → Increases chance of mob spawner drops.

  • TACTICAL_EXPLOSION → Explosion only affects spawners.

  • THROWABLE_CREEPER → Can be thrown like an egg, exploding on impact.

  • INVINCIBLE_CREEPER → Cannot die from any type of damage.

  • LEVITATING_CREEPER → Floats and does not fall below its Y-level.

  • SILENT_EXPLOSION → Silent explosion (no sound).

  • CHARGED_CREEPER → Spawns as a charged creeper with amplified damage.

  • INSTANT_EXPLOSION → Explodes instantly when ignited.
Resource Information
Author:
----------
Total Downloads: 18
First Release: Aug 27, 2025
Last Update: Aug 27, 2025
Category: ---------------
All-Time Rating:
0 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings