package com.hbm.entity.grenade; import com.hbm.explosion.ExplosionLarge; import com.hbm.items.ModItems; import com.hbm.items.weapon.ItemGrenade; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.world.World; public class EntityGrenadeMIRV extends EntityGrenadeBouncyBase { public EntityGrenadeMIRV(World p_i1773_1_) { super(p_i1773_1_); } public EntityGrenadeMIRV(World p_i1774_1_, EntityLivingBase p_i1774_2_) { super(p_i1774_1_, p_i1774_2_); } public EntityGrenadeMIRV(World p_i1775_1_, double p_i1775_2_, double p_i1775_4_, double p_i1775_6_) { super(p_i1775_1_, p_i1775_2_, p_i1775_4_, p_i1775_6_); } @Override public void explode() { if (!this.worldObj.isRemote) { this.setDead(); for(int i = 0; i < 8; i++) { EntityGrenadeSmart grenade = new EntityGrenadeSmart(worldObj); grenade.posX = posX; grenade.posY = posY; grenade.posZ = posZ; grenade.motionX = motionX + rand.nextGaussian() * 0.25D; grenade.motionY = motionY + rand.nextGaussian() * 0.25D; grenade.motionZ = motionZ + rand.nextGaussian() * 0.25D; grenade.ticksExisted = 10; worldObj.spawnEntityInWorld(grenade); } } } @Override protected int getMaxTimer() { return ItemGrenade.getFuseTicks(ModItems.grenade_mirv); } @Override protected double getBounceMod() { return 0.25D; } }