Added some more recipes (like rudimentary ore doubling) to the alchemy table

This commit is contained in:
WayofTime 2016-05-04 19:25:42 -04:00
parent 86efa8b1a3
commit 37cb2a1360
15 changed files with 293 additions and 32 deletions

View file

@ -0,0 +1,12 @@
package WayofTime.bloodmagic.api.iface;
import net.minecraft.item.ItemStack;
/**
* An interface for items that have custom drainage behaviour when used in
* certain alchemy recipes.
*/
public interface ICustomAlchemyConsumable
{
ItemStack drainUseOnAlchemyCraft(ItemStack stack);
}