BloodMagic/src/main/java/WayofTime/bloodmagic/iface/ISentientSwordEffectProvider.java

12 lines
436 B
Java
Raw Normal View History

package WayofTime.bloodmagic.iface;
import WayofTime.bloodmagic.soul.EnumDemonWillType;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.item.ItemStack;
2017-08-15 21:30:48 -07:00
public interface ISentientSwordEffectProvider {
boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, EntityLivingBase attacker, EntityLivingBase target);
boolean providesEffectForWill(EnumDemonWillType type);
}