Added an alchemy array, the Array of the Fast Miner

This commit is contained in:
WayofTime 2016-10-22 16:11:30 -04:00
parent 4e671d5132
commit 44e1c47e1c
6 changed files with 109 additions and 0 deletions

View file

@ -0,0 +1,47 @@
package WayofTime.bloodmagic.alchemyArray;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import WayofTime.bloodmagic.api.alchemyCrafting.AlchemyArrayEffect;
import WayofTime.bloodmagic.api.iface.ISigil;
public class AlchemyArrayEffectSigil extends AlchemyArrayEffect
{
private final ISigil sigil;
public AlchemyArrayEffectSigil(String key, ISigil sigil)
{
super(key);
this.sigil = sigil;
}
@Override
public boolean update(TileEntity tile, int ticksActive)
{
//TODO: Need particles.
if (sigil.hasArrayEffect())
{
sigil.performArrayEffect(tile.getWorld(), tile.getPos());
}
return false;
}
@Override
public void writeToNBT(NBTTagCompound tag)
{
}
@Override
public void readFromNBT(NBTTagCompound tag)
{
}
@Override
public AlchemyArrayEffect getNewCopy()
{
return new AlchemyArrayEffectSigil(key, sigil);
}
}