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