2014-01-18 16:45:31 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.spell.complex;
|
|
|
|
|
|
|
|
import WayofTime.alchemicalWizardry.common.spell.complex.enhancement.SpellEnhancement;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class SpellParadigmMelee extends SpellParadigm
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void enhanceParadigm(SpellEnhancement enh)
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void castSpell(World world, EntityPlayer entityPlayer, ItemStack itemStack)
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-01-18 23:05:25 +00:00
|
|
|
@Override
|
|
|
|
public int getDefaultCost()
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-18 16:45:31 +00:00
|
|
|
}
|