Package net.minecraft.entity.monster

Examples of net.minecraft.entity.monster.EntityWitch


              EntityLiving entity = null;
              switch(worldObj.rand.nextInt(2)) {
              case 0 : {
                entity = new EntityZombie(worldObj);
                if(worldObj.rand.nextInt(12) == 0)
                  entity = new EntityWitch(worldObj);
               
                break;
              }
              case 1 : {
                entity = new EntitySkeleton(worldObj);
View Full Code Here

TOP

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

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.