161 lines
4.6 KiB
Java
161 lines
4.6 KiB
Java
package net.minecraft.server;
|
|
|
|
import java.util.List;
|
|
|
|
// CraftBukkit start
|
|
import org.bukkit.craftbukkit.entity.CraftEntity;
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
import org.bukkit.event.entity.EntityTargetEvent;
|
|
// CraftBukkit end
|
|
|
|
public class EntityPigZombie extends EntityZombie {
|
|
|
|
public int angerLevel = 0; // CraftBukkit - private -> public
|
|
private int soundDelay = 0;
|
|
private static final ItemStack g = new ItemStack(Item.GOLD_SWORD, 1);
|
|
|
|
public EntityPigZombie(World world) {
|
|
super(world);
|
|
this.texture = "/mob/pigzombie.png";
|
|
this.bb = 0.5F;
|
|
this.damage = 5;
|
|
this.fireProof = true;
|
|
}
|
|
|
|
protected boolean c_() {
|
|
return false;
|
|
}
|
|
|
|
public void G_() {
|
|
this.bb = this.target != null ? 0.95F : 0.5F;
|
|
if (this.soundDelay > 0 && --this.soundDelay == 0) {
|
|
this.world.makeSound(this, "mob.zombiepig.zpigangry", this.p() * 2.0F, ((this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F) * 1.8F);
|
|
}
|
|
|
|
super.G_();
|
|
}
|
|
|
|
public boolean canSpawn() {
|
|
return this.world.difficulty > 0 && this.world.containsEntity(this.boundingBox) && this.world.getCubes(this, this.boundingBox).size() == 0 && !this.world.containsLiquid(this.boundingBox);
|
|
}
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
super.b(nbttagcompound);
|
|
nbttagcompound.setShort("Anger", (short) this.angerLevel);
|
|
}
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
super.a(nbttagcompound);
|
|
this.angerLevel = nbttagcompound.getShort("Anger");
|
|
}
|
|
|
|
protected Entity findTarget() {
|
|
return this.angerLevel == 0 ? null : super.findTarget();
|
|
}
|
|
|
|
public void e() {
|
|
super.e();
|
|
}
|
|
|
|
public boolean damageEntity(DamageSource damagesource, int i) {
|
|
Entity entity = damagesource.getEntity();
|
|
|
|
if (entity instanceof EntityHuman) {
|
|
List list = this.world.getEntities(this, this.boundingBox.grow(32.0D, 32.0D, 32.0D));
|
|
|
|
for (int j = 0; j < list.size(); ++j) {
|
|
Entity entity1 = (Entity) list.get(j);
|
|
|
|
if (entity1 instanceof EntityPigZombie) {
|
|
EntityPigZombie entitypigzombie = (EntityPigZombie) entity1;
|
|
|
|
entitypigzombie.e(entity);
|
|
}
|
|
}
|
|
|
|
this.e(entity);
|
|
}
|
|
|
|
return super.damageEntity(damagesource, i);
|
|
}
|
|
|
|
private void e(Entity entity) {
|
|
// CraftBukkit start
|
|
org.bukkit.entity.Entity bukkitTarget = entity == null ? null : entity.getBukkitEntity();
|
|
|
|
EntityTargetEvent event = new EntityTargetEvent(this.getBukkitEntity(), bukkitTarget, EntityTargetEvent.TargetReason.PIG_ZOMBIE_TARGET);
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled()) {
|
|
return;
|
|
}
|
|
|
|
if (event.getTarget() == null) {
|
|
this.target = null;
|
|
return;
|
|
}
|
|
entity = ((CraftEntity) event.getTarget()).getHandle();
|
|
// CraftBukkit end
|
|
|
|
this.target = entity;
|
|
this.angerLevel = 400 + this.random.nextInt(400);
|
|
this.soundDelay = this.random.nextInt(40);
|
|
}
|
|
|
|
protected String i() {
|
|
return "mob.zombiepig.zpig";
|
|
}
|
|
|
|
protected String j() {
|
|
return "mob.zombiepig.zpighurt";
|
|
}
|
|
|
|
protected String k() {
|
|
return "mob.zombiepig.zpigdeath";
|
|
}
|
|
|
|
protected void dropDeathLoot(boolean flag, int i) {
|
|
// CraftBukkit start
|
|
List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
|
|
int j = this.random.nextInt(2 + i);
|
|
|
|
int k;
|
|
|
|
if (j > 0) {
|
|
loot.add(new CraftItemStack(Item.ROTTEN_FLESH.id, j));
|
|
}
|
|
|
|
j = this.random.nextInt(2 + i);
|
|
|
|
if (j > 0) {
|
|
loot.add(new CraftItemStack(Item.GOLD_NUGGET.id, j));
|
|
}
|
|
CraftEventFactory.callEntityDeathEvent(this, loot);
|
|
// CraftBukkit end
|
|
}
|
|
|
|
protected void b(int i) {
|
|
if (i > 0) {
|
|
ItemStack itemstack = new ItemStack(Item.GOLD_SWORD);
|
|
|
|
EnchantmentManager.a(this.random, itemstack, 5);
|
|
this.a(itemstack, 0.0F);
|
|
} else {
|
|
int j = this.random.nextInt(3);
|
|
|
|
if (j == 0) {
|
|
this.b(Item.GOLD_INGOT.id, 1);
|
|
} else if (j == 1) {
|
|
this.b(Item.GOLD_SWORD.id, 1);
|
|
} else if (j == 2) {
|
|
this.b(Item.GOLD_HELMET.id, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected int getLootId() {
|
|
return Item.ROTTEN_FLESH.id;
|
|
}
|
|
}
|