Examples of doExplosionB()


Examples of me.ashtheking.dragons.meta.FireExplosion.doExplosionB()

      // ((BlockFireball) mod_Dragon.blockFire).spreadSource(worldObj,
      // (int) posX, (int) posY,
      // (int) posZ);
      FireExplosion explosion = new FireExplosion(worldObj, null, posX, posY, posZ, 1F);
      explosion.doExplosionA();
      explosion.doExplosionB(true);
    }

    public static void iceball(World worldObj, double posX, double posY, double posZ) {
      // worldObj.setBlock((int) posX, (int) posY, (int) posZ,
      // mod_Dragon.blockFire.blockID);
View Full Code Here

Examples of me.ashtheking.dragons.meta.IceExplosion.doExplosionB()

      // ((BlockFireball) mod_Dragon.blockFire).spreadSource(worldObj,
      // (int) posX, (int) posY,
      // (int) posZ);
      IceExplosion explosion = new IceExplosion(worldObj, null, posX, posY, posZ, 3F);
      explosion.doExplosionA();
      explosion.doExplosionB(true);
    }

    public static void firebolt(EntityLiving shooter, EntityLiving collide) {
      new Thread(new FireDamage(collide, (int) Math.min(playerLevel.get(shooter), 10)))
          .start();
View Full Code Here

Examples of net.minecraft.world.Explosion.doExplosionB()

      return;
    }

    Explosion explosion = new Explosion(world, null, x + .5, y + .5, z + .5, 3f);
    explosion.affectedBlockPositions.add(new ChunkPosition(x, y, z));
    explosion.doExplosionB(true);

    for (EntityPlayer player : (List<EntityPlayer>) world.playerEntities) {
      if (!(player instanceof EntityPlayerMP)) {
        continue;
      }
View Full Code Here

Examples of tconstruct.world.MiningExplosion.doExplosionB()

    {
        Explosion explosion = new MiningExplosion(world, par1Entity, par2, par4, par6, par8);
        explosion.isFlaming = false;
        explosion.isSmoking = true;
        explosion.doExplosionA();
        explosion.doExplosionB(true);
        // return explosion;
    }

    /**
     * (abstract) Protected helper method to write subclass entity data to NBT.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.