2014-12-03 22:33:46 +01:00
|
|
|
package ellpeck.gemification.crafting;
|
2014-12-03 21:55:53 +01:00
|
|
|
|
2014-12-03 22:33:46 +01:00
|
|
|
import ellpeck.gemification.GemType;
|
2014-12-03 21:55:53 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public class CrucibleRecipe{
|
|
|
|
|
|
|
|
public final ItemStack[] recipeItems;
|
|
|
|
public final ItemStack recipeOutput;
|
|
|
|
public final GemType fluidNeeded;
|
|
|
|
public final int processTimeNeeded;
|
|
|
|
|
|
|
|
public CrucibleRecipe(ItemStack[] items, ItemStack output, GemType fluid, int processTimeNeeded){
|
|
|
|
this.recipeItems = items;
|
|
|
|
this.recipeOutput = output;
|
|
|
|
this.fluidNeeded = fluid;
|
|
|
|
this.processTimeNeeded = processTimeNeeded;
|
|
|
|
}
|
|
|
|
}
|