geforkt von Mirrors/Paper
61ec751ca1
We know these updates (can) break plugins bypassing Bukkit. They are needed for smooth updates however. There will be another one right before before 1.1-R1.
70 Zeilen
1.9 KiB
Java
70 Zeilen
1.9 KiB
Java
package net.minecraft.server;
|
|
|
|
import org.bukkit.event.entity.EntityCombustEvent; // CraftBukkit
|
|
|
|
public class EntityZombie extends EntityMonster {
|
|
|
|
public EntityZombie(World world) {
|
|
super(world);
|
|
this.texture = "/mob/zombie.png";
|
|
this.bb = 0.5F;
|
|
this.damage = 4;
|
|
this.goalSelector.a(1, new PathfinderGoalFloat(this));
|
|
this.goalSelector.a(2, new PathfinderGoalMeleeAttack(this, world, 16.0F));
|
|
this.goalSelector.a(3, new PathfinderGoalRandomStroll(this));
|
|
this.goalSelector.a(4, new PathfinderGoalLookAtPlayer(this, world, 8.0F));
|
|
this.goalSelector.a(4, new PathfinderGoalRandomLookaround(this));
|
|
}
|
|
|
|
public int getMaxHealth() {
|
|
return 20;
|
|
}
|
|
|
|
public int P() {
|
|
return 2;
|
|
}
|
|
|
|
protected boolean as() {
|
|
return false;
|
|
}
|
|
|
|
public void d() {
|
|
if (this.world.e() && !this.world.isStatic) {
|
|
float f = this.a(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) {
|
|
// CraftBukkit start
|
|
EntityCombustEvent event = new EntityCombustEvent(this.getBukkitEntity(), 8);
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
if (!event.isCancelled()) {
|
|
this.setOnFire(event.getDuration());
|
|
}
|
|
// CraftBukkit end
|
|
}
|
|
}
|
|
|
|
super.d();
|
|
}
|
|
|
|
protected String c_() {
|
|
return "mob.zombie";
|
|
}
|
|
|
|
protected String m() {
|
|
return "mob.zombiehurt";
|
|
}
|
|
|
|
protected String n() {
|
|
return "mob.zombiedeath";
|
|
}
|
|
|
|
protected int getLootId() {
|
|
return Item.ROTTEN_FLESH.id;
|
|
}
|
|
|
|
public MonsterType getMonsterType() {
|
|
return MonsterType.UNDEAD;
|
|
}
|
|
}
|