Java Code Examples for erogenousbeef.bigreactors.api.registry.Reactants#standardFluidReactantAmount()
The following examples show how to use
erogenousbeef.bigreactors.api.registry.Reactants#standardFluidReactantAmount() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ReactantToFluidMapping.java From BigReactors with MIT License | 4 votes |
public ReactantToFluidMapping(String reactantName, String fluidName, int fluidAmount) { super(reactantName, Reactants.standardFluidReactantAmount, fluidName, fluidAmount); }
Example 2
Source File: ReactantToFluidMapping.java From BigReactors with MIT License | 4 votes |
public ReactantToFluidMapping(String reactantName, Fluid fluid, int fluidAmount) { super(reactantName, Reactants.standardFluidReactantAmount, fluid.getName(), fluidAmount); }
Example 3
Source File: ReactantToFluidMapping.java From BigReactors with MIT License | 4 votes |
public ReactantToFluidMapping(String reactantName, FluidStack fluidStack) { super(reactantName, Reactants.standardFluidReactantAmount, fluidStack.getFluid().getName(), fluidStack.amount); }
Example 4
Source File: ReactantToFluidMapping.java From BigReactors with MIT License | 4 votes |
public ReactantToFluidMapping(String reactantName, String fluidName) { super(reactantName, Reactants.standardFluidReactantAmount, fluidName, Reactants.standardFluidReactantAmount); }
Example 5
Source File: ReactantToFluidMapping.java From BigReactors with MIT License | 4 votes |
public ReactantToFluidMapping(String reactantName, Fluid fluid) { super(reactantName, Reactants.standardFluidReactantAmount, fluid.getName(), Reactants.standardFluidReactantAmount); }
Example 6
Source File: FluidToReactantMapping.java From BigReactors with MIT License | 4 votes |
public FluidToReactantMapping(String fluidName, int fluidAmount, String reactantName) { super(fluidName, fluidAmount, reactantName, Reactants.standardFluidReactantAmount); }
Example 7
Source File: FluidToReactantMapping.java From BigReactors with MIT License | 4 votes |
public FluidToReactantMapping(Fluid fluid, int fluidAmount, String reactantName) { super(fluid.getName(), fluidAmount, reactantName, Reactants.standardFluidReactantAmount); }
Example 8
Source File: FluidToReactantMapping.java From BigReactors with MIT License | 4 votes |
public FluidToReactantMapping(FluidStack fluidStack, String reactantName) { super(fluidStack.getFluid().getName(), fluidStack.amount, reactantName, Reactants.standardFluidReactantAmount); }
Example 9
Source File: FluidToReactantMapping.java From BigReactors with MIT License | 4 votes |
public FluidToReactantMapping(String fluidName, String reactantName) { super(fluidName, Reactants.standardFluidReactantAmount, reactantName, Reactants.standardFluidReactantAmount); }
Example 10
Source File: FluidToReactantMapping.java From BigReactors with MIT License | 4 votes |
public FluidToReactantMapping(Fluid fluid, String reactantName) { super(fluid.getName(), Reactants.standardFluidReactantAmount, reactantName, Reactants.standardFluidReactantAmount); }