Adding all Entities into CraftBukkit.

These are needed to properly allow for determining class type, in
accordance with current practice.
This commit is contained in:
Andrew Ardill
2011-01-17 11:03:19 +08:00
committed by Dinner Bone
parent 5f2c8108b7
commit 5209e17e1b
23 changed files with 3108 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package net.minecraft.server;
public class EntityZombieSimple extends EntityMobs {
public EntityZombieSimple(World world) {
super(world);
aP = "/mob/zombie.png";
bC = 0.5F;
c = 50;
aZ *= 10;
H *= 6F;
a(I * 6F, J * 6F);
}
protected float a(int i, int j, int k) {
return l.l(i, j, k) - 0.5F;
}
}