Paper/src/main/java/net/minecraft/server/EntityMushroomCow.java

73 Zeilen
2.6 KiB
Java

package net.minecraft.server;
import org.bukkit.event.player.PlayerShearEntityEvent; // CraftBukkit
public class EntityMushroomCow extends EntityCow {
public EntityMushroomCow(World world) {
super(world);
2012-07-29 09:33:13 +02:00
this.a(0.9F, 1.3F);
}
2013-07-01 13:03:00 +02:00
public boolean a(EntityHuman entityhuman) {
ItemStack itemstack = entityhuman.inventory.getItemInHand();
2013-11-04 14:07:38 +01:00
if (itemstack != null && itemstack.getItem() == Items.BOWL && this.getAge() >= 0) {
2012-03-30 23:33:51 +02:00
if (itemstack.count == 1) {
2013-11-04 14:07:38 +01:00
entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, new ItemStack(Items.MUSHROOM_SOUP));
2012-03-30 23:33:51 +02:00
return true;
}
2013-11-04 14:07:38 +01:00
if (entityhuman.inventory.pickup(new ItemStack(Items.MUSHROOM_SOUP)) && !entityhuman.abilities.canInstantlyBuild) {
2012-03-30 23:33:51 +02:00
entityhuman.inventory.splitStack(entityhuman.inventory.itemInHandIndex, 1);
return true;
}
}
2013-11-04 14:07:38 +01:00
if (itemstack != null && itemstack.getItem() == Items.SHEARS && this.getAge() >= 0) {
// CraftBukkit start
PlayerShearEntityEvent event = new PlayerShearEntityEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), this.getBukkitEntity());
this.world.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {
return false;
}
// CraftBukkit end
this.die();
this.world.addParticle("largeexplode", this.locX, this.locY + (double) (this.length / 2.0F), this.locZ, 0.0D, 0.0D, 0.0D);
2012-03-01 11:49:23 +01:00
if (!this.world.isStatic) {
EntityCow entitycow = new EntityCow(this.world);
entitycow.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, this.pitch);
entitycow.setHealth(this.getHealth());
2013-07-01 13:03:00 +02:00
entitycow.aN = this.aN;
2012-03-01 11:49:23 +01:00
this.world.addEntity(entitycow);
2012-03-01 11:49:23 +01:00
for (int i = 0; i < 5; ++i) {
2013-11-04 14:07:38 +01:00
this.world.addEntity(new EntityItem(this.world, this.locX, this.locY + (double) this.length, this.locZ, new ItemStack(Blocks.RED_MUSHROOM)));
2012-03-01 11:49:23 +01:00
}
2013-11-04 14:07:38 +01:00
itemstack.damage(1, entityhuman);
this.makeSound("mob.sheep.shear", 1.0F, 1.0F);
}
return true;
} else {
2013-07-01 13:03:00 +02:00
return super.a(entityhuman);
}
}
2012-11-06 13:05:28 +01:00
public EntityMushroomCow c(EntityAgeable entityageable) {
return new EntityMushroomCow(this.world);
}
2012-11-06 13:05:28 +01:00
public EntityCow b(EntityAgeable entityageable) {
return this.c(entityageable);
}
public EntityAgeable createChild(EntityAgeable entityageable) {
return this.c(entityageable);
}
}