BloodMagic/src/main/java/WayofTime/bloodmagic/api/soul/IDemonWillConduit.java

19 lines
498 B
Java
Raw Normal View History

package WayofTime.bloodmagic.api.soul;
/**
* Implement this interface on a block that can accept and store Demonic Will.
*/
2017-08-15 21:30:48 -07:00
public interface IDemonWillConduit {
int getWeight();
double fillDemonWill(EnumDemonWillType type, double amount, boolean doFill);
double drainDemonWill(EnumDemonWillType type, double amount, boolean doDrain);
boolean canFill(EnumDemonWillType type);
boolean canDrain(EnumDemonWillType type);
double getCurrentWill(EnumDemonWillType type);
}