Package powercrystals.minefactoryreloaded.farmables.grindables

Examples of powercrystals.minefactoryreloaded.farmables.grindables.GrindableStandard


    MFRRegistry.registerGrinderBlacklist(EntityPlayer.class);
    MFRRegistry.registerGrinderBlacklist(EntityDragon.class);
    MFRRegistry.registerGrinderBlacklist(EntityWither.class);
    MFRRegistry.registerGrinderBlacklist(EntityVillager.class);
   
    MFRRegistry.registerGrindable(new GrindableStandard(EntityChicken.class, new MobDrop[]
        {
      new MobDrop(30, null),
      new MobDrop(10, new ItemStack(Item.egg))
        }, false));
    MFRRegistry.registerGrindable(new GrindableStandard(EntityOcelot.class, new MobDrop[]
        {
      new MobDrop(10, new ItemStack(Item.fishRaw)),
      new MobDrop(10, new ItemStack(Item.silk))
        }));
    MFRRegistry.registerGrindable(new GrindableStandard(EntityWolf.class, new ItemStack(Item.bone)));
    MFRRegistry.registerGrindable(new GrindableZombiePigman());
    MFRRegistry.registerGrindable(new GrindableSlime(EntitySlime.class, new ItemStack(Item.slimeBall), 1));
    MFRRegistry.registerGrindable(new GrindableSlime(EntityPinkSlime.class, new ItemStack(MineFactoryReloadedCore.pinkSlimeballItem), 1));
   
    MFRRegistry.registerSludgeDrop(50, new ItemStack(Block.sand));
View Full Code Here

TOP

Related Classes of powercrystals.minefactoryreloaded.farmables.grindables.GrindableStandard

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.