70 lines
2 KiB
Java
70 lines
2 KiB
Java
package net.minecraft.world.entity.boss.enderdragon.phases;
|
|
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.core.particles.ParticleTypes;
|
|
import net.minecraft.server.level.ServerLevel;
|
|
import net.minecraft.world.entity.boss.enderdragon.EnderDragon;
|
|
import net.minecraft.world.level.levelgen.Heightmap.Types;
|
|
import net.minecraft.world.level.levelgen.feature.EndPodiumFeature;
|
|
import net.minecraft.world.phys.Vec3;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class DragonDeathPhase extends AbstractDragonPhaseInstance {
|
|
@Nullable
|
|
private Vec3 targetLocation;
|
|
private int time;
|
|
|
|
public DragonDeathPhase(EnderDragon enderDragon) {
|
|
super(enderDragon);
|
|
}
|
|
|
|
@Override
|
|
public void doClientTick() {
|
|
if (this.time++ % 10 == 0) {
|
|
float f = (this.dragon.getRandom().nextFloat() - 0.5F) * 8.0F;
|
|
float g = (this.dragon.getRandom().nextFloat() - 0.5F) * 4.0F;
|
|
float h = (this.dragon.getRandom().nextFloat() - 0.5F) * 8.0F;
|
|
this.dragon
|
|
.level()
|
|
.addParticle(ParticleTypes.EXPLOSION_EMITTER, this.dragon.getX() + f, this.dragon.getY() + 2.0 + g, this.dragon.getZ() + h, 0.0, 0.0, 0.0);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void doServerTick(ServerLevel level) {
|
|
this.time++;
|
|
if (this.targetLocation == null) {
|
|
BlockPos blockPos = level.getHeightmapPos(Types.MOTION_BLOCKING, EndPodiumFeature.getLocation(this.dragon.getFightOrigin()));
|
|
this.targetLocation = Vec3.atBottomCenterOf(blockPos);
|
|
}
|
|
|
|
double d = this.targetLocation.distanceToSqr(this.dragon.getX(), this.dragon.getY(), this.dragon.getZ());
|
|
if (!(d < 100.0) && !(d > 22500.0) && !this.dragon.horizontalCollision && !this.dragon.verticalCollision) {
|
|
this.dragon.setHealth(1.0F);
|
|
} else {
|
|
this.dragon.setHealth(0.0F);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void begin() {
|
|
this.targetLocation = null;
|
|
this.time = 0;
|
|
}
|
|
|
|
@Override
|
|
public float getFlySpeed() {
|
|
return 3.0F;
|
|
}
|
|
|
|
@Nullable
|
|
@Override
|
|
public Vec3 getFlyTargetLocation() {
|
|
return this.targetLocation;
|
|
}
|
|
|
|
@Override
|
|
public EnderDragonPhase<DragonDeathPhase> getPhase() {
|
|
return EnderDragonPhase.DYING;
|
|
}
|
|
}
|