2011-01-08 08:40:42 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
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";
|
2012-03-01 11:49:23 +01:00
|
|
|
this.bb = 0.25F;
|
|
|
|
this.goalSelector.a(1, new PathfinderGoalFloat(this));
|
|
|
|
this.goalSelector.a(2, new PathfinderGoalRestrictSun(this));
|
|
|
|
this.goalSelector.a(3, new PathfinderGoalFleeSun(this, this.bb));
|
|
|
|
this.goalSelector.a(4, new PathfinderGoalArrowAttack(this, this.bb, 1, 60));
|
|
|
|
this.goalSelector.a(5, new PathfinderGoalRandomStroll(this, this.bb));
|
|
|
|
this.goalSelector.a(6, new PathfinderGoalLookAtPlayer(this, EntityHuman.class, 8.0F));
|
|
|
|
this.goalSelector.a(6, new PathfinderGoalRandomLookaround(this));
|
|
|
|
this.targetSelector.a(1, new PathfinderGoalHurtByTarget(this, false));
|
|
|
|
this.targetSelector.a(2, new PathfinderGoalNearestAttackableTarget(this, EntityHuman.class, 16.0F, 0, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean c_() {
|
|
|
|
return true;
|
2011-01-10 09:30:34 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public int getMaxHealth() {
|
|
|
|
return 20;
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
protected String i() {
|
2011-01-10 09:30:34 +01:00
|
|
|
return "mob.skeleton";
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
protected String j() {
|
2011-01-10 09:30:34 +01:00
|
|
|
return "mob.skeletonhurt";
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
protected String k() {
|
2011-01-10 09:30:34 +01:00
|
|
|
return "mob.skeletonhurt";
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public MonsterType getMonsterType() {
|
|
|
|
return MonsterType.UNDEAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void e() {
|
|
|
|
if (this.world.e() && !this.world.isStatic) {
|
|
|
|
float f = this.b(1.0F);
|
|
|
|
|
|
|
|
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) {
|
2012-03-15 23:42:30 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
org.bukkit.event.entity.EntityCombustEvent event = new org.bukkit.event.entity.EntityCombustEvent(this.getBukkitEntity(), 8);
|
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (!event.isCancelled()) {
|
|
|
|
this.setOnFire(event.getDuration());
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.e();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-09-15 05:13:14 +02:00
|
|
|
public void die(DamageSource damagesource) {
|
2011-09-15 02:23:52 +02:00
|
|
|
super.die(damagesource);
|
2012-01-12 23:10:13 +01:00
|
|
|
if (damagesource.b() instanceof EntityArrow && damagesource.getEntity() instanceof EntityHuman) {
|
2011-09-15 18:36:27 +02:00
|
|
|
EntityHuman entityhuman = (EntityHuman) damagesource.getEntity();
|
2011-09-15 02:23:52 +02:00
|
|
|
double d0 = entityhuman.locX - this.locX;
|
|
|
|
double d1 = entityhuman.locZ - this.locZ;
|
|
|
|
|
|
|
|
if (d0 * d0 + d1 * d1 >= 2500.0D) {
|
|
|
|
entityhuman.a((Statistic) AchievementList.v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
protected int getLootId() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return Item.ARROW.id;
|
2011-01-14 14:31:10 +01:00
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
protected void dropDeathLoot(boolean flag, int i) {
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit start - whole method
|
2011-06-27 00:25:01 +02:00
|
|
|
java.util.List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
|
2011-01-14 14:31:10 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
int count = this.random.nextInt(3 + i);
|
2011-01-30 21:21:24 +01:00
|
|
|
if (count > 0) {
|
|
|
|
loot.add(new org.bukkit.inventory.ItemStack(org.bukkit.Material.ARROW, count));
|
|
|
|
}
|
2011-01-14 14:31:10 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
count = this.random.nextInt(3 + i);
|
2011-01-30 21:21:24 +01:00
|
|
|
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
|
|
|
|
2011-10-04 16:04:45 +02:00
|
|
|
org.bukkit.craftbukkit.event.CraftEventFactory.callEntityDeathEvent(this, loot);
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit end
|
2011-01-10 09:30:34 +01:00
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
protected void b(int i) {
|
|
|
|
if (i > 0) {
|
|
|
|
ItemStack itemstack = new ItemStack(Item.BOW);
|
|
|
|
|
|
|
|
EnchantmentManager.a(this.random, itemstack, 5);
|
|
|
|
this.a(itemstack, 0.0F);
|
|
|
|
} else {
|
|
|
|
this.b(Item.BOW.id, 1);
|
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-01-08 08:40:42 +01:00
|
|
|
}
|