public static class DummyManagers.DummyCarpenterManager extends DummyManagers.DummyCraftingProvider<ICarpenterRecipe> implements ICarpenterManager
| Constructor and Description |
|---|
DummyCarpenterManager() |
| Modifier and Type | Method and Description |
|---|---|
void |
addRecipe(int packagingTime,
net.minecraftforge.fluids.FluidStack liquid,
net.minecraft.item.ItemStack box,
net.minecraft.item.ItemStack product,
java.lang.Object... materials)
Add a shaped recipe to the carpenter.
|
void |
addRecipe(int packagingTime,
net.minecraft.item.ItemStack box,
net.minecraft.item.ItemStack product,
java.lang.Object... materials)
Add a shaped recipe to the carpenter.
|
void |
addRecipe(net.minecraft.item.ItemStack box,
net.minecraft.item.ItemStack product,
java.lang.Object... materials)
Add a shaped recipe to the carpenter.
|
addRecipe, recipes, removeRecipeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaddRecipe, recipes, removeRecipepublic void addRecipe(net.minecraft.item.ItemStack box,
net.minecraft.item.ItemStack product,
java.lang.Object... materials)
ICarpenterManageraddRecipe in interface ICarpenterManagerbox - ItemStack of one item representing the required box (carton, crate) for this recipe. May be null.product - Crafting result.materials - Materials needed in the crafting matrix. This gets passed directly to ShapedRecipes. Notation is the same.public void addRecipe(int packagingTime,
net.minecraft.item.ItemStack box,
net.minecraft.item.ItemStack product,
java.lang.Object... materials)
ICarpenterManageraddRecipe in interface ICarpenterManagerpackagingTime - Number of work cycles required to craft the recipe once.box - ItemStack of one item representing the required box (carton, crate) for this recipe. May be empty.product - Crafting result.materials - Materials needed in the crafting matrix. This gets passed directly to ShapedRecipes. Notation is the same.public void addRecipe(int packagingTime,
@Nullable
net.minecraftforge.fluids.FluidStack liquid,
net.minecraft.item.ItemStack box,
net.minecraft.item.ItemStack product,
java.lang.Object... materials)
ICarpenterManageraddRecipe in interface ICarpenterManagerpackagingTime - Number of work cycles required to craft the recipe once.liquid - Liquid required in carpenter's tank.box - ItemStack of one item representing the required box (carton, crate) for this recipe. May be empty.product - Crafting result.materials - Materials needed in the crafting matrix. This gets passed directly to ShapedRecipes. Notation is the same.