public interface ICentrifugeRecipe extends IForestryRecipe
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<net.minecraft.item.ItemStack,java.lang.Float> |
getAllProducts()
Returns a list of all possible products and their estimated probabilities (0.0 to 1.0],
to help mods that display recipes
|
net.minecraft.item.ItemStack |
getInput()
The item for this recipe to match against.
|
int |
getProcessingTime()
The time it takes to process one item.
|
net.minecraft.util.NonNullList<net.minecraft.item.ItemStack> |
getProducts(java.util.Random random)
Returns the randomized products from processing one input item.
|
net.minecraft.item.ItemStack getInput()
int getProcessingTime()
net.minecraft.util.NonNullList<net.minecraft.item.ItemStack> getProducts(java.util.Random random)
java.util.Map<net.minecraft.item.ItemStack,java.lang.Float> getAllProducts()