mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
70 lines
1.8 KiB
Java
70 lines
1.8 KiB
Java
package com.hbm.entity.grenade;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.entity.effect.EntityVortex;
|
|
import com.hbm.entity.particle.EntityDSmokeFX;
|
|
import com.hbm.items.ModItems;
|
|
import com.hbm.items.weapon.ItemGrenade;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
import net.minecraft.world.World;
|
|
|
|
public class EntityGrenadeIFNull extends EntityGrenadeBouncyBase {
|
|
|
|
public EntityGrenadeIFNull(World p_i1773_1_)
|
|
{
|
|
super(p_i1773_1_);
|
|
}
|
|
|
|
public EntityGrenadeIFNull(World p_i1774_1_, EntityLivingBase p_i1774_2_)
|
|
{
|
|
super(p_i1774_1_, p_i1774_2_);
|
|
}
|
|
|
|
public EntityGrenadeIFNull(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 a = -3; a <= 3; a++)
|
|
for(int b = -3; b <= 3; b++)
|
|
for(int c = -3; c <= 3; c++)
|
|
worldObj.setBlockToAir((int)posX + a, (int)posY + b, (int)posZ + c);
|
|
|
|
List list = worldObj.getEntitiesWithinAABBExcludingEntity(this, AxisAlignedBB.getBoundingBox((int)posX + 0.5 - 3, (int)posY + 0.5 - 3, (int)posZ + 0.5 - 3, (int)posX + 0.5 + 3, (int)posY + 0.5 + 3, (int)posZ + 0.5 + 3));
|
|
|
|
for(Object o : list) {
|
|
if(o instanceof EntityLivingBase) {
|
|
EntityLivingBase e = (EntityLivingBase)o;
|
|
|
|
e.setHealth(0);
|
|
} else if(o instanceof Entity) {
|
|
Entity e = (Entity)o;
|
|
|
|
e.setDead();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int getMaxTimer() {
|
|
return ItemGrenade.getFuseTicks(ModItems.grenade_if_null);
|
|
}
|
|
|
|
@Override
|
|
protected double getBounceMod() {
|
|
return 0.25D;
|
|
}
|
|
}
|