2016-03-27 16:53:08 -04:00
|
|
|
package WayofTime.bloodmagic.api.iface;
|
|
|
|
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import WayofTime.bloodmagic.api.soul.EnumDemonWillType;
|
|
|
|
|
|
|
|
public interface ISentientSwordEffectProvider
|
|
|
|
{
|
2016-04-11 19:57:23 -04:00
|
|
|
boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, EntityLivingBase attacker, EntityLivingBase target);
|
2016-03-27 16:53:08 -04:00
|
|
|
|
2016-04-11 19:57:23 -04:00
|
|
|
boolean providesEffectForWill(EnumDemonWillType type);
|
2016-03-27 16:53:08 -04:00
|
|
|
}
|