Update for 1.5_02.

This commit is contained in:
Erik Broes
2011-04-20 22:47:26 +02:00
committed by EvilSeph
parent 2fd3f8d299
commit a6c8a36dce
57 changed files with 1590 additions and 1310 deletions

View File

@@ -10,11 +10,11 @@ public class EntityZombie extends EntityMonster {
public EntityZombie(World world) {
super(world);
this.texture = "/mob/zombie.png";
this.az = 0.5F;
this.aA = 0.5F;
this.damage = 5;
}
public void r() {
public void u() {
if (this.world.d()) {
float f = this.c(1.0F);
@@ -31,22 +31,22 @@ public class EntityZombie extends EntityMonster {
}
}
super.r();
}
protected String e() {
return "mob.zombie";
}
protected String f() {
return "mob.zombiehurt";
super.u();
}
protected String g() {
return "mob.zombie";
}
protected String h() {
return "mob.zombiehurt";
}
protected String i() {
return "mob.zombiedeath";
}
protected int h() {
protected int j() {
return Item.FEATHER.id;
}
}