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

124 Zeilen
4.0 KiB
Java

2011-01-08 08:40:42 +01:00
package net.minecraft.server;
// CraftBukkit start
2011-01-08 08:40:42 +01:00
import org.bukkit.event.entity.EntityCombustEvent;
import org.bukkit.event.entity.EntityDeathEvent;
// CraftBukkit end
2011-01-08 08:40:42 +01:00
2011-01-29 22:50:29 +01:00
public class EntitySkeleton extends EntityMonster {
2011-01-08 08:40:42 +01:00
2011-01-29 22:50:29 +01:00
private static final ItemStack a = new ItemStack(Item.BOW, 1);
2011-01-10 09:30:34 +01:00
public EntitySkeleton(World world) {
super(world);
2011-01-29 22:50:29 +01:00
this.texture = "/mob/skeleton.png";
2011-01-10 09:30:34 +01:00
}
2011-09-15 02:23:52 +02:00
protected String h() {
2011-01-10 09:30:34 +01:00
return "mob.skeleton";
}
2011-09-15 02:23:52 +02:00
protected String i() {
2011-01-10 09:30:34 +01:00
return "mob.skeletonhurt";
}
2011-09-15 02:23:52 +02:00
protected String j() {
2011-01-10 09:30:34 +01:00
return "mob.skeletonhurt";
}
2011-09-15 02:23:52 +02:00
public boolean a(DamageSource damagesource, int i) {
return super.damageEntity(damagesource, i);
}
public void a(DamageSource damagesource) {
super.die(damagesource);
if (damagesource.e() instanceof EntityArrow && damagesource.a() instanceof EntityHuman) {
EntityHuman entityhuman = (EntityHuman) damagesource.a();
double d0 = entityhuman.locX - this.locX;
double d1 = entityhuman.locZ - this.locZ;
if (d0 * d0 + d1 * d1 >= 2500.0D) {
entityhuman.a((Statistic) AchievementList.v);
}
}
}
public void s() {
if (this.world.d() && !this.world.isStatic) {
float f = this.a_(1.0F);
2011-01-10 09:30:34 +01:00
if (f > 0.5F && this.world.isChunkLoaded(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ)) && this.random.nextFloat() * 30.0F < (f - 0.4F) * 2.0F) {
// CraftBukkit start
EntityCombustEvent event = new EntityCombustEvent(this.getBukkitEntity());
this.world.getServer().getPluginManager().callEvent(event);
2011-02-23 13:56:36 +01:00
2011-01-10 09:30:34 +01:00
if (!event.isCancelled()) {
2011-01-29 22:50:29 +01:00
this.fireTicks = 300;
2011-01-10 09:30:34 +01:00
}
// CraftBukkit end
2011-01-10 09:30:34 +01:00
}
}
2011-01-29 22:50:29 +01:00
2011-09-15 02:23:52 +02:00
super.s();
2011-01-10 09:30:34 +01:00
}
2011-01-29 22:50:29 +01:00
protected void a(Entity entity, float f) {
if (f < 10.0F) {
double d0 = entity.locX - this.locX;
double d1 = entity.locZ - this.locZ;
2011-01-10 09:30:34 +01:00
2011-01-29 22:50:29 +01:00
if (this.attackTicks == 0) {
2011-09-15 02:23:52 +02:00
EntityArrow entityarrow = new EntityArrow(this.world, this, 1.0F);
double d2 = entity.locY + (double) entity.t() - 0.699999988079071D - entityarrow.locY;
2011-01-29 22:50:29 +01:00
float f1 = MathHelper.a(d0 * d0 + d1 * d1) * 0.2F;
2011-01-10 09:30:34 +01:00
this.world.makeSound(this, "random.bow", 1.0F, 1.0F / (this.random.nextFloat() * 0.4F + 0.8F));
this.world.addEntity(entityarrow);
2011-09-15 02:23:52 +02:00
entityarrow.a(d0, d2 + (double) f1, d1, 1.6F, 12.0F);
this.attackTicks = 60;
2011-01-10 09:30:34 +01:00
}
2011-01-29 22:50:29 +01:00
this.yaw = (float) (Math.atan2(d1, d0) * 180.0D / 3.1415927410125732D) - 90.0F;
this.e = true;
2011-01-10 09:30:34 +01:00
}
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
}
2011-04-20 22:47:26 +02:00
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
}
2011-09-15 02:23:52 +02:00
protected int k() {
2011-01-29 22:50:29 +01:00
return Item.ARROW.id;
2011-01-14 14:31:10 +01:00
}
2011-09-15 02:23:52 +02:00
protected void a(boolean flag) {
2011-02-23 13:56:36 +01:00
// CraftBukkit start - whole method
java.util.List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
2011-01-14 14:31:10 +01:00
int count = this.random.nextInt(3);
if (count > 0) {
loot.add(new org.bukkit.inventory.ItemStack(org.bukkit.Material.ARROW, count));
}
2011-01-14 14:31:10 +01:00
count = this.random.nextInt(3);
if (count > 0) {
loot.add(new org.bukkit.inventory.ItemStack(org.bukkit.Material.BONE, count));
2011-01-14 14:31:10 +01:00
}
2011-01-10 09:30:34 +01:00
org.bukkit.World bworld = this.world.getWorld();
org.bukkit.entity.Entity entity = this.getBukkitEntity();
2011-02-23 13:56:36 +01:00
EntityDeathEvent event = new EntityDeathEvent(entity, loot);
this.world.getServer().getPluginManager().callEvent(event);
2011-01-29 22:50:29 +01:00
2011-02-23 13:56:36 +01:00
for (org.bukkit.inventory.ItemStack stack: event.getDrops()) {
bworld.dropItemNaturally(entity.getLocation(), stack);
2011-01-29 22:50:29 +01:00
}
2011-02-23 13:56:36 +01:00
// CraftBukkit end
2011-01-10 09:30:34 +01:00
}
2011-01-08 08:40:42 +01:00
}