Package mekanism.api

Examples of mekanism.api.PressurizedReactants


    {
      HashMap<PressurizedReactants, PressurizedRecipe> recipes = Recipe.PRESSURIZED_REACTION_CHAMBER.get();

      for(PressurizedRecipe recipe : recipes.values())
      {
        PressurizedReactants reactants = recipe.reactants;

        if(reactants.meetsInput(inputItem, inputFluid, inputGas))
        {
          return recipe.copy();
        }
      }
    }
View Full Code Here


    //Chemical Dissolution Chamber Recipes
    RecipeHandler.addChemicalDissolutionChamberRecipe(new ItemStack(Blocks.obsidian), new GasStack(GasRegistry.getGas("obsidian"), 1000));

    //Pressurized Reaction Chamber Recipes
    RecipeHandler.addPRCRecipe(
        new PressurizedReactants(new ItemStack(BioFuel, 2), new FluidStack(FluidRegistry.WATER, 10), new GasStack(GasRegistry.getGas("hydrogen"), 100)),
        new PressurizedProducts(new ItemStack(Substrate), new GasStack(GasRegistry.getGas("ethene"), 100)),
        0,
        100
    );

    RecipeHandler.addPRCRecipe(
        new PressurizedReactants(new ItemStack(Substrate), new FluidStack(FluidRegistry.getFluid("ethene"), 50), new GasStack(GasRegistry.getGas("oxygen"), 10)),
        new PressurizedProducts(new ItemStack(Polyethene), new GasStack(GasRegistry.getGas("oxygen"), 5)),
        1000,
        60
    );
View Full Code Here

TOP

Related Classes of mekanism.api.PressurizedReactants

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.