mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
87 lines
2.7 KiB
Java
87 lines
2.7 KiB
Java
package com.hbm.entity.mob.botprime;
|
|
|
|
import com.hbm.entity.mob.EntityAINearestAttackableTargetNT;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.MathHelper;
|
|
import net.minecraft.world.World;
|
|
|
|
public class EntityBOTPrimeBody extends EntityBOTPrimeBase {
|
|
|
|
private WormMovementBodyNT movement = new WormMovementBodyNT(this);
|
|
|
|
public EntityBOTPrimeBody(World world) {
|
|
super(world);
|
|
this.bodySpeed = 0.6D;
|
|
this.rangeForParts = 70.0D;
|
|
this.segmentDistance = 3.5D;
|
|
this.maxBodySpeed = 1.4D;
|
|
this.targetTasks.addTask(1, new EntityAINearestAttackableTargetNT(this, EntityLivingBase.class, 0, true, false, this.selector, 128.0D));
|
|
}
|
|
|
|
@Override
|
|
protected void entityInit() {
|
|
super.entityInit();
|
|
this.dataWatcher.addObject(17, (byte)0);
|
|
}
|
|
|
|
@Override
|
|
public float getAttackStrength(Entity target) {
|
|
|
|
if(target instanceof EntityLivingBase) {
|
|
return ((EntityLivingBase) target).getHealth() * 0.75F;
|
|
}
|
|
|
|
return 100;
|
|
}
|
|
|
|
@Override
|
|
protected void updateAITasks() {
|
|
this.movement.updateMovement();
|
|
|
|
if((this.followed != null) && (getPartNumber() == 0)) {
|
|
//this.dataWatcher.updateObject(17, Byte.valueOf((byte) (((EntityBallsOTronHead) this.followed).isArmored() ? 1 : 0)));
|
|
} else if(this.targetedEntity != null) {
|
|
this.dataWatcher.updateObject(17, Byte.valueOf(this.targetedEntity.getDataWatcher().getWatchableObjectByte(17)));
|
|
}
|
|
if(this.didCheck) {
|
|
if(this.targetedEntity == null || !this.targetedEntity.isEntityAlive()) {
|
|
setHealth(getHealth() - 1999.0F);
|
|
}
|
|
if(((this.followed == null) || (!this.followed.isEntityAlive())) && (this.rand.nextInt(60) == 0)) {
|
|
this.worldObj.createExplosion(this, this.posX, this.posY, this.posZ, 2.0F, false);
|
|
}
|
|
}
|
|
if((this.followed != null) && (getAttackTarget() != null)) {
|
|
if(canEntityBeSeenThroughNonSolids(getAttackTarget())) {
|
|
this.attackCounter += 1;
|
|
if(this.attackCounter == 10) {
|
|
//useLaser(o(), false);
|
|
|
|
this.attackCounter = -20;
|
|
}
|
|
} else if(this.attackCounter > 0) {
|
|
this.attackCounter -= 1;
|
|
}
|
|
} else if(this.attackCounter > 0) {
|
|
this.attackCounter -= 1;
|
|
}
|
|
|
|
float f3 = MathHelper.sqrt_double(motionX * motionX + motionZ * motionZ);
|
|
this.prevRotationYaw = this.rotationYaw = (float)(Math.atan2(motionX, motionZ) * 180.0D / Math.PI);
|
|
this.prevRotationPitch = this.rotationPitch = (float)(Math.atan2(motionY, f3) * 180.0D / Math.PI);
|
|
}
|
|
|
|
public void writeEntityToNBT(NBTTagCompound nbt) {
|
|
super.writeEntityToNBT(nbt);
|
|
nbt.setInteger("partID", this.getPartNumber());
|
|
}
|
|
|
|
public void readEntityFromNBT(NBTTagCompound nbt) {
|
|
super.readEntityFromNBT(nbt);
|
|
setPartNumber(nbt.getInteger("partID"));
|
|
}
|
|
}
|