Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package net.minecraft.server;
2
3public class EntityGiantZombie extends EntityMonster {
4
5 public EntityGiantZombie(World world) {
6 super(world);
7 this.texture = "/mob/zombie.png";
8 this.aE = 0.5F;
9 this.damage = 50;
10 this.health *= 10;
11 this.height *= 6.0F;
12 this.b(this.length * 6.0F, this.width * 6.0F);
13 }
14
15 protected float a(int i, int j, int k) {
16 return this.world.n(i, j, k) - 0.5F;
17 }
18}