114 lines
4 KiB
Java
114 lines
4 KiB
Java
package WayofTime.alchemicalWizardry.common.entity.projectile;
|
|
|
|
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
|
|
import WayofTime.alchemicalWizardry.common.PacketHandler;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.entity.effect.EntityLightningBolt;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.util.EnumMovingObjectType;
|
|
import net.minecraft.util.MovingObjectPosition;
|
|
import net.minecraft.world.World;
|
|
import cpw.mods.fml.common.network.PacketDispatcher;
|
|
|
|
public class WaterProjectile extends EnergyBlastProjectile
|
|
{
|
|
public WaterProjectile(World par1World)
|
|
{
|
|
super(par1World);
|
|
}
|
|
|
|
public WaterProjectile(World par1World, double par2, double par4, double par6)
|
|
{
|
|
super(par1World, par2, par4, par6);
|
|
}
|
|
|
|
public WaterProjectile(World par1World, EntityLivingBase par2EntityPlayer, int damage)
|
|
{
|
|
super(par1World, par2EntityPlayer, damage);
|
|
}
|
|
|
|
public WaterProjectile(World par1World, EntityLivingBase par2EntityPlayer, int damage, int maxTicksInAir, double posX, double posY, double posZ, float rotationYaw, float rotationPitch)
|
|
{
|
|
super(par1World, par2EntityPlayer, damage, maxTicksInAir, posX, posY, posZ, rotationYaw, rotationPitch);
|
|
}
|
|
|
|
@Override
|
|
public DamageSource getDamageSource()
|
|
{
|
|
return DamageSource.causeMobDamage(shootingEntity);
|
|
}
|
|
|
|
@Override
|
|
public void onImpact(MovingObjectPosition mop)
|
|
{
|
|
if (mop.typeOfHit == EnumMovingObjectType.ENTITY && mop.entityHit != null)
|
|
{
|
|
if (mop.entityHit == shootingEntity)
|
|
{
|
|
return;
|
|
}
|
|
|
|
this.onImpact(mop.entityHit);
|
|
}
|
|
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
|
|
{
|
|
}
|
|
|
|
this.setDead();
|
|
}
|
|
|
|
@Override
|
|
public void onImpact(Entity mop)
|
|
{
|
|
if (mop == shootingEntity && ticksInAir > 3)
|
|
{
|
|
//shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1);
|
|
this.setDead();
|
|
}
|
|
else
|
|
{
|
|
//doDamage(8 + d6(), mop);
|
|
if (mop instanceof EntityLivingBase)
|
|
{
|
|
//((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2));
|
|
//((EntityLivingBase)mop).setFire(50);
|
|
//((EntityLivingBase)mop).setRevengeTarget(shootingEntity);
|
|
// if(((EntityLivingBase)mop).isEntityUndead())
|
|
// {
|
|
// doDamage((int)(projectileDamage*2),mop);
|
|
// }else
|
|
// {
|
|
// doDamage(projectileDamage, mop);
|
|
// }
|
|
if (((EntityLivingBase)mop).isImmuneToFire())
|
|
{
|
|
doDamage(projectileDamage * 2, mop);
|
|
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 80, 1));
|
|
}
|
|
else
|
|
{
|
|
doDamage(projectileDamage, mop);
|
|
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 80, 0));
|
|
}
|
|
|
|
//((EntityLivingBase)mop).setVelocity(this.motionX*2, ((EntityLivingBase)mop).motionY+1.5, this.motionZ*2);
|
|
}
|
|
|
|
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
|
|
}
|
|
|
|
spawnHitParticles("magicCrit", 8);
|
|
this.setDead();
|
|
}
|
|
|
|
@Override
|
|
public void doFiringParticles()
|
|
{
|
|
PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 30, worldObj.provider.dimensionId, PacketHandler.getCustomParticlePacket("mobSpellAmbient", posX + smallGauss(0.1D), posY + smallGauss(0.1D), posZ + smallGauss(0.1D), 0.5D, 0.5D, 0.5D));
|
|
PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 30, worldObj.provider.dimensionId, PacketHandler.getCustomParticlePacket("mobSpell", posX, posY, posZ, 0.0F, 0.410F, 1.0F));
|
|
}
|
|
}
|