Some more ritual work + imperfect rituals
This commit is contained in:
parent
3a7e0a3a8c
commit
afad5b0fd0
13 changed files with 540 additions and 186 deletions
src/main/java/WayofTime/alchemicalWizardry/api/ritual
|
@ -1,17 +1,15 @@
|
|||
package WayofTime.alchemicalWizardry.api.ritual;
|
||||
|
||||
import WayofTime.alchemicalWizardry.api.ritual.LocalRitualStorage;
|
||||
import WayofTime.alchemicalWizardry.api.ritual.imperfect.IImperfectRitualStone;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.util.BlockPos;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public interface IMasterRitualStone {
|
||||
public interface IMasterRitualStone extends IImperfectRitualStone {
|
||||
|
||||
void performRitual(World world, BlockPos pos, String ritualID);
|
||||
|
||||
String getOwner();
|
||||
|
||||
void setCooldown(int cooldown);
|
||||
|
||||
int getCooldown();
|
||||
|
@ -20,10 +18,6 @@ public interface IMasterRitualStone {
|
|||
|
||||
EnumFacing getDirection();
|
||||
|
||||
World getWorld();
|
||||
|
||||
BlockPos getPos();
|
||||
|
||||
NBTTagCompound getCustomRitualTag();
|
||||
|
||||
void setCustomRitualTag(NBTTagCompound tag);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue