Package mods.natura.entity

Examples of mods.natura.entity.ImpEntity


        int damage = stack.getItemDamage();
        EntityLiving entity = null;
        switch (damage)
        {
        case 0:
            entity = new ImpEntity(world);
            spawnEntity(posX, posY, posZ, entity, world);
            break;
        case 1:
            entity = new HeatscarSpider(world);
            spawnEntity(posX, posY, posZ, entity, world);
View Full Code Here

TOP

Related Classes of mods.natura.entity.ImpEntity

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.