Minecraft – How do i make Tnt Have more explosion damage in minecraft

minecraft-java-edition

I know how to make it longer with fuse but is there a way to make it more powerful?

Best Answer

TNT's power cannot be changed in vanilla Minecraft. When TNT explodes the explosion damage will not stack with the explosion damage of other explosives exploding at the same time. Also there is no ExplosionRadius or ExplosionPower NBT tags for primed TNT. If you are a map maker and want more powerful TNT explosions, it can be done by replacing exploding primed TNT with creepers with a set explosion radius with 0 fuse.

More Power In TNT (Creeper) Via command blocks:

Setup:

/scoreboard objectives add noFuse dummy

Fill Clock:

/scoreboard players set @e[type=PrimedTnt] noFuse 1 {Fuse:0} //You can add more restrictions to the selector to only power up certain tnt
/execute @e[type=PrimedTnt,score_noFuse_min=1] summon Creeper ~ ~-1 ~ {Fuse:0,ExplosionRadius:<Explosion Radius>, ActiveEffects:[{id:14,Amplifier:1,Duration:10,ShowParticles:0}]}
/kill @e[type=PrimedTnt,score_noFuse_min=1]