Examples of doExplosionA()


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

      // mod_Dragon.blockFire.blockID);
      // ((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,
View Full Code Here

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

      // mod_Dragon.blockFire.blockID);
      // ((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)))
View Full Code Here

Examples of tconstruct.world.MiningExplosion.doExplosionA()

    public void createExplosion (World world, Entity par1Entity, double par2, double par4, double par6, float par8)
    {
        Explosion explosion = new MiningExplosion(world, par1Entity, par2, par4, par6, par8);
        explosion.isFlaming = false;
        explosion.isSmoking = true;
        explosion.doExplosionA();
        explosion.doExplosionB(true);
        // return explosion;
    }

    /**
 
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.