- Removed the FOV effect from the Quick Feet speed upgrade.

- Minor work on the Demon Crucible.
This commit is contained in:
WayofTime 2016-02-17 16:31:11 -05:00
parent 3e94aeae77
commit ccb706f15c
13 changed files with 469 additions and 23 deletions

View file

@ -100,6 +100,8 @@ public class Constants
public static final String GHOST_STACK_SIZE = "stackSize";
public static final String ITEM_INVENTORY = "itemInventory";
public static final String BLOCKPOS_CONNECTION = "connections";
}
public static class Mod

View file

@ -0,0 +1,13 @@
package WayofTime.bloodmagic.api.soul;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
public enum EnumDemonWillType
{
DEFAULT("Default");
public final String name;
}

View file

@ -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);
}