- Removed the FOV effect from the Quick Feet speed upgrade.
- Minor work on the Demon Crucible.
This commit is contained in:
parent
3e94aeae77
commit
ccb706f15c
13 changed files with 469 additions and 23 deletions
|
@ -0,0 +1,20 @@
|
|||
package WayofTime.bloodmagic.api.soul;
|
||||
|
||||
/**
|
||||
* Implement this interface on a block that can accept and store Demonic Will.
|
||||
*
|
||||
*/
|
||||
public interface IDemonWillConduit
|
||||
{
|
||||
public int getWeight();
|
||||
|
||||
public double fillDemonWill(EnumDemonWillType type, double amount, boolean doFill);
|
||||
|
||||
public double drainDemonWill(EnumDemonWillType type, double amount, boolean doDrain);
|
||||
|
||||
public boolean canFill(EnumDemonWillType type);
|
||||
|
||||
public boolean canDrain(EnumDemonWillType type);
|
||||
|
||||
public double getCurrentWill(EnumDemonWillType type);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue