2018-02-15 18:49:01 -08:00
|
|
|
package WayofTime.bloodmagic.iface;
|
2016-03-27 16:53:08 -04:00
|
|
|
|
2018-02-15 18:49:01 -08:00
|
|
|
import WayofTime.bloodmagic.soul.EnumDemonWillType;
|
2016-03-27 16:53:08 -04:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
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
|
|
|
}
|