Package forestry.farming.logic

Examples of forestry.farming.logic.FarmableStacked


    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>());
    Farmables.farmables.get("farmPoales").add(new FarmableStacked(Blocks.reeds, 3));

    Farmables.farmables.put("farmSucculentes", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmSucculentes").add(new FarmableStacked(Blocks.cactus, 3));

    Farmables.farmables.put("farmVegetables", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmVegetables").add(new FarmableGenericCrop(new ItemStack(Items.potato), Blocks.potatoes, 7));
    Farmables.farmables.get("farmVegetables").add(new FarmableGenericCrop(new ItemStack(Items.carrot), Blocks.carrots, 7));
View Full Code Here

TOP

Related Classes of forestry.farming.logic.FarmableStacked

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.