2011-11-26 01:56:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
|
|
|
|
public class EntityBlaze extends EntityMonster {
|
|
|
|
|
|
|
|
private float a = 0.5F;
|
|
|
|
private int b;
|
|
|
|
private int g;
|
|
|
|
|
|
|
|
public EntityBlaze(World world) {
|
|
|
|
super(world);
|
|
|
|
this.texture = "/mob/fire.png";
|
|
|
|
this.fireProof = true;
|
|
|
|
this.damage = 6;
|
|
|
|
this.az = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxHealth() {
|
|
|
|
return 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void b() {
|
|
|
|
super.b();
|
|
|
|
this.datawatcher.a(16, new Byte((byte) 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String c_() {
|
|
|
|
return "mob.blaze.breathe";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String m() {
|
|
|
|
return "mob.blaze.hit";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String n() {
|
|
|
|
return "mob.blaze.death";
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean damageEntity(DamageSource damagesource, int i) {
|
|
|
|
return super.damageEntity(damagesource, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void die(DamageSource damagesource) {
|
|
|
|
super.die(damagesource);
|
|
|
|
}
|
|
|
|
|
|
|
|
public float a(float f) {
|
|
|
|
return 1.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void d() {
|
|
|
|
if (!this.world.isStatic) {
|
|
|
|
if (this.ay()) {
|
|
|
|
this.damageEntity(DamageSource.DROWN, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
--this.b;
|
|
|
|
if (this.b <= 0) {
|
|
|
|
this.b = 100;
|
|
|
|
this.a = 0.5F + (float) this.random.nextGaussian() * 3.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.E() != null && this.E().locY + (double) this.E().x() > this.locY + (double) this.x() + (double) this.a) {
|
|
|
|
this.motY += (0.30000001192092896D - this.motY) * 0.30000001192092896D;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.random.nextInt(24) == 0) {
|
|
|
|
this.world.makeSound(this.locX + 0.5D, this.locY + 0.5D, this.locZ + 0.5D, "fire.fire", 1.0F + this.random.nextFloat(), this.random.nextFloat() * 0.7F + 0.3F);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.onGround && this.motY < 0.0D) {
|
|
|
|
this.motY *= 0.6D;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
2011-11-30 00:17:43 +01:00
|
|
|
this.world.a("largesmoke", this.locX + (this.random.nextDouble() - 0.5D) * (double) this.width, this.locY + this.random.nextDouble() * (double) this.length, this.locZ + (this.random.nextDouble() - 0.5D) * (double) this.width, 0.0D, 0.0D, 0.0D);
|
2011-11-26 01:56:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
super.d();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a(Entity entity, float f) {
|
|
|
|
if (this.attackTicks <= 0 && f < 2.0F && entity.boundingBox.e > this.boundingBox.b && entity.boundingBox.b < this.boundingBox.e) {
|
|
|
|
this.attackTicks = 20;
|
|
|
|
this.d(entity);
|
|
|
|
} else if (f < 30.0F) {
|
|
|
|
double d0 = entity.locX - this.locX;
|
2011-11-30 00:17:43 +01:00
|
|
|
double d1 = entity.boundingBox.b + (double) (entity.length / 2.0F) - (this.locY + (double) (this.length / 2.0F));
|
2011-11-26 01:56:11 +01:00
|
|
|
double d2 = entity.locZ - this.locZ;
|
|
|
|
|
|
|
|
if (this.attackTicks == 0) {
|
|
|
|
++this.g;
|
|
|
|
if (this.g == 1) {
|
|
|
|
this.attackTicks = 60;
|
|
|
|
this.a(true);
|
|
|
|
} else if (this.g <= 4) {
|
|
|
|
this.attackTicks = 6;
|
|
|
|
} else {
|
|
|
|
this.attackTicks = 100;
|
|
|
|
this.g = 0;
|
|
|
|
this.a(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.g > 1) {
|
|
|
|
float f1 = MathHelper.c(f) * 0.5F;
|
|
|
|
|
|
|
|
this.world.a((EntityHuman) null, 1009, (int) this.locX, (int) this.locY, (int) this.locZ, 0);
|
|
|
|
|
|
|
|
for (int i = 0; i < 1; ++i) {
|
|
|
|
EntitySmallFireball entitysmallfireball = new EntitySmallFireball(this.world, this, d0 + this.random.nextGaussian() * (double) f1, d1, d2 + this.random.nextGaussian() * (double) f1);
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
entitysmallfireball.locY = this.locY + (double) (this.length / 2.0F) + 0.5D;
|
2011-11-26 01:56:11 +01:00
|
|
|
this.world.addEntity(entitysmallfireball);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.yaw = (float) (Math.atan2(d2, d0) * 180.0D / 3.1415927410125732D) - 90.0F;
|
|
|
|
this.e = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void b(float f) {}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int e() {
|
|
|
|
return Item.BLAZE_ROD.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean z() {
|
|
|
|
return this.A();
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
protected void dropDeathLoot(boolean flag, int i) {
|
2011-11-26 01:56:11 +01:00
|
|
|
if (flag) {
|
|
|
|
// CraftBukkit start
|
|
|
|
List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
|
|
|
|
int j = this.random.nextInt(2 + i);
|
|
|
|
|
|
|
|
if (j > 0) {
|
|
|
|
loot.add(new org.bukkit.inventory.ItemStack(Item.BLAZE_ROD.id, j));
|
|
|
|
}
|
|
|
|
|
|
|
|
CraftEventFactory.callEntityDeathEvent(this, loot);
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean A() {
|
|
|
|
return (this.datawatcher.getByte(16) & 1) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(boolean flag) {
|
|
|
|
byte b0 = this.datawatcher.getByte(16);
|
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
b0 = (byte) (b0 | 1);
|
|
|
|
} else {
|
|
|
|
b0 &= -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.datawatcher.watch(16, Byte.valueOf(b0));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean y() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|