
Initial publishing of the 1.16.3 branch of the mod. A lot of systems are missing (such as Rituals and Living Armour), but enough is present for a decent Alpha release.
19 lines
476 B
Java
19 lines
476 B
Java
package wayoftime.bloodmagic.will;
|
|
|
|
/**
|
|
* Implement this interface on a block that can accept and store Demonic Will.
|
|
*/
|
|
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);
|
|
}
|