Initial update to forestry 4(Sawmill recipes are not working)

This commit is contained in:
modmuss50 2015-10-03 10:21:13 +01:00
parent c30633b5d3
commit 3708a49bb9
2 changed files with 17 additions and 237 deletions

View file

@ -107,12 +107,12 @@ dependencies {
compile name: 'buildcraft', version: '7.0.25', classifier: "dev", ext: 'jar'
compile "qmunity:QmunityLib:0.2.+:deobf"
compile "com.pahimar.ee3:EquivalentExchange3:1.7.10-0.3.507:dev"
compile "net.sengir.forestry:forestry_1.7.10:3.6.9.28:dev"
shade "net.sengir.forestry:forestry_1.7.10:3.6.9.28:api"
compile "net.sengir.forestry:forestry_1.7.10:4.0.5.33:dev"
shade "net.sengir.forestry:forestry_1.7.10:4.0.5.33:api"
compile "tconstruct:TConstruct:1.7.10-1.8.5.build958:deobf"
compile "mods.natura:natura:1.7.10-98.6a6cca1:deobf"
compile "mantle:Mantle:1.7.10-0.3.2.jenkins187:deobf"
compile "com.github.glitchfiend.biomesoplenty:BiomesOPlenty:1.7.10-2.1.0.1283:deobf"
compile "com.github.glitchfiend.biomesoplenty:BiomesOPlenty:1.7.10-2.1.0.1396:deobf"
compile 'Azanor:Thaumcraft:4.2.3.5:deobf@jar'
compile "com.github.azanor:baubles:1.0.1.10:deobf@jar"
compile name: "MineTweaker3", version: "1.7.10-3.0.9C", classifier: "Dev"

View file

@ -4,8 +4,11 @@ import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.event.FMLServerStartingEvent;
import forestry.api.arboriculture.EnumWoodType;
import forestry.api.arboriculture.TreeManager;
import forestry.api.fuels.FuelManager;
import forestry.api.fuels.GeneratorFuel;
import forestry.arboriculture.WoodItemAccess;
import forestry.core.config.ForestryBlock;
import ic2.api.item.IC2Items;
import net.minecraft.init.Items;
@ -35,240 +38,17 @@ public class RecipesForestry implements ICompatModule {
public void init(FMLInitializationEvent event) {
if (ConfigTechReborn.AllowForestryRecipes) {
ItemStack pulpStack = OreDictionary.getOres("pulpWood").get(0);
//Regular wood
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 0), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 0), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 0), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 1), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 1), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 1), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 2), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 2), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 2), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 3), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 3), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log1.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 3), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 4), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 4), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 4), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 5), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 5), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 5), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 6), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 6), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 6), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 7), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 7), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log2.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 7), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 8), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 8), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 8), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 9), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 9), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 9), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 10), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 10), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 10), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 11), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 11), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log3.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 11), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 12), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 12), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 12), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 13), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 13), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 13), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 14), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 14), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 14), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks1.getItemStack(6, 15), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks1.getItemStack(6, 15), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log4.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks1.getItemStack(6, 15), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 0), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 0), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 0), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 1), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 1), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 1), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 2), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 2), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 2), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 3), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 3), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log5.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 3), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 4), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 4), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 4), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 5), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 5), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 5), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 6), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 6), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 6), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 7), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 7), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log6.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 7), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 8), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 8), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 8), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 9), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 9), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 9), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 10), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 10), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 10), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 11), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 11), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log7.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 11), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log8.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.planks2.getItemStack(6, 12), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log8.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.planks2.getItemStack(6, 12), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.log8.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.planks2.getItemStack(6, 12), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
//Fireproof wood
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 0), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 0), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 0), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 1), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 1), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 1), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 2), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 2), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 2), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 3), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 3), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog1.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 3), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 4), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 4), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 4), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 5), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 5), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 5), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 6), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 6), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 6), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 7), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 7), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog2.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 7), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 8), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 8), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 8), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 9), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 9), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 9), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 10), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 10), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 10), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 11), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 11), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog3.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 11), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 12), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 12), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 12), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 13), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 13), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 13), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 14), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 14), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 14), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks1.getItemStack(6, 15), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 15), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog4.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks1.getItemStack(6, 15), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 0), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 0), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 0), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 1), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 1), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 1), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 2), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 2), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 2), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 3), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 3), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog5.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 3), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 4), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 4), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 4), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 5), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 5), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 5), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 6), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 6), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 6), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 7), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 7), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog6.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 7), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 8), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 8), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 8), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 1), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 9), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 1), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 9), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 1), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 9), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 2), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 10), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 2), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 10), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 2), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 10), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 3), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 11), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 3), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 11), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog7.getItemStack(1, 3), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 11), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog8.getItemStack(1, 0), null, new FluidStack(FluidRegistry.WATER, 1000), ForestryBlock.fireproofPlanks2.getItemStack(6, 12), pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog8.getItemStack(1, 0), IC2Items.getItem("waterCell"), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 12), pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(ForestryBlock.fireproofLog8.getItemStack(1, 0), new ItemStack(Items.water_bucket), null, ForestryBlock.fireproofPlanks2.getItemStack(6, 12), pulpStack, new ItemStack(Items.bucket), 200, 30, false));
for (EnumWoodType woodType : EnumWoodType.VALUES) {
for (int i = 0; i < 1; i++) {
ItemStack log = TreeManager.woodItemAccess.getLog(woodType, i == 0 ? true : false);
log.stackSize = 1;
ItemStack plank = TreeManager.woodItemAccess.getPlanks(woodType, i == 0 ? true : false);
plank.stackSize = 6;
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, null, new FluidStack(FluidRegistry.WATER, 1000), plank, pulpStack, null, 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, IC2Items.getItem("waterCell"), null, plank, pulpStack, IC2Items.getItem("cell"), 200, 30, false));
RecipeHandler.addRecipe(new IndustrialSawmillRecipe(log, new ItemStack(Items.water_bucket), null, plank, pulpStack, new ItemStack(Items.bucket), 200, 30, false));
}
}
}
}