Examples of FarmableGourd


Examples of forestry.farming.logic.FarmableGourd

    Farmables.farmables.put("farmWheat", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmWheat").add(new FarmableGenericCrop(new ItemStack(Items.wheat_seeds), Blocks.wheat, 7));

    Farmables.farmables.put("farmGourd", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmGourd").add(
        new FarmableGourd(new ItemStack(Items.pumpkin_seeds), new ItemStack(Blocks.pumpkin_stem), new ItemStack(Blocks.pumpkin)));
    Farmables.farmables.get("farmGourd").add(new FarmableGourd(new ItemStack(Items.melon_seeds), new ItemStack(Blocks.melon_stem), new ItemStack(Blocks.melon_block)));

    Farmables.farmables.put("farmInfernal", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmInfernal").add(new FarmableGenericCrop(new ItemStack(Items.nether_wart), Blocks.nether_wart, 3));

    Farmables.farmables.put("farmPoales", new ArrayList<IFarmable>());
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.