Package net.minecraft.entity.monster

Examples of net.minecraft.entity.monster.EntityPigZombie


    if(world.rand.nextInt(100) < 5)
    {
      Entity e;
      if(entity instanceof EntityPig)
      {
        e = new EntityPigZombie(world);
      }
      else
      {
        e = new EntityZombie(world);
      }
View Full Code Here

TOP

Related Classes of net.minecraft.entity.monster.EntityPigZombie

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.