27 lines
450 B
Java
27 lines
450 B
Java
![]() |
package WayofTime.alchemicalWizardry.api.tile;
|
||
|
|
||
|
/**
|
||
|
* Created by Pokefenn.
|
||
|
*/
|
||
|
public interface IBloodAltar
|
||
|
{
|
||
|
|
||
|
public int getCapacity();
|
||
|
|
||
|
public int getCurrentBlood();
|
||
|
|
||
|
public int getTier();
|
||
|
|
||
|
public int getProgress();
|
||
|
|
||
|
public float getSacrificeMultiplier();
|
||
|
|
||
|
public float getSelfSacrificeMultiplier();
|
||
|
|
||
|
public float getOrbMultiplier();
|
||
|
|
||
|
public float getDislocationMultiplier();
|
||
|
|
||
|
public int getBufferCapacity();
|
||
|
}
|