Examples of FertilizableSapling


Examples of mods.natura.plugins.minefactoryreloaded.fertilizables.FertilizableSapling

        FactoryRegistry.sendMessage("registerHarvestable",new HarvestableNaturaTreeLeaves(floraLeavesId));
        FactoryRegistry.sendMessage("registerHarvestable",new HarvestableNaturaTreeLeaves(floraLeavesNoColorId));
        FactoryRegistry.sendMessage("registerHarvestable",new HarvestableNaturaTreeLeaves(thornVinesId));

        FactoryRegistry.sendMessage("registerFertilizable",new FertilizableNaturaCrop(cropsId));
        FactoryRegistry.sendMessage("registerFertilizable", new FertilizableSapling(floraSaplingId));
        FactoryRegistry.sendMessage("registerFertilizable",new FertilizableSapling(rareSaplingId));

        /*
         *  The sludge boiler takes sludge from harvester machines and boils it to get soil-like items,
         *  such as dirt, sand, clay, or rarely things like soulsand and mycelium.
         */
 
View Full Code Here

Examples of powercrystals.minefactoryreloaded.farmables.fertilizables.FertilizableSapling

    MFRRegistry.registerHarvestable(new HarvestableNetherWart());
    MFRRegistry.registerHarvestable(new HarvestableCocoa());
    MFRRegistry.registerHarvestable(new HarvestableStandard(MineFactoryReloadedCore.rubberWoodBlock.blockID, HarvestType.Tree));
    MFRRegistry.registerHarvestable(new HarvestableTreeLeaves(MineFactoryReloadedCore.rubberLeavesBlock.blockID));
   
    MFRRegistry.registerFertilizable(new FertilizableSapling(Block.sapling.blockID));
    MFRRegistry.registerFertilizable(new FertilizableCropPlant(Block.crops.blockID, 7));
    MFRRegistry.registerFertilizable(new FertilizableCropPlant(Block.carrot.blockID, 7));
    MFRRegistry.registerFertilizable(new FertilizableCropPlant(Block.potato.blockID, 7));
    MFRRegistry.registerFertilizable(new FertilizableGiantMushroom(Block.mushroomBrown.blockID));
    MFRRegistry.registerFertilizable(new FertilizableGiantMushroom(Block.mushroomRed.blockID));
View Full Code Here

Examples of powercrystals.minefactoryreloaded.farmables.fertilizables.FertilizableSapling

        MFRRegistry.registerHarvestable(new HarvestableTreeLeaves(((Block)tfBlocks.getField("cicada").get(null)).blockID));
        MFRRegistry.registerHarvestable(new HarvestableStandard(((Block)tfBlocks.getField("plant").get(null)).blockID, HarvestType.Normal));
       
        MFRRegistry.registerPlantable(new PlantableStandard(((Block)tfBlocks.getField("sapling").get(null)).blockID, ((Block)tfBlocks.getField("sapling").get(null)).blockID));
       
        MFRRegistry.registerFertilizable(new FertilizableSapling(((Block)tfBlocks.getField("sapling").get(null)).blockID));
      }
     
      MFRRegistry.registerRandomMobProvider(new TwilightForestMobProvider());
    }
    catch(Exception x)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.