Test with stuff + Forestry potential support
This commit is contained in:
parent
5b05cf651b
commit
bd26e441cb
174 changed files with 5602 additions and 0 deletions
45
BM_src/forestry/api/recipes/ISqueezerManager.java
Normal file
45
BM_src/forestry/api/recipes/ISqueezerManager.java
Normal file
|
@ -0,0 +1,45 @@
|
|||
package forestry.api.recipes;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.fluids.FluidStack;
|
||||
|
||||
/**
|
||||
* Provides an interface to the recipe manager of the suqeezer.
|
||||
*
|
||||
* The manager is initialized at the beginning of Forestry's BaseMod.load() cycle. Begin adding recipes in BaseMod.ModsLoaded() and this shouldn't be null even
|
||||
* if your mod loads before Forestry.
|
||||
*
|
||||
* Accessible via {@link RecipeManagers}
|
||||
*
|
||||
* @author SirSengir
|
||||
*/
|
||||
public interface ISqueezerManager extends ICraftingProvider {
|
||||
|
||||
/**
|
||||
* Add a recipe to the squeezer.
|
||||
*
|
||||
* @param timePerItem
|
||||
* Number of work cycles required to squeeze one set of resources.
|
||||
* @param resources
|
||||
* Array of item stacks representing the required resources for one process. Stack size will be taken into account.
|
||||
* @param liquid
|
||||
* {@link FluidStack} representing the output of this recipe.
|
||||
* @param remnants
|
||||
* Item stack representing the possible remnants from this recipe.
|
||||
* @param chance
|
||||
* Chance remnants will be produced by a single recipe cycle.
|
||||
*/
|
||||
public void addRecipe(int timePerItem, ItemStack[] resources, FluidStack liquid, ItemStack remnants, int chance);
|
||||
|
||||
/**
|
||||
* Add a recipe to the squeezer.
|
||||
*
|
||||
* @param timePerItem
|
||||
* Number of work cycles required to squeeze one set of resources.
|
||||
* @param resources
|
||||
* Array of item stacks representing the required resources for one process. Stack size will be taken into account.
|
||||
* @param liquid
|
||||
* {@link FluidStack} representing the output of this recipe.
|
||||
*/
|
||||
public void addRecipe(int timePerItem, ItemStack[] resources, FluidStack liquid);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue