Initial work on the Sanguine Scientiem

Downloaded patchouli and, after lots of remorse, managed to get the beginnings of a guide.
This commit is contained in:
WayofTime 2020-10-29 15:45:38 -04:00
parent fea894a2b2
commit c159828248
32 changed files with 352 additions and 68 deletions

View file

@ -65,11 +65,28 @@ public abstract class RecipeARC extends BloodMagicRecipe
return input;
}
@Nonnull
public final Ingredient getTool()
{
return arc_tool;
}
public final FluidStackIngredient getFluidIngredient()
{
return inputFluid;
}
public final FluidStack getFluidOutput()
{
return outputFluid;
}
@Override
public final NonNullList<Ingredient> getIngredients()
{
NonNullList<Ingredient> list = NonNullList.create();
list.add(getInput());
list.add(getTool());
return list;
}