BloodMagic/src/main/java/WayofTime/bloodmagic/api/soul/IDemonWillGem.java
2016-02-19 08:03:33 -05:00

33 lines
1.1 KiB
Java

package WayofTime.bloodmagic.api.soul;
import net.minecraft.item.ItemStack;
public interface IDemonWillGem
{
/**
*
* @param willGemStack
* - The ItemStack for this demon will gem.
* @param willStack
* - The ItemStack for the will. Item should extend IDemonWill
* @return - The remainder willStack after the will has been absorbed into
* the gem. Return null if there is no will left in the stack.
*/
public ItemStack fillDemonWillGem(ItemStack willGemStack, ItemStack willStack);
/**
* Returns the number of souls that are left in the soul gem. Returns a
* double because souls can be fractionally drained.
*
*/
public double getWill(EnumDemonWillType type, ItemStack willGemStack);
public void setWill(EnumDemonWillType type, ItemStack willGemStack, double amount);
public int getMaxWill(EnumDemonWillType type, ItemStack willGemStack);
public double drainWill(EnumDemonWillType type, ItemStack stack, double drainAmount);
public double fillWill(EnumDemonWillType type, ItemStack stack, double fillAmount);
}