Readded the Alchemy Table

Finished adding the Alchemy Table with JEI compatability. Also added recipes for the ARC block and the Alchemy Table.
This commit is contained in:
WayofTime 2020-10-31 13:42:28 -04:00
parent 37c5e807b0
commit bf6250272c
41 changed files with 1915 additions and 29 deletions

View file

@ -27,5 +27,4 @@ public class IRecipeAlchemyArray extends RecipeAlchemyArray
{
return BloodMagicRecipeType.ARRAY;
}
}

View file

@ -0,0 +1,32 @@
package wayoftime.bloodmagic.recipe;
import java.util.List;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraft.item.crafting.IRecipeType;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.util.ResourceLocation;
import wayoftime.bloodmagic.api.impl.recipe.RecipeAlchemyTable;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.common.registries.BloodMagicRecipeSerializers;
public class IRecipeAlchemyTable extends RecipeAlchemyTable
{
public IRecipeAlchemyTable(ResourceLocation id, List<Ingredient> input, ItemStack output, int syphon, int ticks, int minimumTier)
{
super(id, input, output, syphon, ticks, minimumTier);
}
@Override
public IRecipeSerializer<RecipeAlchemyTable> getSerializer()
{
return BloodMagicRecipeSerializers.ALCHEMYTABLE.getRecipeSerializer();
}
@Override
public IRecipeType<RecipeAlchemyTable> getType()
{
return BloodMagicRecipeType.ALCHEMYTABLE;
}
}