net.minecraft.entity.monster.EntityGiantZombie Java Examples

The following examples show how to use net.minecraft.entity.monster.EntityGiantZombie. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Nyan.java    From CommunityMod with GNU Lesser General Public License v2.1 6 votes vote down vote up
private static Entity newNyanEntity(World world) {
	final int nextInt = random.nextInt(100);

	if(nextInt < 25) {
		return new EntityCow(world);
	}

	if(nextInt < 50) {
		return new EntityOvergrownSheep(world);
	}

	if(nextInt < 75) {
		return new EntityExplodingChicken(world);
	}

	if(nextInt < 95) {
		return new EntityOcelot(world);
	}

	if(nextInt < 99) {
		return new EntityGiantZombie(world);
	}

	return new EntityWither(world);
}
 
Example #2
Source File: CraftGiant.java    From Kettle with GNU General Public License v3.0 4 votes vote down vote up
public CraftGiant(CraftServer server, EntityGiantZombie entity) {
    super(server, entity);
}
 
Example #3
Source File: CraftGiant.java    From Kettle with GNU General Public License v3.0 4 votes vote down vote up
@Override
public EntityGiantZombie getHandle() {
    return (EntityGiantZombie) entity;
}
 
Example #4
Source File: CraftGiant.java    From Thermos with GNU General Public License v3.0 4 votes vote down vote up
public CraftGiant(CraftServer server, EntityGiantZombie entity) {
    super(server, entity);
}
 
Example #5
Source File: CraftGiant.java    From Thermos with GNU General Public License v3.0 4 votes vote down vote up
@Override
public EntityGiantZombie getHandle() {
    return (EntityGiantZombie) entity;
}