62 lines
1.7 KiB
Java
62 lines
1.7 KiB
Java
package WayofTime.bloodmagic.entity.projectile;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.projectile.EntityArrow;
|
|
import net.minecraft.init.Items;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.world.World;
|
|
import WayofTime.bloodmagic.api.soul.EnumDemonWillType;
|
|
import WayofTime.bloodmagic.api.soul.PlayerDemonWillHandler;
|
|
|
|
public class EntitySentientArrow extends EntityArrow
|
|
{
|
|
public double reimbursedAmountOnHit = 0;
|
|
|
|
public EntitySentientArrow(World worldIn)
|
|
{
|
|
super(worldIn);
|
|
}
|
|
|
|
public EntitySentientArrow(World worldIn, double x, double y, double z)
|
|
{
|
|
super(worldIn, x, y, z);
|
|
}
|
|
|
|
public EntitySentientArrow(World worldIn, EntityLivingBase shooter, double reimbursement)
|
|
{
|
|
this(worldIn, shooter.posX, shooter.posY, shooter.posZ);
|
|
this.reimbursedAmountOnHit = reimbursement;
|
|
}
|
|
|
|
public void reimbursePlayer()
|
|
{
|
|
if (this.shootingEntity instanceof EntityPlayer)
|
|
{
|
|
PlayerDemonWillHandler.addDemonWill(EnumDemonWillType.DEFAULT, (EntityPlayer) this.shootingEntity, reimbursedAmountOnHit);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void writeEntityToNBT(NBTTagCompound tag)
|
|
{
|
|
super.writeEntityToNBT(tag);
|
|
|
|
tag.setDouble("reimbursement", reimbursedAmountOnHit);
|
|
}
|
|
|
|
@Override
|
|
public void readEntityFromNBT(NBTTagCompound tag)
|
|
{
|
|
super.readEntityFromNBT(tag);
|
|
|
|
reimbursedAmountOnHit = tag.getDouble("reimbursement");
|
|
}
|
|
|
|
@Override
|
|
protected ItemStack getArrowStack()
|
|
{
|
|
return new ItemStack(Items.arrow);
|
|
}
|
|
}
|