
Finished the spell blocks enough to allow further expansion. Need to work on textures, as well as the orientation mechanics of the blocks. Also need to look at Vazkii's block renderer to verify a few feature additions.
20 lines
553 B
Java
20 lines
553 B
Java
package WayofTime.alchemicalWizardry.common.tileEntity;
|
|
|
|
import WayofTime.alchemicalWizardry.common.spell.complex.SpellModifier;
|
|
import WayofTime.alchemicalWizardry.common.spell.complex.SpellModifierDefault;
|
|
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigm;
|
|
|
|
public class TESpellModifierBlock extends TESpellBlock
|
|
{
|
|
@Override
|
|
protected void applySpellChange(SpellParadigm parad)
|
|
{
|
|
parad.modifyBufferedEffect(this.getSpellModifier());
|
|
}
|
|
|
|
public SpellModifier getSpellModifier()
|
|
{
|
|
return new SpellModifierDefault();
|
|
}
|
|
}
|