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

102 Zeilen
2.8 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.craftbukkit.CraftServer;
import org.bukkit.event.Event.Type;
import org.bukkit.event.entity.EntityCombustEvent;
// 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-01-14 14:31:10 +01:00
protected String e() {
2011-01-10 09:30:34 +01:00
return "mob.skeleton";
}
2011-01-14 14:31:10 +01:00
protected String f() {
2011-01-10 09:30:34 +01:00
return "mob.skeletonhurt";
}
2011-01-14 14:31:10 +01:00
protected String g() {
2011-01-10 09:30:34 +01:00
return "mob.skeletonhurt";
}
2011-01-14 14:31:10 +01:00
public void o() {
2011-01-29 22:50:29 +01:00
if (this.world.b()) {
float f = this.b(1.0F);
2011-01-10 09:30:34 +01:00
2011-01-29 22:50:29 +01:00
if (f > 0.5F && this.world.i(MathHelper.b(this.locX), MathHelper.b(this.locY), MathHelper.b(this.locZ)) && this.random.nextFloat() * 30.0F < (f - 0.4F) * 2.0F) {
// CraftBukkit start
2011-01-29 22:50:29 +01:00
CraftServer server = ((WorldServer) this.world).getServer();
Type eventType = Type.ENTITY_COMBUST;
org.bukkit.entity.Entity entity = this.getBukkitEntity();
EntityCombustEvent event = new EntityCombustEvent(eventType, entity);
2011-01-10 09:30:34 +01:00
server.getPluginManager().callEvent(event);
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-01-14 14:31:10 +01:00
super.o();
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) {
EntityArrow entityarrow = new EntityArrow(this.world, this);
2011-01-10 09:30:34 +01:00
2011-01-29 22:50:29 +01:00
++entityarrow.locY;
double d2 = entity.locY - 0.20000000298023224D - entityarrow.locY;
float f1 = MathHelper.a(d0 * d0 + d1 * d1) * 0.2F;
2011-01-10 09:30:34 +01:00
2011-01-29 22:50:29 +01:00
this.world.a(this, "random.bow", 1.0F, 1.0F / (this.random.nextFloat() * 0.4F + 0.8F));
this.world.a((Entity) entityarrow);
entityarrow.a(d0, d2 + (double) f1, d1, 0.6F, 12.0F);
this.attackTicks = 30;
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 a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
}
2011-01-14 14:31:10 +01:00
protected int h() {
2011-01-29 22:50:29 +01:00
return Item.ARROW.id;
2011-01-14 14:31:10 +01:00
}
protected void g_() {
2011-01-29 22:50:29 +01:00
int i = this.random.nextInt(3);
2011-01-14 14:31:10 +01:00
2011-01-29 22:50:29 +01:00
int j;
2011-01-14 14:31:10 +01:00
2011-01-29 22:50:29 +01:00
for (j = 0; j < i; ++j) {
this.a(Item.ARROW.id, 1);
2011-01-14 14:31:10 +01:00
}
2011-01-10 09:30:34 +01:00
2011-01-29 22:50:29 +01:00
i = this.random.nextInt(3);
for (j = 0; j < i; ++j) {
this.a(Item.BONE.id, 1);
}
2011-01-10 09:30:34 +01:00
}
2011-01-08 08:40:42 +01:00
}